/**
 * 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], .fl-ds-block):before,
.fl-module:not([data-accepts], .fl-ds-block):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], .fl-ds-block):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;
	cursor: pointer;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	width: 100%;
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 1300px;
}
.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;
}
:where(.fl-builder-content, .fl-page) :is(a[href], button, input, select, textarea, [tabindex]:not([tabindex="-1"])):focus {
	outline-style: solid;
	outline-width: 2px;
	outline-offset: 2px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





.fl-node-lk51t0pcdq9i.fl-row-default-height > .fl-row-content-wrap, .fl-node-lk51t0pcdq9i.fl-row-full-height > .fl-row-content-wrap, .fl-node-lk51t0pcdq9i.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-lk51t0pcdq9i > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}

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





.fl-node-u1qjv2l9igpn.fl-row-default-height > .fl-row-content-wrap, .fl-node-u1qjv2l9igpn.fl-row-full-height > .fl-row-content-wrap, .fl-node-u1qjv2l9igpn.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
.fl-node-u1qjv2l9igpn > .fl-row-content-wrap {
	background-image: url(https://rejuberry.com/wp-content/uploads/2026/04/XERF_1row_bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 1200px) {
	.fl-node-u1qjv2l9igpn > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 992px) {
	.fl-node-u1qjv2l9igpn > .fl-row-content-wrap {
		background-image: url(https://rejuberry.com/wp-content/uploads/2026/04/XERF_1row_bg.png);
		background-position: 0% 65%;
		background-size: contain;
	}
}
@media(max-width: 768px) {
	.fl-node-u1qjv2l9igpn > .fl-row-content-wrap {
		background-position: 0% 57%;
	}
}
 .fl-node-u1qjv2l9igpn > .fl-row-content-wrap {
	padding-right:0px;
	padding-bottom:50px;
	padding-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-u1qjv2l9igpn.fl-row > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}
}
@media ( max-width: 992px ) {
 .fl-node-u1qjv2l9igpn.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:20px;
	padding-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-u1qjv2l9igpn.fl-row > .fl-row-content-wrap {
	padding-right:15px;
	padding-bottom:30px;
	padding-left:15px;
}
}

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





.fl-node-bntx368ckusz > .fl-row-content-wrap:after {
	background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255,255,255,0) 100%);
}
.fl-node-bntx368ckusz.fl-row-default-height > .fl-row-content-wrap, .fl-node-bntx368ckusz.fl-row-full-height > .fl-row-content-wrap, .fl-node-bntx368ckusz.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
.fl-node-bntx368ckusz > .fl-row-content-wrap {
	background-image: url(https://rejuberry.com/wp-content/uploads/2026/04/bg-00875_03.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 1200px) {
	.fl-node-bntx368ckusz > .fl-row-content-wrap {
		background-position: center bottom;
	}
}
@media(max-width: 992px) {
	.fl-node-bntx368ckusz > .fl-row-content-wrap {
		background-position: center bottom;
	}
}
@media(max-width: 768px) {
	.fl-node-bntx368ckusz > .fl-row-content-wrap {
		background-position: center bottom;
	}
}
 .fl-node-bntx368ckusz > .fl-row-content-wrap {
	padding-top:100px;
	padding-right:100px;
	padding-bottom:100px;
	padding-left:100px;
}
@media ( max-width: 1200px ) {
 .fl-node-bntx368ckusz.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:60px;
	padding-bottom:100px;
	padding-left:60px;
}
}
@media ( max-width: 992px ) {
 .fl-node-bntx368ckusz.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:40px;
	padding-bottom:80px;
	padding-left:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-bntx368ckusz.fl-row > .fl-row-content-wrap {
	padding-top:50px;
	padding-right:35px;
	padding-bottom:60px;
	padding-left:35px;
}
}

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





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

	.fl-builder-edit .fl-node-cwh59tdu4mra.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-cwh59tdu4mra.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-cwh59tdu4mra.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-cwh59tdu4mra.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-cwh59tdu4mra.fl-row-default-height > .fl-row-content-wrap, .fl-node-cwh59tdu4mra.fl-row-full-height > .fl-row-content-wrap, .fl-node-cwh59tdu4mra.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-cwh59tdu4mra > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-cwh59tdu4mra > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}

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





.fl-node-gaqhu5pbk6zo > .fl-row-content-wrap:after {
	background-image: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255,255,255,0) 100%);
}
.fl-node-gaqhu5pbk6zo.fl-row-default-height > .fl-row-content-wrap, .fl-node-gaqhu5pbk6zo.fl-row-full-height > .fl-row-content-wrap, .fl-node-gaqhu5pbk6zo.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
.fl-node-gaqhu5pbk6zo > .fl-row-content-wrap {
	background-image: url(https://rejuberry.com/wp-content/uploads/2026/04/bg-00875_03.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 1200px) {
	.fl-node-gaqhu5pbk6zo > .fl-row-content-wrap {
		background-position: center bottom;
	}
}
@media(max-width: 992px) {
	.fl-node-gaqhu5pbk6zo > .fl-row-content-wrap {
		background-position: center bottom;
	}
}
@media(max-width: 768px) {
	.fl-node-gaqhu5pbk6zo > .fl-row-content-wrap {
		background-position: center bottom;
	}
}
 .fl-node-gaqhu5pbk6zo > .fl-row-content-wrap {
	padding-top:100px;
	padding-right:100px;
	padding-bottom:100px;
	padding-left:100px;
}
@media ( max-width: 1200px ) {
 .fl-node-gaqhu5pbk6zo.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:60px;
	padding-bottom:100px;
	padding-left:60px;
}
}
@media ( max-width: 992px ) {
 .fl-node-gaqhu5pbk6zo.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:40px;
	padding-bottom:80px;
	padding-left:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-gaqhu5pbk6zo.fl-row > .fl-row-content-wrap {
	padding-top:50px;
	padding-right:35px;
	padding-bottom:60px;
	padding-left:35px;
}
}

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





.fl-node-h70xynuagqot.fl-row-default-height > .fl-row-content-wrap, .fl-node-h70xynuagqot.fl-row-full-height > .fl-row-content-wrap, .fl-node-h70xynuagqot.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-h70xynuagqot > .fl-row-content-wrap {
	padding-top:150px;
	padding-right:100px;
	padding-bottom:150px;
	padding-left:100px;
}
@media ( max-width: 1200px ) {
 .fl-node-h70xynuagqot.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:60px;
	padding-bottom:100px;
	padding-left:60px;
}
}
@media ( max-width: 992px ) {
 .fl-node-h70xynuagqot.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:40px;
	padding-bottom:80px;
	padding-left:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-h70xynuagqot.fl-row > .fl-row-content-wrap {
	padding-top:50px;
	padding-right:35px;
	padding-bottom:60px;
	padding-left:35px;
}
}

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





.fl-node-7ecqka6x4is3.fl-row-default-height > .fl-row-content-wrap, .fl-node-7ecqka6x4is3.fl-row-full-height > .fl-row-content-wrap, .fl-node-7ecqka6x4is3.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-7ecqka6x4is3 > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-7ecqka6x4is3 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}

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





.fl-node-ogzq6wu4rnsb.fl-row-default-height > .fl-row-content-wrap, .fl-node-ogzq6wu4rnsb.fl-row-full-height > .fl-row-content-wrap, .fl-node-ogzq6wu4rnsb.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
 .fl-node-ogzq6wu4rnsb > .fl-row-content-wrap {
	padding-top:140px;
	padding-right:100px;
	padding-bottom:150px;
	padding-left:100px;
}
@media ( max-width: 1200px ) {
 .fl-node-ogzq6wu4rnsb.fl-row > .fl-row-content-wrap {
	padding-top:120px;
	padding-right:60px;
	padding-bottom:120px;
	padding-left:60px;
}
}
@media ( max-width: 992px ) {
 .fl-node-ogzq6wu4rnsb.fl-row > .fl-row-content-wrap {
	padding-top:100px;
	padding-right:40px;
	padding-bottom:100px;
	padding-left:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ogzq6wu4rnsb.fl-row > .fl-row-content-wrap {
	padding-top:60px;
	padding-right:15px;
	padding-bottom:60px;
	padding-left:15px;
}
}

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



.fl-node-gmruhob9xet8 {
	width: 50%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-gmruhob9xet8 {
		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: 992px) {
	.fl-builder-content .fl-node-gmruhob9xet8 {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-gmruhob9xet8 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-yent9x7opzbw {
	width: 100%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-yent9x7opzbw {
		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: 992px) {
	.fl-builder-content .fl-node-yent9x7opzbw {
		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: 768px) {
	.fl-builder-content .fl-node-yent9x7opzbw {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-694ls1ez0k5x {
	width: 100%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-694ls1ez0k5x {
		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: 992px) {
	.fl-builder-content .fl-node-694ls1ez0k5x {
		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: 768px) {
	.fl-builder-content .fl-node-694ls1ez0k5x {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 768px ) {
 .fl-node-694ls1ez0k5x.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-694ls1ez0k5x.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-rpkqwc81f2y0 {
	width: 25%;
}
.fl-node-rpkqwc81f2y0 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(230, 230, 230);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-rpkqwc81f2y0 {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-rpkqwc81f2y0 {
		width: 25% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	.fl-node-rpkqwc81f2y0 > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-rpkqwc81f2y0 {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-rpkqwc81f2y0 > .fl-col-content {
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
 .fl-node-rpkqwc81f2y0 > .fl-col-content {
	margin-right:5px;
	margin-bottom:0px;
	margin-left:5px;
}
@media ( max-width: 768px ) {
 .fl-node-rpkqwc81f2y0.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:2px;
	margin-bottom:2px;
	margin-left:0px;
}
}
 .fl-node-rpkqwc81f2y0 > .fl-col-content {
	padding-top:50px;
	padding-bottom:30px;
}
@media ( max-width: 992px ) {
 .fl-node-rpkqwc81f2y0.fl-col > .fl-col-content {
	padding-top:20px;
	padding-bottom:30px;
}
}
@media ( max-width: 768px ) {
 .fl-node-rpkqwc81f2y0.fl-col > .fl-col-content {
	padding-top:30px;
	padding-right:0px;
	padding-bottom:20px;
	padding-left:0px;
}
}
.fl-animated.fl-fade-up {
	animation: fl-fade-up 1s ease;
	-webkit-animation: fl-fade-up 1s ease;
}
@-webkit-keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}




.fl-node-mbag9lhc8kqs {
	width: 100%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-mbag9lhc8kqs {
		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: 992px) {
	.fl-builder-content .fl-node-mbag9lhc8kqs {
		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: 768px) {
	.fl-builder-content .fl-node-mbag9lhc8kqs {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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




.fl-node-kot6giam237f {
	width: 50%;
}
.fl-node-kot6giam237f > .fl-col-content {
	background-image: url(https://rejuberry.com/wp-content/uploads/2026/04/Laser색소_6row_topbg_01.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-kot6giam237f {
		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;
	}
	.fl-node-kot6giam237f > .fl-col-content {
		background-image: url(https://rejuberry.com/wp-content/uploads/2026/04/Laser색소_6row_topbg_02.png);
		background-repeat: no-repeat;
		background-position: 70% 0%;
		background-size: cover;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-kot6giam237f {
		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;
	}
	.fl-node-kot6giam237f > .fl-col-content {
		background-image: url(https://rejuberry.com/wp-content/uploads/2026/04/Laser색소_6row_topbg_02.png);
		background-repeat: no-repeat;
		background-position: 80% 140%;
		background-size: contain;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-kot6giam237f {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-kot6giam237f > .fl-col-content {
		background-image: url(https://rejuberry.com/wp-content/uploads/2026/04/Laser색소_6row_topbg_01.png);
		background-repeat: no-repeat;
		background-size: cover;
	}
	.fl-builder-content .fl-node-kot6giam237f > .fl-col-content {
		min-height: 330px;
	}
}




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




.fl-node-tlzuk9mfgys2 {
	width: 44%;
}
.fl-node-tlzuk9mfgys2 > .fl-col-content {
	background-image: url(https://rejuberry.com/wp-content/uploads/2026/04/XERF_4row_bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-builder-content .fl-node-tlzuk9mfgys2 > .fl-col-content {
	min-height: 100vh;
}
 .fl-node-tlzuk9mfgys2 > .fl-col-content {
	padding-top:0px;
}




.fl-node-m2p5e83o4nd0 {
	width: 100%;
}
 .fl-node-m2p5e83o4nd0 > .fl-col-content {
	padding-top:150px;
	padding-right:150px;
	padding-bottom:0px;
	padding-left:150px;
}
@media ( max-width: 1200px ) {
 .fl-node-m2p5e83o4nd0.fl-col > .fl-col-content {
	padding-right:80px;
	padding-left:35px;
}
}
@media ( max-width: 992px ) {
 .fl-node-m2p5e83o4nd0.fl-col > .fl-col-content {
	padding-right:30px;
}
}




.fl-node-p0mkvoaxei29 {
	width: 100%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-p0mkvoaxei29 {
		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: 992px) {
	.fl-builder-content .fl-node-p0mkvoaxei29 {
		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: 768px) {
	.fl-builder-content .fl-node-p0mkvoaxei29 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 768px ) {
 .fl-node-p0mkvoaxei29.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-p0mkvoaxei29.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-oj4mbpyrhk72 {
	width: 50%;
}
.fl-node-oj4mbpyrhk72 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(230, 230, 230);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-oj4mbpyrhk72 {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-oj4mbpyrhk72 {
		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;
	}
	.fl-node-oj4mbpyrhk72 > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-oj4mbpyrhk72 {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-oj4mbpyrhk72 > .fl-col-content {
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
 .fl-node-oj4mbpyrhk72 > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}
@media ( max-width: 992px ) {
 .fl-node-oj4mbpyrhk72.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:5px;
	margin-bottom:5px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-oj4mbpyrhk72.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:2px;
	margin-bottom:2px;
	margin-left:0px;
}
}
 .fl-node-oj4mbpyrhk72 > .fl-col-content {
	padding-top:50px;
	padding-bottom:30px;
}
@media ( max-width: 992px ) {
 .fl-node-oj4mbpyrhk72.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:20px;
	padding-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-oj4mbpyrhk72.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:20px;
	padding-left:10px;
}
}




.fl-node-yejkhcxi1gmu {
	width: 50%;
}
.fl-node-yejkhcxi1gmu > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(230, 230, 230);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-yejkhcxi1gmu {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-yejkhcxi1gmu {
		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;
	}
	.fl-node-yejkhcxi1gmu > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-yejkhcxi1gmu {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-yejkhcxi1gmu > .fl-col-content {
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
 .fl-node-yejkhcxi1gmu > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}
@media ( max-width: 992px ) {
 .fl-node-yejkhcxi1gmu.fl-col > .fl-col-content {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:5px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-yejkhcxi1gmu.fl-col > .fl-col-content {
	margin-top:2px;
	margin-right:2px;
	margin-bottom:2px;
	margin-left:0px;
}
}
 .fl-node-yejkhcxi1gmu > .fl-col-content {
	padding-top:50px;
	padding-bottom:30px;
}
@media ( max-width: 992px ) {
 .fl-node-yejkhcxi1gmu.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:20px;
	padding-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-yejkhcxi1gmu.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:20px;
	padding-left:10px;
}
}




.fl-node-f57cdin8mao9 {
	width: 100%;
}
.fl-node-f57cdin8mao9 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(230, 230, 230);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-f57cdin8mao9 {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-f57cdin8mao9 {
		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;
	}
	.fl-node-f57cdin8mao9 > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-f57cdin8mao9 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-f57cdin8mao9 > .fl-col-content {
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
 .fl-node-f57cdin8mao9 > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}
@media ( max-width: 992px ) {
 .fl-node-f57cdin8mao9.fl-col > .fl-col-content {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-f57cdin8mao9.fl-col > .fl-col-content {
	margin-top:2px;
	margin-right:2px;
	margin-bottom:0px;
	margin-left:0px;
}
}
 .fl-node-f57cdin8mao9 > .fl-col-content {
	padding-top:50px;
	padding-bottom:30px;
}
@media ( max-width: 992px ) {
 .fl-node-f57cdin8mao9.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:20px;
	padding-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-f57cdin8mao9.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:20px;
	padding-left:10px;
}
}




.fl-node-e7zbtlv9rf3a {
	width: 50%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-e7zbtlv9rf3a {
		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: 992px) {
	.fl-builder-content .fl-node-e7zbtlv9rf3a {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-e7zbtlv9rf3a {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-7i8ahezcosbp {
	width: 25%;
}
.fl-node-7i8ahezcosbp > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(230, 230, 230);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-7i8ahezcosbp {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-7i8ahezcosbp {
		width: 25% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	.fl-node-7i8ahezcosbp > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-7i8ahezcosbp {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-7i8ahezcosbp > .fl-col-content {
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
 .fl-node-7i8ahezcosbp > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}
@media ( max-width: 768px ) {
 .fl-node-7i8ahezcosbp.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:2px;
	margin-bottom:2px;
	margin-left:0px;
}
}
 .fl-node-7i8ahezcosbp > .fl-col-content {
	padding-top:50px;
	padding-bottom:30px;
}
@media ( max-width: 992px ) {
 .fl-node-7i8ahezcosbp.fl-col > .fl-col-content {
	padding-top:20px;
	padding-bottom:30px;
}
}
@media ( max-width: 768px ) {
 .fl-node-7i8ahezcosbp.fl-col > .fl-col-content {
	padding-top:30px;
	padding-right:0px;
	padding-bottom:20px;
	padding-left:0px;
}
}




.fl-node-9hz26x8vtlpe {
	width: 50%;
}
.fl-node-9hz26x8vtlpe > .fl-col-content {
	background-color: rgb(250, 250, 250);
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-9hz26x8vtlpe {
		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: 992px) {
	.fl-builder-content .fl-node-9hz26x8vtlpe {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-9hz26x8vtlpe {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-9hz26x8vtlpe > .fl-col-content {
	padding-top:150px;
	padding-right:100px;
	padding-bottom:150px;
	padding-left:100px;
}
@media ( max-width: 1200px ) {
 .fl-node-9hz26x8vtlpe.fl-col > .fl-col-content {
	padding-top:100px;
	padding-right:50px;
	padding-bottom:100px;
	padding-left:50px;
}
}
@media ( max-width: 992px ) {
 .fl-node-9hz26x8vtlpe.fl-col > .fl-col-content {
	padding-top:50px;
	padding-right:40px;
	padding-bottom:50px;
	padding-left:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-9hz26x8vtlpe.fl-col > .fl-col-content {
	padding-top:50px;
	padding-right:35px;
	padding-bottom:50px;
	padding-left:35px;
}
}




.fl-node-wpxqo3vf1u7l {
	width: 56%;
}
.fl-builder-content .fl-node-wpxqo3vf1u7l > .fl-col-content {
	min-height: 100vh;
}
 .fl-node-wpxqo3vf1u7l > .fl-col-content {
	padding-top:130px;
	padding-right:100px;
	padding-bottom:0px;
	padding-left:100px;
}
@media ( max-width: 1200px ) {
 .fl-node-wpxqo3vf1u7l.fl-col > .fl-col-content {
	padding-top:140px;
	padding-right:30px;
	padding-bottom:0px;
	padding-left:50px;
}
}




.fl-node-ob38ac5pdfzv {
	width: 50%;
}
.fl-node-ob38ac5pdfzv > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(230, 230, 230);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-ob38ac5pdfzv {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-ob38ac5pdfzv {
		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;
	}
	.fl-node-ob38ac5pdfzv > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ob38ac5pdfzv {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-ob38ac5pdfzv > .fl-col-content {
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
 .fl-node-ob38ac5pdfzv > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}
@media ( max-width: 992px ) {
 .fl-node-ob38ac5pdfzv.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:5px;
	margin-left:5px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ob38ac5pdfzv.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:2px;
	margin-bottom:0px;
	margin-left:2px;
}
}
 .fl-node-ob38ac5pdfzv > .fl-col-content {
	padding-top:50px;
	padding-bottom:30px;
}
@media ( max-width: 992px ) {
 .fl-node-ob38ac5pdfzv.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:20px;
	padding-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ob38ac5pdfzv.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:20px;
	padding-left:10px;
}
}




.fl-node-bpcxvli07jsy {
	width: 50%;
}
.fl-node-bpcxvli07jsy > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(230, 230, 230);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-bpcxvli07jsy {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-bpcxvli07jsy {
		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;
	}
	.fl-node-bpcxvli07jsy > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-bpcxvli07jsy {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-bpcxvli07jsy > .fl-col-content {
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
 .fl-node-bpcxvli07jsy > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}
@media ( max-width: 992px ) {
 .fl-node-bpcxvli07jsy.fl-col > .fl-col-content {
	margin-top:5px;
	margin-right:0px;
	margin-bottom:5px;
	margin-left:5px;
}
}
@media ( max-width: 768px ) {
 .fl-node-bpcxvli07jsy.fl-col > .fl-col-content {
	margin-top:2px;
	margin-right:0px;
	margin-bottom:2px;
	margin-left:2px;
}
}
 .fl-node-bpcxvli07jsy > .fl-col-content {
	padding-top:50px;
	padding-bottom:30px;
}
@media ( max-width: 992px ) {
 .fl-node-bpcxvli07jsy.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:20px;
	padding-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-bpcxvli07jsy.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:20px;
	padding-left:10px;
}
}




.fl-node-ijfd5bcxtyq7 {
	width: 25%;
}
.fl-node-ijfd5bcxtyq7 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(230, 230, 230);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-ijfd5bcxtyq7 {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-ijfd5bcxtyq7 {
		width: 25% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	.fl-node-ijfd5bcxtyq7 > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ijfd5bcxtyq7 {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-ijfd5bcxtyq7 > .fl-col-content {
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
 .fl-node-ijfd5bcxtyq7 > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}
@media ( max-width: 768px ) {
 .fl-node-ijfd5bcxtyq7.fl-col > .fl-col-content {
	margin-top:2px;
	margin-right:2px;
	margin-bottom:0px;
	margin-left:0px;
}
}
 .fl-node-ijfd5bcxtyq7 > .fl-col-content {
	padding-top:50px;
	padding-bottom:30px;
}
@media ( max-width: 992px ) {
 .fl-node-ijfd5bcxtyq7.fl-col > .fl-col-content {
	padding-top:20px;
	padding-bottom:30px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ijfd5bcxtyq7.fl-col > .fl-col-content {
	padding-top:30px;
	padding-right:0px;
	padding-bottom:20px;
	padding-left:0px;
}
}




.fl-node-kpeqgc2o3dzx {
	width: 25%;
}
.fl-node-kpeqgc2o3dzx > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(230, 230, 230);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-kpeqgc2o3dzx {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-kpeqgc2o3dzx {
		width: 25% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	.fl-node-kpeqgc2o3dzx > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-kpeqgc2o3dzx {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-kpeqgc2o3dzx > .fl-col-content {
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-left-radius: 30px;
		border-top-right-radius: 30px;
		border-bottom-left-radius: 30px;
		border-bottom-right-radius: 30px;
	}
}
 .fl-node-kpeqgc2o3dzx > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}
@media ( max-width: 768px ) {
 .fl-node-kpeqgc2o3dzx.fl-col > .fl-col-content {
	margin-top:2px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:2px;
}
}
 .fl-node-kpeqgc2o3dzx > .fl-col-content {
	padding-top:50px;
	padding-bottom:30px;
}
@media ( max-width: 992px ) {
 .fl-node-kpeqgc2o3dzx.fl-col > .fl-col-content {
	padding-top:20px;
	padding-bottom:30px;
}
}
@media ( max-width: 768px ) {
 .fl-node-kpeqgc2o3dzx.fl-col > .fl-col-content {
	padding-top:30px;
	padding-right:0px;
	padding-bottom:20px;
	padding-left:0px;
}
}




.fl-node-o14d3jmn7hqv {
	width: 100%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-o14d3jmn7hqv {
		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: 992px) {
	.fl-builder-content .fl-node-o14d3jmn7hqv {
		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: 768px) {
	.fl-builder-content .fl-node-o14d3jmn7hqv {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-o14d3jmn7hqv > .fl-col-content {
	padding-bottom:50px;
}
@media ( max-width: 768px ) {
 .fl-node-o14d3jmn7hqv.fl-col > .fl-col-content {
	padding-bottom:40px;
}
}




.fl-node-9pfyjomhgi0k {
	width: 100%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-9pfyjomhgi0k {
		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: 992px) {
	.fl-builder-content .fl-node-9pfyjomhgi0k {
		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: 768px) {
	.fl-builder-content .fl-node-9pfyjomhgi0k {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-9pfyjomhgi0k > .fl-col-content {
	margin-right:10px;
	margin-left:10px;
}
@media ( max-width: 768px ) {
 .fl-node-9pfyjomhgi0k.fl-col > .fl-col-content {
	margin-right:10px;
	margin-left:10px;
}
}




.fl-node-x2581vsau0gz {
	width: 25%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-x2581vsau0gz {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-x2581vsau0gz {
		width: 25% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	.fl-node-x2581vsau0gz > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-right-width: 1px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-x2581vsau0gz {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-x2581vsau0gz > .fl-col-content {
		border-bottom-width: 1px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-x2581vsau0gz.fl-col > .fl-col-content {
	padding-bottom:20px;
}
}




.fl-node-w6sgch1t8yo3 {
	width: 25%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-w6sgch1t8yo3 {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-w6sgch1t8yo3 {
		width: 25% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	.fl-node-w6sgch1t8yo3 > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-right-width: 1px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-w6sgch1t8yo3 {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-node-w6sgch1t8yo3 > .fl-col-content {
		border-right-width: 0px;
		border-bottom-width: 1px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-w6sgch1t8yo3.fl-col > .fl-col-content {
	padding-bottom:20px;
}
}




.fl-node-w61xr2m4bt8s {
	width: 25%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-w61xr2m4bt8s {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-w61xr2m4bt8s {
		width: 25% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
	.fl-node-w61xr2m4bt8s > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: rgb(240, 240, 240);
		border-right-width: 1px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-w61xr2m4bt8s {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 768px ) {
 .fl-node-w61xr2m4bt8s.fl-col > .fl-col-content {
	padding-top:20px;
	padding-bottom:15px;
}
}




.fl-node-jkgl849cxotv {
	width: 25%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-jkgl849cxotv {
		width: 25% !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: 992px) {
	.fl-builder-content .fl-node-jkgl849cxotv {
		width: 25% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-jkgl849cxotv {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 768px ) {
 .fl-node-jkgl849cxotv.fl-col > .fl-col-content {
	padding-top:20px;
	padding-bottom:15px;
}
}
img.mfp-img {
    padding-bottom: 40px !important;
}

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

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

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-5490yjnos1cm, .fl-node-5490yjnos1cm .fl-photo {
	text-align: center;
}
 .fl-node-5490yjnos1cm.fl-module-photo {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-yh83nu0sx2vg, .fl-node-yh83nu0sx2vg .fl-photo {
	text-align: center;
}
 .fl-node-yh83nu0sx2vg.fl-module-photo {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-cdr62u17hbzj, .fl-node-cdr62u17hbzj .fl-photo {
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-cdr62u17hbzj .fl-photo-content, .fl-node-cdr62u17hbzj .fl-photo-img {
		width: 150px;
	}
}
@media(max-width: 768px) {
	.fl-node-cdr62u17hbzj .fl-photo-content, .fl-node-cdr62u17hbzj .fl-photo-img {
		width: 125px;
	}
}
 .fl-node-cdr62u17hbzj.fl-module-photo {
	margin-top:-80px;
}
@media ( max-width: 768px ) {
 .fl-node-cdr62u17hbzj.fl-module-photo.fl-module {
	margin-top:-50px;
}
}
.fl-animated.fl-fade-down {
	animation: fl-fade-down 1s ease;
	-webkit-animation: fl-fade-down 1s ease;
}
@-webkit-keyframes fl-fade-down {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-down {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.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-0epqvna4u29k.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-0epqvna4u29k.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-0epqvna4u29k.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-0epqvna4u29k.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 500;
	font-size: 50px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-0epqvna4u29k.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-0epqvna4u29k.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 40px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-0epqvna4u29k.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-0epqvna4u29k.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 35px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-0epqvna4u29k.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-0epqvna4u29k.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 28px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-0epqvna4u29k.fl-module-rich-text.fl-module {
	margin-bottom:10px;
}
}
.fl-builder-content .fl-node-eqfvdbis9m2u.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-eqfvdbis9m2u.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-eqfvdbis9m2u.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-eqfvdbis9m2u.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 500;
	font-size: 50px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-eqfvdbis9m2u.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-eqfvdbis9m2u.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 40px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-eqfvdbis9m2u.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-eqfvdbis9m2u.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 35px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-eqfvdbis9m2u.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-eqfvdbis9m2u.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 28px;
	}
}
 .fl-node-eqfvdbis9m2u.fl-module-rich-text {
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-eqfvdbis9m2u.fl-module-rich-text.fl-module {
	margin-right:0px;
	margin-bottom:5px;
	margin-left:0px;
}
}
.fl-node-0857ek3cdv1u, .fl-node-0857ek3cdv1u .fl-photo {
	text-align: center;
}
.fl-node-0857ek3cdv1u .fl-photo-content, .fl-node-0857ek3cdv1u .fl-photo-img {
	width: 100px;
}
.fl-node-0857ek3cdv1u .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-0857ek3cdv1u .fl-photo-content, .fl-node-0857ek3cdv1u .fl-photo-img {
		width: 80px;
	}
	.fl-node-0857ek3cdv1u .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-0857ek3cdv1u.fl-module-photo {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-0857ek3cdv1u.fl-module-photo.fl-module {
	margin-top:0px;
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-0857ek3cdv1u.fl-module-photo.fl-module {
	margin-right:15px;
	margin-bottom:10px;
	margin-left:15px;
}
}
.fl-node-jeaygon0isrl, .fl-node-jeaygon0isrl .fl-photo {
	text-align: center;
}
.fl-node-jeaygon0isrl .fl-photo-content, .fl-node-jeaygon0isrl .fl-photo-img {
	width: 100px;
}
.fl-node-jeaygon0isrl .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-jeaygon0isrl .fl-photo-content, .fl-node-jeaygon0isrl .fl-photo-img {
		width: 80px;
	}
	.fl-node-jeaygon0isrl .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-jeaygon0isrl.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-jeaygon0isrl.fl-module-photo.fl-module {
	margin-top:0px;
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-jeaygon0isrl.fl-module-photo.fl-module {
	margin-right:15px;
	margin-bottom:10px;
	margin-left:15px;
}
}
.fl-node-ahzs7nuye5kd, .fl-node-ahzs7nuye5kd .fl-photo {
	text-align: center;
}
.fl-node-ahzs7nuye5kd .fl-photo-content, .fl-node-ahzs7nuye5kd .fl-photo-img {
	width: 100px;
}
.fl-node-ahzs7nuye5kd .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-ahzs7nuye5kd .fl-photo-content, .fl-node-ahzs7nuye5kd .fl-photo-img {
		width: 80px;
	}
	.fl-node-ahzs7nuye5kd .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-ahzs7nuye5kd.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-ahzs7nuye5kd.fl-module-photo.fl-module {
	margin-top:0px;
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ahzs7nuye5kd.fl-module-photo.fl-module {
	margin-right:15px;
	margin-bottom:10px;
	margin-left:15px;
}
}
.fl-node-bp2eqykndf3x, .fl-node-bp2eqykndf3x .fl-photo {
	text-align: center;
}
.fl-node-bp2eqykndf3x .fl-photo-content, .fl-node-bp2eqykndf3x .fl-photo-img {
	width: 100px;
}
.fl-node-bp2eqykndf3x .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-bp2eqykndf3x .fl-photo-content, .fl-node-bp2eqykndf3x .fl-photo-img {
		width: 80px;
	}
	.fl-node-bp2eqykndf3x .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-bp2eqykndf3x.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-bp2eqykndf3x.fl-module-photo.fl-module {
	margin-top:0px;
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-bp2eqykndf3x.fl-module-photo.fl-module {
	margin-right:15px;
	margin-bottom:10px;
	margin-left:15px;
}
}
.fl-builder-content .fl-node-4q6pr3j07zyg.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-4q6pr3j07zyg.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-4q6pr3j07zyg.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-4q6pr3j07zyg.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 500;
	font-size: 50px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-4q6pr3j07zyg.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-4q6pr3j07zyg.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 40px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-4q6pr3j07zyg.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-4q6pr3j07zyg.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 35px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-4q6pr3j07zyg.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-4q6pr3j07zyg.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 28px;
	}
}
 .fl-node-4q6pr3j07zyg.fl-module-rich-text {
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-4q6pr3j07zyg.fl-module-rich-text.fl-module {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:5px;
	margin-left:20px;
}
}
/*  Labels
------------------------------------ */

.pp-tabs-label {
	outline: 0;
	cursor: pointer;
	transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
}
.pp-tabs-label:hover,
.pp-tab-active {
	transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
}
.pp-tabs-label:focus > .pp-tab-label-inner {
	outline: 1px dotted;
}
.pp-tabs-label.pp-tab-active {
	position: relative;
	z-index: 1;
}
.pp-tab-label-flex {
	display: flex;
    flex-direction: row;
    flex: 1 1 auto;
}
.pp-tabs-label .pp-tab-label-flex {
	align-items: center;
}
.pp-tabs-label.pp-tab-icon-top .pp-tab-label-flex,
.pp-tabs-label.pp-tab-icon-bottom .pp-tab-label-flex {
	flex-direction: column;
}

.pp-tab-description {
	position: relative;
	margin-top: 10px;
}

.pp-clearfix:before,
.pp-clearfix:after {
	content: "";
	display: table;
}

.pp-clearfix:after {
	clear: both;
}

/*  Panel Labels
------------------------------------ */

.pp-tabs-panel-label {
	display: none;
}
.pp-tabs-panel-label span {
	display: table-cell;
	width: 100%;
}
.pp-tabs-panel-label .pp-toggle-icon {
	display: table-cell;
	line-height: inherit;
	padding-left: 15px;
	vertical-align: middle;
	width: auto;
}

.pp-tabs-panel-label .pp-tab-close {
	display: none;
}

.pp-tabs-panel-label.pp-tabs-label.pp-tab-active .pp-tab-close {
	display: table-cell;
}

.pp-tabs-panel-label.pp-tabs-label.pp-tab-active .pp-tab-open {
	display: none;
}

/*  Panels
------------------------------------ */

.pp-tabs-default .pp-tabs-panels {
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
}

.pp-tabs-horizontal.pp-tabs-default .pp-tabs-panels {
	clear: both;
}
.pp-tabs-panel-content {
	display: none !important;
	padding: 30px;
	clear: both;
}

.pp-tabs-panel-content.pp-tab-active {
	display: block !important;
}
.pp-tabs-panel-content p:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

.pp-tabs-vertical .pp-tabs-panel-content.pp-tab-active {
    display: table;
    width: 100%;
}

.pp-tabs-panel .pp-tabs-label .pp-tab-label-inner {
	display: flex;
	align-items: center;
}

/* .pp-tabs-label .pp-tab-label-inner .pp-tab-icon,
.pp-tabs-label .pp-tab-label-inner .pp-tab-title {
	display: inline-table;
	vertical-align: middle;
} */

/* .pp-tabs-label.pp-tab-icon-top .pp-tab-label-inner .pp-tab-icon,
.pp-tabs-label.pp-tab-icon-top .pp-tabs-label .pp-tab-title,
.pp-tabs-label.pp-tab-icon-bottom .pp-tab-label-inner .pp-tab-icon,
.pp-tabs-label.pp-tab-icon-bottom .pp-tabs-label .pp-tab-title {
	display: block;
} */

/*  Horizontal
------------------------------------ */

.pp-tabs-horizontal .pp-tabs-label {
	float: left;
}
/* .pp-tabs-horizontal.pp-tabs-default .pp-tabs-labels {
	display: inherit;
} */
.pp-tabs-horizontal.pp-tabs-default .pp-tabs-labels .pp-tabs-label {
	flex: initial;
}
.pp-tabs-horizontal.pp-tabs-default .pp-tabs-label {
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
	border-bottom: none !important;
}
.pp-tabs-horizontal.pp-tabs-default .pp-tabs-label.pp-tab-active {
	top: 1px;
}

/*  Vertical
------------------------------------ */

.pp-tabs-vertical .pp-tabs-labels {
	float: left;
	width: 30%;
}
.pp-tabs-vertical.pp-tabs-vertical-right .pp-tabs-labels {
	float: right;
}
.pp-tabs-vertical .pp-tabs-label {
	padding: 20px 10px;
}
.pp-tabs-vertical .pp-tabs-label.pp-tab-active {
	border-width: 0px;
	border-style: solid;
}
.pp-tabs-vertical.pp-tabs-default .pp-tabs-label {
	margin-right: -1px;
}
.pp-tabs-vertical.pp-tabs-vertical-right.pp-tabs-default .pp-tabs-label {
	margin-right: auto;
	margin-left: -1px;
}
.pp-tabs-vertical.pp-tabs-default .pp-tabs-label.pp-tab-active {
	border-width: 1px;
}
.pp-tabs-vertical .pp-tabs-panels {
	float: left;
	width: 70%;
}
.pp-tabs-vertical.pp-tabs-style-4 .pp-tabs-labels .pp-tabs-label {
	margin-right: 0;
}

.pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-labels .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	bottom: -45px;
}

/*  Horizontal
------------------------------------ */

.pp-tabs-horizontal .pp-tabs-labels {
	position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    -ms-box-orient: horizontal;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
}

.pp-tabs-horizontal .pp-tabs-labels .pp-tabs-label {
	position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    -webkit-flex: 1;
    -moz-flex: 1;
    flex: 1;
	padding: 15px 18px 12px;
}

/* .pp-tab-icon-top .pp-tab-icon,
.pp-tab-icon-bottom .pp-tab-icon {
    display: block;
    margin: 0 auto;
} */


/*.pp-tabs-horizontal.pp-tabs-style-5 .pp-tabs-labels .pp-tabs-label {
	padding: 0;
}*/

.pp-tabs-labels .pp-tabs-label .pp-tab-label-inner {
	position: relative;
}


/*  Style 1
------------------------------------ */

.pp-tabs-style-1 .pp-tabs-labels {
	border: 4px solid #eee;
}

.pp-tabs-horizontal.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label {
	margin: 0 2px;
}

.pp-tabs-horizontal.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label:first-child {
	margin-left: 0;
}

.pp-tabs-horizontal.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label:last-child {
	margin-right: 0;
}

.pp-tabs-vertical.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label {
	margin: 2px 0;
}

.pp-tabs-vertical.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label:first-child {
	margin-top: 0;
}

.pp-tabs-vertical.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label:last-child {
	margin-bottom: 0;
}

.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label.pp-tab-active {
	border: 0;
}

/*  Style 2
------------------------------------ */

.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-inner {
	position: relative;
    display: flex;
	flex-direction: column;
	height: 100%;
	overflow: visible;
    line-height: 1;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-flex {
	flex-grow: 0;
}
/* .pp-tabs-style-2 .pp-tabs-label .pp-tab-title {
	text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
} */

.pp-tabs-style-2 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -40px;
	display: block;
	border: solid 15px transparent;
	width: 0px;
	margin: 0 auto;
}

.pp-tabs-style-2 .pp-tabs-label.pp-tab-active {
	z-index: 50;
	border: 0;
}

.pp-tabs-style-2 .pp-tabs-label:first-child:before, .pp-tabs-style-2 .pp-tabs-label::after {
	position: absolute;
	top: 20%;
	right: 0;
	z-index: -1;
	width: 1px;
	height: 60%;
	content: '';
}

.pp-tabs-style-2 .pp-tabs-label.pp-no-border:after {
	display: none;
}

.pp-tabs-style-2 .pp-tabs-label:last-child:after,
.pp-tabs-style-2 .pp-tabs-label.pp-tab-active:after,
.pp-tabs-style-2 .pp-tabs-label.pp-tab-active:before,
.pp-tabs-style-2 .pp-tabs-label:first-child:before {
	display: none;
}

.pp-tabs-style-2 .pp-tabs-labels .pp-tabs-label:first-child:before {
	right: auto;
    left: 0;
}

.pp-tabs-style-2 .pp-tabs-labels .pp-tabs-label.pp-tab-active {
	border: 0;
}

/*  Style 3
------------------------------------ */

.pp-tabs-style-3 .pp-tabs-label {
    margin-left: 1px;
	overflow: hidden;
	position: relative;
}

.pp-tabs-style-3:not(.pp-tabs-vertical-left) .pp-tabs-labels .pp-tabs-label:first-child {
	margin-left: 0;
}

.pp-tabs-style-3 .pp-tabs-label:after {
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate3d(0,150%,0);
    transform: translate3d(0,150%,0);
}

.pp-tabs-style-3 .pp-tabs-label.pp-tab-active:after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.pp-tabs-style-3 .pp-tabs-label.pp-tab-active {
	border: 0;
}

/*  Style 4
------------------------------------ */

.pp-tabs-style-4 .pp-tabs-label {
    margin-right: 1px;
	position: relative;
	overflow: hidden;
}

.pp-tabs-style-4 .pp-tabs-label:before {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate3d(0,-150%,0);
    transform: translate3d(0,-150%,0);
}

.pp-tabs-style-4 .pp-tabs-label.pp-tab-active:before {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.pp-tabs-style-4  .pp-tabs-label.pp-tab-active {
	border-bottom: 0;
}

/*  Style 5
------------------------------------ */
.pp-tabs-style-5 .pp-tabs-label {
	padding: 0 !important;
	background-color: transparent !important;
	overflow: hidden;
}

.pp-tabs-style-5 .pp-tabs-label .pp-tab-label-inner {
	padding: 20px 10px;
	position: relative;
}

.pp-tabs-style-5 .pp-tabs-label .pp-tab-label-inner:after {
	position: absolute;
    top: 0;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    content: '';
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s;
    -webkit-transform: perspective(900px) rotate3d(1,0,0,90deg);
    transform: perspective(900px) rotate3d(1,0,0,90deg);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-perspective-origin: 50% 100%;
    perspective-origin: 50% 100%;
}

.pp-tabs-style-5 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	background-color: #eee;
    -webkit-transform: perspective(900px) rotate3d(1,0,0,0deg);
    transform: perspective(900px) rotate3d(1,0,0,0deg);
}

/*  Style 6
------------------------------------ */
.pp-tabs-style-6 .pp-tabs-label .pp-tab-label-inner {
	-webkit-transition: color 0.3s, -webkit-transform 0.3s;
    transition: color 0.3s, transform 0.3s;
	position: relative;
}

.pp-tabs-style-6 .pp-tabs-label.pp-tab-active .pp-tab-label-inner {
	-webkit-transform: translate3d(0,8px,0);
    transform: translate3d(0,8px,0);
}

.pp-tabs-style-6 .pp-tabs-label:last-child:before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #2CC185;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.pp-tabs-vertical.pp-tabs-style-6 .pp-tabs-label:last-child:before {
	display: none;
}

/*  Style 7
------------------------------------ */
.pp-tabs-style-7 .pp-tabs-label {
	padding: 0 !important;
	background-color: transparent !important;
}

.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
	overflow: visible;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
	padding: 20px 10px;
}

/* .pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after, */
.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
	position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border: solid transparent;
    content: '';
    pointer-events: none;
}

.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
	/* margin-left: -11px; */
	border-width: 11px;
	border-top-color: rgba(0,0,0,0.2);
}
.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	margin-left: -10px;
    border-width: 10px;
    border-top-color: #e7ecea;
}

/*  Style 8
------------------------------------ */
.pp-tabs-style-8 .pp-tabs-label {
	padding: 0 !important;
	background-color: transparent !important;
	margin: 0 15px;
	overflow: hidden;
}

.pp-tabs-vertical.pp-tabs-style-8 .pp-tabs-label {
	margin: 0 !important;
}

.pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner {
	padding: 20px 10px;
	position: relative;
	overflow: hidden;
}

.pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner:after {
	position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #d2d8d6;
    content: '';
    -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
    transition: background-color 0.3s, transform 0.3s;
    -webkit-transition-timing-function: ease, cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: ease, cubic-bezier(0.7,0,0.3,1);
    -webkit-transform: translate3d(0,100%,0) translate3d(0,-3px,0);
    transform: translate3d(0,100%,0) translate3d(0,-3px,0);
}

.pp-tabs-style-8 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.pp-tabs-vertical.pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner:after {
	opacity: 0;
}
.pp-tabs-vertical.pp-tabs-style-8 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	opacity: 1;
}




/* Media Queries */

@media only screen and (min-width: 769px) {

	/* Style 2 */
	.pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-inner:after {
		border-top-color: transparent !important;
		border-left-color: #e4e4e4;
		bottom: 0;
		margin: auto 0;
		right: -40px;
		left: auto;
		top: -45px;
		height: 0;
		content: "";
		position: absolute;
	}
	.pp-tabs-vertical.pp-tabs-vertical-right.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-inner:after {
		right: auto;
		left: -40px;
		transform: rotate(180deg);
	}

	.pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-label:first-child:before,
	.pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-label::after {
		display: none;
	}

	/* Style 7 */
	.pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
		border-bottom: 0;
		border-right: 1px solid rgba(0,0,0,0.2);
	}
	.pp-tabs-vertical.pp-tabs-vertical-right.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
		border-left: 1px solid rgba(0,0,0,0.2);
		border-right: 0;
	}

	/*.pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after,*/
	.pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
		position: absolute;
		top: 35%;
	    right: -22px;
		left: auto;
	    width: 0;
	    height: 0;
	    border: solid transparent;
	    content: '';
	    pointer-events: none;
		border-top-color: transparent !important;
	}
	.pp-tabs-vertical.pp-tabs-vertical-right.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
		right: auto;
		left: -22px;
		transform: rotate(180deg);
	}

	.pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
		/* margin-left: -11px; */
		border-width: 11px;
		border-left-color: rgba(0,0,0,0.2);
	}
	/* .pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
		margin-left: -10px;
	    border-width: 10px;
	    border-left-color: #e7ecea;
	} */

}
@media (max-width: 768px) { /*  Labels
------------------------------------ */

.pp-tabs-labels {
	display: none !important;
}

/*  Panel Labels
------------------------------------ */

.pp-tabs-panel-label {
	display: table;
	width: 100%;
	padding: 20px 15px;
}

.pp-tabs-panel-label span {
	width: auto;
}

/*  Panels
------------------------------------ */

.pp-tabs-panel:last-child {
	border-bottom: none;
}


.pp-tabs-default .pp-tabs-panels {
	border: 0;
}

/*  Horizontal
------------------------------------ */

.pp-tabs-horizontal .pp-tabs-label {
	float: none;
}
.pp-tabs-horizontal .pp-tabs-label.pp-tab-active {
	border: none;
}

/*  Vertical
------------------------------------ */

.pp-tabs-vertical .pp-tabs-labels {
	float: none;
	width: auto;
}
.pp-tabs-vertical .pp-tabs-label.pp-tab-active {
	border: none;
}
.pp-tabs-vertical .pp-tabs-panels {
	float: none;
	width: auto;
}


.pp-tabs-panel-content {
	padding: 20px;
}
.pp-tabs .pp-tabs-label {
	text-align: left;
	border-bottom: 2px solid #e7e7e7;
}
.pp-tabs .pp-tabs-label.pp-tab-active {
	border-bottom: 0;
}

.pp-tabs .pp-tabs-default .pp-tabs-label,
.pp-tabs .pp-tabs-default .pp-tabs-label.pp-tab-active,
.pp-tabs .pp-tabs-style-5 .pp-tabs-label,
.pp-tabs .pp-tabs-style-6 .pp-tabs-label,
.pp-tabs .pp-tabs-style-6 .pp-tabs-label.pp-tab-active,
.pp-tabs .pp-tabs-style-7 .pp-tabs-label,
.pp-tabs .pp-tabs-style-7 .pp-tabs-label.pp-tab-active,
.pp-tabs .pp-tabs-style-8 .pp-tabs-label {
	background-color: transparent !important;
}

.pp-tabs-style-1 .pp-tabs-label {
	border: 0 !important;
	border-bottom: 2px solid #e7e7e7 !important;
}
.pp-tabs-style-1 .pp-tabs-label.pp-tab-active {
	border-bottom: 0 !important;
}
.pp-tabs-style-2 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after,
.pp-tabs-style-3 .pp-tabs-label:after,
.pp-tabs-style-4 .pp-tabs-label.pp-tab-active:before,
.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after,
.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
	display: none;
}
.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
	border-bottom: 0;
}

.pp-tabs-horizontal .pp-tabs-label .pp-tab-label-inner:before {
	content: "";
	display: block;
	height: auto;
	vertical-align: middle;
}
.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-inner {
	display: table;
}
.pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-inner:after {
	display: none;
}
.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-inner {
	flex-direction: row;
}
.pp-tabs-style-2 .pp-tabs-panel-label .pp-toggle-icon {
	margin-left: auto;
}
.pp-tabs-style-2 .pp-tabs-label:first-child:before, .pp-tabs-style-2 .pp-tabs-label::after {
	display: none;
}
.pp-tabs .pp-tab-title {
	display: inline-block;
	width: auto;
}
.pp-tab-icon {
	padding-left: 0 !important;
	display: inline-table !important;
}
.pp-tabs-panel-label .pp-toggle-icon {
	text-align: right;
}
.pp-tabs-style-5 .pp-tabs-label .pp-tab-label-inner:after {
	display: none;
}

.pp-tabs-horizontal.pp-tabs-default .pp-tabs-label.pp-tab-active {
	/*border: none;*/
}

.pp-tabs-style-8 .pp-tabs-label {
	margin: 0 !important;
}

.pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner:after {
	display: none;
} }
.fl-node-2j3d8hrqa7lc .pp-tabs-label .pp-tab-icon {
					margin-bottom: 10px;
					color: rgb(255, 255, 255);
	}

	.fl-node-2j3d8hrqa7lc .pp-tabs-vertical .pp-tabs-label {
				text-align: ;
			}
	

.fl-node-2j3d8hrqa7lc .pp-tabs-labels .pp-tabs-label .pp-tab-label-flex {
								}
.fl-node-2j3d8hrqa7lc .pp-tabs-panels .pp-tabs-panel-content {
			background-color: rgba(0, 0, 0, 0);
				}

.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label {
		background-color: rgb(255, 255, 255);
			color: rgb(51, 51, 51);
	}

.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label.pp-tab-active,
.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label.pp-tab-active:hover,
.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label:hover,
.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label:focus {
		background-color: #fd779b;
			color: rgb(255, 255, 255);
	}

.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label .pp-tab-description {
	}

.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label.pp-tab-active .pp-tab-description,
.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label.pp-tab-active:hover .pp-tab-description,
.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label:hover .pp-tab-description {
	}

.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label.pp-tab-active .pp-tab-icon,
.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label.pp-tab-active:hover .pp-tab-icon,
.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label:hover .pp-tab-icon {
			color: #fd779b;
	}

.fl-node-2j3d8hrqa7lc .pp-tabs-panel-label .pp-toggle-icon {
		font-size: 16px;
			color: #fd779b;
	}

.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label.pp-tab-active .pp-toggle-icon {
	color: rgb(255, 255, 255);
}

.fl-node-2j3d8hrqa7lc .pp-tabs-horizontal.pp-tabs-default .pp-tabs-label.pp-tab-active {
	top: 0;
}

/*  Style 1
------------------------------------ */

.fl-node-2j3d8hrqa7lc .pp-tabs-style-1 .pp-tabs-label:hover {
	color: rgb(255, 255, 255);
}

/*  Style 2
------------------------------------ */

.fl-node-2j3d8hrqa7lc .pp-tabs-style-2 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	border-top-color: #fd779b;
}

/*  Style 3
------------------------------------ */
.fl-node-2j3d8hrqa7lc .pp-tabs-style-3 .pp-tabs-label:after {
	background-color: rgb(255, 255, 255);
}

.fl-node-2j3d8hrqa7lc .pp-tabs-style-3 .pp-tabs-label:hover {
		color: rgb(51, 51, 51);
			background-color: rgb(255, 255, 255);
	}

/*  Style 4
------------------------------------ */
.fl-node-2j3d8hrqa7lc .pp-tabs-style-4 .pp-tabs-label:before {
	background-color: rgb(255, 255, 255);
}

.fl-node-2j3d8hrqa7lc .pp-tabs-style-4 .pp-tabs-label:hover {
		color: rgb(51, 51, 51);
			background-color: rgb(255, 255, 255);
	}

/*  Style 5
------------------------------------ */
.fl-node-2j3d8hrqa7lc .pp-tabs-style-5 .pp-tabs-label .pp-tab-label-inner:after,
.fl-node-2j3d8hrqa7lc .pp-tabs-style-5 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	background-color: #fd779b;
}
.fl-node-2j3d8hrqa7lc .pp-tabs-style-5 .pp-tabs-label:hover {
	color: rgb(51, 51, 51);
}

/*  Style 6
------------------------------------ */

				.fl-node-2j3d8hrqa7lc .pp-tabs-style-6 .pp-tabs-label:first-child.pp-tab-active ~ .pp-tabs-label:last-child::before {
			-webkit-transform: translate3d(-300%,0,0);
			transform: translate3d(-300%,0,0);
		}
							.fl-node-2j3d8hrqa7lc .pp-tabs-style-6 .pp-tabs-label:nth-child(2).pp-tab-active ~ .pp-tabs-label:last-child::before {
			-webkit-transform: translate3d(-200%,0,0);
			transform: translate3d(-200%,0,0);
		}
						.fl-node-2j3d8hrqa7lc .pp-tabs-style-6 .pp-tabs-label:nth-child(3).pp-tab-active ~ .pp-tabs-label:last-child::before {
			-webkit-transform: translate3d(-100%,0,0);
			transform: translate3d(-100%,0,0);
		}
		
.fl-node-2j3d8hrqa7lc .pp-tabs-style-6 .pp-tabs-label,
.fl-node-2j3d8hrqa7lc .pp-tabs-style-6 .pp-tabs-label.pp-tab-active,
.fl-node-2j3d8hrqa7lc .pp-tabs-style-6 .pp-tabs-label.pp-tab-active:hover,
.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-style-6 .pp-tabs-label:hover {
	background-color: transparent !important;
		color: rgb(51, 51, 51) !important;
	}
.fl-node-2j3d8hrqa7lc .pp-tabs-style-6 .pp-tabs-label:last-child:before {
	background-color: rgb(255, 255, 255);
}

/*  Style 7
------------------------------------ */

/*  Style 8
------------------------------------ */
.fl-node-2j3d8hrqa7lc .pp-tabs-style-8 .pp-tabs-label:hover .pp-tab-label-inner:after,
.fl-node-2j3d8hrqa7lc .pp-tabs-style-8 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	background-color: #fd779b;
}
.fl-node-2j3d8hrqa7lc .pp-tabs-style-8 .pp-tabs-label:hover {
	color: rgb(51, 51, 51);
}
.fl-node-2j3d8hrqa7lc .pp-tabs-horizontal.pp-tabs-style-8 .pp-tabs-label {
	margin-left: 15px;
	margin-right: 15px;
}

@media only screen and (min-width: 769px) {
		.fl-node-2j3d8hrqa7lc .pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
		border-left-color: #fd779b;
	}
		.fl-node-2j3d8hrqa7lc .pp-tabs-vertical.pp-tabs-style-6 .pp-tabs-label {
		border-bottom: 4px solid transparent;
	}
		.fl-node-2j3d8hrqa7lc .pp-tabs-vertical.pp-tabs-style-6 .pp-tabs-label.pp-tab-active {
		border-bottom: 4px solid rgb(255, 255, 255);
	}
		}

@media only screen and (max-width: 768px) {
	.fl-node-2j3d8hrqa7lc .pp-tabs-style-1 .pp-tabs-label {
				margin: 2px 0;
	}
		.fl-node-2j3d8hrqa7lc .pp-tabs-style-5 .pp-tabs-label.pp-tab-active {
		background-color: #fd779b !important;
	}
	.fl-node-2j3d8hrqa7lc .pp-tabs-style-8 .pp-tabs-label.pp-tab-active {
		background-color: #fd779b !important;
	}
	}.fl-node-2j3d8hrqa7lc .pp-tabs-labels .pp-tabs-label .pp-tab-title, .fl-node-2j3d8hrqa7lc .pp-tabs-panels .pp-tabs-label .pp-tab-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 16px;
}
.fl-node-2j3d8hrqa7lc .pp-tabs-labels .pp-tabs-label .pp-tab-description, .fl-node-2j3d8hrqa7lc .pp-tabs-panels .pp-tabs-label .pp-tab-description {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
}
.fl-node-2j3d8hrqa7lc .pp-tabs-panels .pp-tabs-panel-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-2j3d8hrqa7lc .pp-tabs-labels .pp-tabs-label, .fl-node-2j3d8hrqa7lc .pp-tabs-panel .pp-tabs-label, .fl-node-2j3d8hrqa7lc .pp-tabs-style-5 .pp-tabs-label .pp-tab-label-inner, .fl-node-2j3d8hrqa7lc .pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner, .fl-node-2j3d8hrqa7lc .pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner {
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 30px;
}
@media(max-width: 768px) {
	.fl-node-2j3d8hrqa7lc .pp-tabs-panels .pp-tabs-panel-content {
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
	}
	.fl-node-2j3d8hrqa7lc .pp-tabs-labels .pp-tabs-label, .fl-node-2j3d8hrqa7lc .pp-tabs-panel .pp-tabs-label, .fl-node-2j3d8hrqa7lc .pp-tabs-style-5 .pp-tabs-label .pp-tab-label-inner, .fl-node-2j3d8hrqa7lc .pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner, .fl-node-2j3d8hrqa7lc .pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner {
		padding-top: 5px;
		padding-right: 5px;
		padding-bottom: 5px;
		padding-left: 5px;
	}
}
 .fl-node-2j3d8hrqa7lc > .fl-module-content {
	margin-top:50px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-2j3d8hrqa7lc.fl-module > .fl-module-content {
	margin-top:40px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 992px ) {
 .fl-node-2j3d8hrqa7lc.fl-module > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-2j3d8hrqa7lc.fl-module > .fl-module-content {
	margin-top:40px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-builder-content .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	font-size: 35px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 27px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
		letter-spacing: -0.2px;
	}
}
 .fl-node-m2b3fovcesgr.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-m2b3fovcesgr.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-bottom:10px;
}
}
.bb-heading-input.input-small {
	width: 46px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-sub-heading,
div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-sub-heading p {
		color: rgb(0, 0, 0);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-8ae49gz6dir2 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-8ae49gz6dir2 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-8ae49gz6dir2 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-8ae49gz6dir2 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-8ae49gz6dir2 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-sub-heading, div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 30px;
}
div.fl-node-8ae49gz6dir2 .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-8ae49gz6dir2 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-sub-heading, div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 768px) {
	div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-sub-heading, div.fl-node-8ae49gz6dir2 .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-8ae49gz6dir2 > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:45px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-8ae49gz6dir2.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-node-z06fpt5vjg4h, .fl-node-z06fpt5vjg4h .fl-photo {
	text-align: left;
}
.fl-node-z06fpt5vjg4h .fl-photo-content, .fl-node-z06fpt5vjg4h .fl-photo-img {
	width: 100px;
}
 .fl-node-z06fpt5vjg4h.fl-module-photo {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content .fl-node-6p5lkzh20ea7.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-6p5lkzh20ea7.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-6p5lkzh20ea7.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-6p5lkzh20ea7.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 500;
	font-size: 50px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-6p5lkzh20ea7.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-6p5lkzh20ea7.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 40px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-6p5lkzh20ea7.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-6p5lkzh20ea7.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 35px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-6p5lkzh20ea7.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-6p5lkzh20ea7.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 28px;
	}
}
 .fl-node-6p5lkzh20ea7.fl-module-rich-text {
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-6p5lkzh20ea7.fl-module-rich-text.fl-module {
	margin-right:0px;
	margin-bottom:5px;
	margin-left:0px;
}
}
.fl-node-ji0phcga1elk, .fl-node-ji0phcga1elk .fl-photo {
	text-align: center;
}
.fl-node-ji0phcga1elk .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-ji0phcga1elk .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-ji0phcga1elk.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-ji0phcga1elk.fl-module-photo.fl-module {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ji0phcga1elk.fl-module-photo.fl-module {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-node-2k19hejmxyar, .fl-node-2k19hejmxyar .fl-photo {
	text-align: center;
}
.fl-node-2k19hejmxyar .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-2k19hejmxyar .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-2k19hejmxyar.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-2k19hejmxyar.fl-module-photo.fl-module {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-2k19hejmxyar.fl-module-photo.fl-module {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-node-5o8jfna32scz, .fl-node-5o8jfna32scz .fl-photo {
	text-align: center;
}
.fl-node-5o8jfna32scz .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-5o8jfna32scz .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-5o8jfna32scz.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-5o8jfna32scz.fl-module-photo.fl-module {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5o8jfna32scz.fl-module-photo.fl-module {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-node-6gf1vzpi8xq2, .fl-node-6gf1vzpi8xq2 .fl-photo {
	text-align: center;
}
.fl-node-6gf1vzpi8xq2 .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-6gf1vzpi8xq2 .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-6gf1vzpi8xq2.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-6gf1vzpi8xq2.fl-module-photo.fl-module {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-6gf1vzpi8xq2.fl-module-photo.fl-module {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-node-hq63bajr8x7d, .fl-node-hq63bajr8x7d .fl-photo {
	text-align: center;
}
.fl-node-hq63bajr8x7d .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-hq63bajr8x7d .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-hq63bajr8x7d.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-hq63bajr8x7d.fl-module-photo.fl-module {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-hq63bajr8x7d.fl-module-photo.fl-module {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}

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

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

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

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


div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


div.fl-node-7ina04l9kbet .pp-heading-content .pp-sub-heading,
div.fl-node-7ina04l9kbet .pp-heading-content .pp-sub-heading p {
		color: rgb(0, 0, 0);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-7ina04l9kbet .pp-heading-content {
				text-align: ;
			}
	div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-7ina04l9kbet div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-7ina04l9kbet div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-7ina04l9kbet div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-7ina04l9kbet div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-7ina04l9kbet .pp-heading-content .pp-sub-heading, div.fl-node-7ina04l9kbet .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 30px;
}
div.fl-node-7ina04l9kbet .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-7ina04l9kbet .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-7ina04l9kbet .pp-heading-content .pp-sub-heading, div.fl-node-7ina04l9kbet .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 768px) {
	div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-7ina04l9kbet .pp-heading-content .pp-sub-heading, div.fl-node-7ina04l9kbet .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
	div.fl-node-7ina04l9kbet .pp-heading-content .pp-heading-separator:not(.inline) {
		margin-bottom: 10px;
	}
}
 .fl-node-7ina04l9kbet > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
.fl-builder-content .fl-node-xw9zcn40e8fi.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xw9zcn40e8fi.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-xw9zcn40e8fi.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xw9zcn40e8fi.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-xw9zcn40e8fi.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xw9zcn40e8fi.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-xw9zcn40e8fi.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xw9zcn40e8fi.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 18px;
	}
}
 .fl-node-xw9zcn40e8fi.fl-module-rich-text {
	margin-top:15px;
}
@media ( max-width: 992px ) {
 .fl-node-xw9zcn40e8fi.fl-module-rich-text.fl-module {
	margin-top:10px;
	margin-bottom:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-xw9zcn40e8fi.fl-module-rich-text.fl-module {
	margin-top:5px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
}

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

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

div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-vldb9z3ukorc .pp-heading-content {
				text-align: ;
			}
	div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-vldb9z3ukorc div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-vldb9z3ukorc div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-vldb9z3ukorc div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-vldb9z3ukorc div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-vldb9z3ukorc .pp-heading-content .pp-sub-heading, div.fl-node-vldb9z3ukorc .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-vldb9z3ukorc .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-vldb9z3ukorc .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-vldb9z3ukorc .pp-heading-content .pp-sub-heading, div.fl-node-vldb9z3ukorc .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-vldb9z3ukorc .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-vldb9z3ukorc .pp-heading-content .pp-sub-heading, div.fl-node-vldb9z3ukorc .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-vldb9z3ukorc > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-vldb9z3ukorc.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-vldb9z3ukorc.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading-prefix {
	}

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

div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


div.fl-node-2t7lma03efp4 .pp-heading-content .pp-sub-heading,
div.fl-node-2t7lma03efp4 .pp-heading-content .pp-sub-heading p {
		color: rgb(0, 0, 0);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-2t7lma03efp4 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-2t7lma03efp4 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-2t7lma03efp4 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-2t7lma03efp4 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-2t7lma03efp4 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-2t7lma03efp4 .pp-heading-content .pp-sub-heading, div.fl-node-2t7lma03efp4 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-2t7lma03efp4 .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-2t7lma03efp4 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-2t7lma03efp4 .pp-heading-content .pp-sub-heading, div.fl-node-2t7lma03efp4 .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-2t7lma03efp4 .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-2t7lma03efp4 .pp-heading-content .pp-sub-heading, div.fl-node-2t7lma03efp4 .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-2t7lma03efp4 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-2t7lma03efp4.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-2t7lma03efp4.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}

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

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

div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-aejxi46mz0q3 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-aejxi46mz0q3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-aejxi46mz0q3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-aejxi46mz0q3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-aejxi46mz0q3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-sub-heading, div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-aejxi46mz0q3 .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-aejxi46mz0q3 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-sub-heading, div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-sub-heading, div.fl-node-aejxi46mz0q3 .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-aejxi46mz0q3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-aejxi46mz0q3.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-aejxi46mz0q3.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}

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

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

div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-cq4ykudgjbt9 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-cq4ykudgjbt9 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-cq4ykudgjbt9 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-cq4ykudgjbt9 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-cq4ykudgjbt9 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-sub-heading, div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-cq4ykudgjbt9 .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-cq4ykudgjbt9 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-sub-heading, div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-sub-heading, div.fl-node-cq4ykudgjbt9 .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-cq4ykudgjbt9 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-cq4ykudgjbt9.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-cq4ykudgjbt9.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content .fl-node-xnibklzwctsp.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xnibklzwctsp.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-xnibklzwctsp.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xnibklzwctsp.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-xnibklzwctsp.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xnibklzwctsp.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-xnibklzwctsp.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xnibklzwctsp.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 18px;
	}
}
 .fl-node-xnibklzwctsp.fl-module-rich-text {
	margin-top:15px;
}
@media ( max-width: 992px ) {
 .fl-node-xnibklzwctsp.fl-module-rich-text.fl-module {
	margin-top:10px;
	margin-bottom:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-xnibklzwctsp.fl-module-rich-text.fl-module {
	margin-top:5px;
	margin-bottom:10px;
}
}
.fl-builder-content .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 500;
	font-size: 40px;
	line-height: 1.3;
	letter-spacing: -0.8px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 40px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 27px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 27px;
	}
}
 .fl-node-t0u8ibxvh2ne.fl-module-rich-text {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:20px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-module {
	margin-top:10px;
	margin-bottom:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-t0u8ibxvh2ne.fl-module-rich-text.fl-module {
	margin-top:5px;
	margin-right:0px;
	margin-bottom:20px;
	margin-left:0px;
}
}
 .fl-node-klmr4od71nba.fl-module-html {
	margin-top:0px;
	margin-right:40px;
	margin-bottom:160px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-klmr4od71nba.fl-module-html.fl-module {
	margin-right:0px;
}
}
@media (max-width: 768px) { .fl-node-klmr4od71nba.fl-module-html { margin-bottom:20px; } }.fl-builder-content .fl-node-xpzic2semuj4.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xpzic2semuj4.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-xpzic2semuj4.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xpzic2semuj4.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 500;
	font-size: 50px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-xpzic2semuj4.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xpzic2semuj4.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 40px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-xpzic2semuj4.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xpzic2semuj4.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 35px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-xpzic2semuj4.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xpzic2semuj4.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 28px;
	}
}
 .fl-node-xpzic2semuj4.fl-module-rich-text {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-xpzic2semuj4.fl-module-rich-text.fl-module {
	margin-right:0px;
	margin-bottom:5px;
	margin-left:0px;
}
}
.fl-builder-content .fl-node-hyprzx453vnk.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-hyprzx453vnk.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-hyprzx453vnk.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-hyprzx453vnk.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-hyprzx453vnk.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-hyprzx453vnk.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-hyprzx453vnk.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-hyprzx453vnk.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 18px;
	}
}
 .fl-node-hyprzx453vnk.fl-module-rich-text {
	margin-top:15px;
}
@media ( max-width: 992px ) {
 .fl-node-hyprzx453vnk.fl-module-rich-text.fl-module {
	margin-top:10px;
	margin-bottom:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-hyprzx453vnk.fl-module-rich-text.fl-module {
	margin-top:5px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
}

div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading-prefix {
	}

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

div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading {
		}

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


div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: rgb(0, 0, 0);
					margin-left: 0px;
}
div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

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

/** Separators */


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


div.fl-node-98js1kwr3a5i .pp-heading-content .pp-sub-heading,
div.fl-node-98js1kwr3a5i .pp-heading-content .pp-sub-heading p {
		color: rgb(0, 0, 0);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-98js1kwr3a5i .pp-heading-content {
				text-align: ;
			}
	div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-98js1kwr3a5i div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-98js1kwr3a5i div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-98js1kwr3a5i div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-98js1kwr3a5i div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-98js1kwr3a5i .pp-heading-content .pp-sub-heading, div.fl-node-98js1kwr3a5i .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-98js1kwr3a5i .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-98js1kwr3a5i .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-98js1kwr3a5i .pp-heading-content .pp-sub-heading, div.fl-node-98js1kwr3a5i .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-98js1kwr3a5i .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-98js1kwr3a5i .pp-heading-content .pp-sub-heading, div.fl-node-98js1kwr3a5i .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-98js1kwr3a5i > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-98js1kwr3a5i.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-98js1kwr3a5i.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}

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

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

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

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


div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: rgb(0, 0, 0);
					margin-left: 0px;
}
div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-w2th6c081gd3 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-w2th6c081gd3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-w2th6c081gd3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-w2th6c081gd3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-w2th6c081gd3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-w2th6c081gd3 .pp-heading-content .pp-sub-heading, div.fl-node-w2th6c081gd3 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-w2th6c081gd3 .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-w2th6c081gd3 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-w2th6c081gd3 .pp-heading-content .pp-sub-heading, div.fl-node-w2th6c081gd3 .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-w2th6c081gd3 .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-w2th6c081gd3 .pp-heading-content .pp-sub-heading, div.fl-node-w2th6c081gd3 .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-w2th6c081gd3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-w2th6c081gd3.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-w2th6c081gd3.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}

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

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

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

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


div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: rgb(0, 0, 0);
					margin-left: 0px;
}
div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-fxkjgs807pyi .pp-heading-content {
				text-align: ;
			}
	div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-fxkjgs807pyi div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-fxkjgs807pyi div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-fxkjgs807pyi div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-fxkjgs807pyi div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-fxkjgs807pyi .pp-heading-content .pp-sub-heading, div.fl-node-fxkjgs807pyi .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-fxkjgs807pyi .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-fxkjgs807pyi .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-fxkjgs807pyi .pp-heading-content .pp-sub-heading, div.fl-node-fxkjgs807pyi .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-fxkjgs807pyi .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-fxkjgs807pyi .pp-heading-content .pp-sub-heading, div.fl-node-fxkjgs807pyi .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-fxkjgs807pyi > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-fxkjgs807pyi.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-fxkjgs807pyi.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}

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

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

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

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


div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: rgb(0, 0, 0);
					margin-left: 0px;
}
div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-csyw0296pi4v .pp-heading-content {
				text-align: ;
			}
	div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-csyw0296pi4v div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-csyw0296pi4v div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-csyw0296pi4v div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-csyw0296pi4v div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-csyw0296pi4v .pp-heading-content .pp-sub-heading, div.fl-node-csyw0296pi4v .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-csyw0296pi4v .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-csyw0296pi4v .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-csyw0296pi4v .pp-heading-content .pp-sub-heading, div.fl-node-csyw0296pi4v .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-csyw0296pi4v .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-csyw0296pi4v .pp-heading-content .pp-sub-heading, div.fl-node-csyw0296pi4v .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-csyw0296pi4v > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-csyw0296pi4v.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-csyw0296pi4v.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}

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

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

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

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


div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: rgb(0, 0, 0);
					margin-left: 0px;
}
div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-l8ab7to4z5cx .pp-heading-content {
				text-align: ;
			}
	div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-l8ab7to4z5cx div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-l8ab7to4z5cx div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-l8ab7to4z5cx div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-l8ab7to4z5cx div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-sub-heading, div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-l8ab7to4z5cx .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-l8ab7to4z5cx .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-sub-heading, div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-sub-heading, div.fl-node-l8ab7to4z5cx .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
		letter-spacing: -1px;
	}
}
 .fl-node-l8ab7to4z5cx > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-l8ab7to4z5cx.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-l8ab7to4z5cx.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}

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

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

div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title:before {
		width: 1px;
			border-style: solid;
			border-color: #fd779b;
			border-bottom-width: 50px;
	}

div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title:after {
		width: 1px;
			border-style: solid;
			border-color: #fd779b;
			border-bottom-width: 50px;
	}

div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 1px;
			border-bottom-style: solid;
			border-bottom-color: #fd779b;
			border-bottom-width: 50px;
	}

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


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

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

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

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

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

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

div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 1px;
			border-style: solid;
			border-color: #fd779b;
			border-bottom-width: 50px;
	}

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

div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 50px;
			border-bottom-color: #fd779b;
			width: 1px;
			margin: 0 auto;
	}

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


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

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

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


@media only screen and (max-width: 992px) {
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-gwhud7tanb6p .pp-heading-content {
				text-align: ;
			}
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-prefix {
									}
		div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-separator,
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before,
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after,
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-prefix:before,
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-prefix:after {
		content: none !important;
		display: none !important;
	}
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading.pp-separator-inline .heading-title span,
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-prefix {
		padding: 0 !important;
	}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-gwhud7tanb6p .pp-heading-content {
				text-align: ;
			}
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-gwhud7tanb6p div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-gwhud7tanb6p div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-gwhud7tanb6p div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-gwhud7tanb6p div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-gwhud7tanb6p .pp-heading-content .pp-sub-heading, div.fl-node-gwhud7tanb6p .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-bottom: 30px;
}
div.fl-node-gwhud7tanb6p .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-gwhud7tanb6p .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-sub-heading, div.fl-node-gwhud7tanb6p .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 768px) {
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-gwhud7tanb6p .pp-heading-content .pp-sub-heading, div.fl-node-gwhud7tanb6p .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-gwhud7tanb6p > .fl-module-content {
	margin-top:10px;
	margin-bottom:100px;
}
@media ( max-width: 768px ) {
 .fl-node-gwhud7tanb6p.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:30px;
	margin-left:0px;
}
}

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

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

div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-hqicp1ljgado .pp-heading-content {
				text-align: ;
			}
	div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-hqicp1ljgado div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-hqicp1ljgado div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-hqicp1ljgado div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-hqicp1ljgado div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-hqicp1ljgado .pp-heading-content .pp-sub-heading, div.fl-node-hqicp1ljgado .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 30px;
}
div.fl-node-hqicp1ljgado .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-hqicp1ljgado .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-hqicp1ljgado .pp-heading-content .pp-sub-heading, div.fl-node-hqicp1ljgado .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 768px) {
	div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-hqicp1ljgado .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-hqicp1ljgado .pp-heading-content .pp-sub-heading, div.fl-node-hqicp1ljgado .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-hqicp1ljgado > .fl-module-content {
	margin-top:20px;
}
@media ( max-width: 992px ) {
 .fl-node-hqicp1ljgado.fl-module > .fl-module-content {
	margin-top:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-hqicp1ljgado.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}

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

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

div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-a9vwizhtnrsl .pp-heading-content {
				text-align: ;
			}
	div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-a9vwizhtnrsl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-a9vwizhtnrsl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-a9vwizhtnrsl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-a9vwizhtnrsl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-sub-heading, div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-a9vwizhtnrsl .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-a9vwizhtnrsl .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-sub-heading, div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
	}
}
@media(max-width: 768px) {
	div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-sub-heading, div.fl-node-a9vwizhtnrsl .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-a9vwizhtnrsl > .fl-module-content {
	margin-top:5px;
}
@media ( max-width: 992px ) {
 .fl-node-a9vwizhtnrsl.fl-module > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-a9vwizhtnrsl.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}

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

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

div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-fhjisnb7ya0k .pp-heading-content {
				text-align: ;
			}
	div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-fhjisnb7ya0k div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-fhjisnb7ya0k div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-fhjisnb7ya0k div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-fhjisnb7ya0k div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-sub-heading, div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-fhjisnb7ya0k .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-fhjisnb7ya0k .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-sub-heading, div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
	}
}
@media(max-width: 768px) {
	div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-sub-heading, div.fl-node-fhjisnb7ya0k .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-fhjisnb7ya0k > .fl-module-content {
	margin-top:5px;
}
@media ( max-width: 992px ) {
 .fl-node-fhjisnb7ya0k.fl-module > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-fhjisnb7ya0k.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}

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

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

div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-0rtl5p3eqbco .pp-heading-content {
				text-align: ;
			}
	div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-0rtl5p3eqbco div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-0rtl5p3eqbco div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-0rtl5p3eqbco div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-0rtl5p3eqbco div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-sub-heading, div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-0rtl5p3eqbco .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-0rtl5p3eqbco .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-sub-heading, div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
	}
}
@media(max-width: 768px) {
	div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-sub-heading, div.fl-node-0rtl5p3eqbco .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-0rtl5p3eqbco > .fl-module-content {
	margin-top:5px;
}
@media ( max-width: 992px ) {
 .fl-node-0rtl5p3eqbco.fl-module > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-0rtl5p3eqbco.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}

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

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

div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-h5dpzcexsqbl .pp-heading-content {
				text-align: ;
			}
	div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-h5dpzcexsqbl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-h5dpzcexsqbl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-h5dpzcexsqbl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-h5dpzcexsqbl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-sub-heading, div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-h5dpzcexsqbl .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-h5dpzcexsqbl .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-sub-heading, div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
	}
}
@media(max-width: 768px) {
	div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-sub-heading, div.fl-node-h5dpzcexsqbl .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-h5dpzcexsqbl > .fl-module-content {
	margin-top:5px;
}
@media ( max-width: 992px ) {
 .fl-node-h5dpzcexsqbl.fl-module > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-h5dpzcexsqbl.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
}

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

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

div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title:before {
		width: 1px;
			border-style: solid;
			border-color: #fd779b;
			border-bottom-width: 50px;
	}

div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title:after {
		width: 1px;
			border-style: solid;
			border-color: #fd779b;
			border-bottom-width: 50px;
	}

div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 1px;
			border-bottom-style: solid;
			border-bottom-color: #fd779b;
			border-bottom-width: 50px;
	}

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


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

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

div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
	}

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

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

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

div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 1px;
			border-style: solid;
			border-color: #fd779b;
			border-bottom-width: 50px;
	}

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

div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 50px;
			border-bottom-color: #fd779b;
			width: 1px;
			margin: 0 auto;
	}

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


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

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

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


@media only screen and (max-width: 992px) {
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-a27jdpey8fqn .pp-heading-content {
				text-align: ;
			}
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-prefix {
									}
		div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-separator,
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before,
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after,
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-prefix:before,
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-prefix:after {
		content: none !important;
		display: none !important;
	}
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading.pp-separator-inline .heading-title span,
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-prefix {
		padding: 0 !important;
	}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-a27jdpey8fqn .pp-heading-content {
				text-align: ;
			}
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-a27jdpey8fqn div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-a27jdpey8fqn div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-a27jdpey8fqn div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-a27jdpey8fqn div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-a27jdpey8fqn .pp-heading-content .pp-sub-heading, div.fl-node-a27jdpey8fqn .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-bottom: 30px;
}
div.fl-node-a27jdpey8fqn .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-a27jdpey8fqn .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-sub-heading, div.fl-node-a27jdpey8fqn .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 768px) {
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-a27jdpey8fqn .pp-heading-content .pp-sub-heading, div.fl-node-a27jdpey8fqn .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-a27jdpey8fqn > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-a27jdpey8fqn.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-builder-content .fl-node-yxgdpmtkfj6o.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-yxgdpmtkfj6o.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-yxgdpmtkfj6o.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-yxgdpmtkfj6o.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-yxgdpmtkfj6o.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-yxgdpmtkfj6o.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-yxgdpmtkfj6o.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-yxgdpmtkfj6o.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 18px;
	}
}
 .fl-node-yxgdpmtkfj6o.fl-module-rich-text {
	margin-top:15px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-yxgdpmtkfj6o.fl-module-rich-text.fl-module {
	margin-top:10px;
	margin-bottom:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-yxgdpmtkfj6o.fl-module-rich-text.fl-module {
	margin-top:5px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
}

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

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

div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title:before {
		width: 1px;
			border-style: solid;
			border-color: #fd779b;
			border-bottom-width: 50px;
	}

div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title:after {
		width: 1px;
			border-style: solid;
			border-color: #fd779b;
			border-bottom-width: 50px;
	}

div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 1px;
			border-bottom-style: solid;
			border-bottom-color: #fd779b;
			border-bottom-width: 50px;
	}

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


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

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

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

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

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

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

div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 1px;
			border-style: solid;
			border-color: #fd779b;
			border-bottom-width: 50px;
	}

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

div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 50px;
			border-bottom-color: #fd779b;
			width: 1px;
			margin: 0 auto;
	}

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


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

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

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


@media only screen and (max-width: 992px) {
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-h3wn1y8r9osi .pp-heading-content {
				text-align: ;
			}
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-prefix {
									}
		div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-separator,
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before,
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after,
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-prefix:before,
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-prefix:after {
		content: none !important;
		display: none !important;
	}
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading.pp-separator-inline .heading-title span,
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-prefix {
		padding: 0 !important;
	}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-h3wn1y8r9osi .pp-heading-content {
				text-align: ;
			}
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-h3wn1y8r9osi div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-h3wn1y8r9osi div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-h3wn1y8r9osi div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-h3wn1y8r9osi div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-sub-heading, div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-bottom: 30px;
}
div.fl-node-h3wn1y8r9osi .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-h3wn1y8r9osi .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-sub-heading, div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 768px) {
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-sub-heading, div.fl-node-h3wn1y8r9osi .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-h3wn1y8r9osi > .fl-module-content {
	margin-top:10px;
	margin-bottom:100px;
}
@media ( max-width: 992px ) {
 .fl-node-h3wn1y8r9osi.fl-module > .fl-module-content {
	margin-bottom:50px;
}
}
@media ( max-width: 768px ) {
 .fl-node-h3wn1y8r9osi.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:30px;
	margin-left:0px;
}
}
 .fl-node-q3vfey90iojd.fl-module-html {
	margin-top:70px;
	margin-right:0px;
	margin-bottom:100px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-q3vfey90iojd.fl-module-html.fl-module {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:20px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-q3vfey90iojd.fl-module-html.fl-module {
	margin-top:50px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-node-7p61qxedtwiu, .fl-node-7p61qxedtwiu .fl-photo {
	text-align: center;
}
.fl-node-7p61qxedtwiu .fl-photo-content, .fl-node-7p61qxedtwiu .fl-photo-img {
	width: 120px;
}
@media(max-width: 992px) {
	.fl-node-7p61qxedtwiu .fl-photo-content, .fl-node-7p61qxedtwiu .fl-photo-img {
		width: 100px;
	}
}
@media(max-width: 768px) {
	.fl-node-7p61qxedtwiu .fl-photo-content, .fl-node-7p61qxedtwiu .fl-photo-img {
		width: 90px;
	}
}
 .fl-node-7p61qxedtwiu.fl-module-photo {
	margin-bottom:10px;
}
.fl-builder-content .fl-node-4q97lwcim1zy.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-4q97lwcim1zy.fl-module-rich-text.fl-rich-text * {
	color: #fd779b;
}
.fl-builder-content .fl-node-4q97lwcim1zy.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-4q97lwcim1zy.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 500;
	font-size: 45px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-4q97lwcim1zy.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-4q97lwcim1zy.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 40px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-4q97lwcim1zy.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-4q97lwcim1zy.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 35px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-4q97lwcim1zy.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-4q97lwcim1zy.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 28px;
		line-height: 1.4;
	}
}
 .fl-node-4q97lwcim1zy.fl-module-rich-text {
	margin-top:-20px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-4q97lwcim1zy.fl-module-rich-text.fl-module {
	margin-top:-20px;
	margin-bottom:5px;
}
}
.fl-builder-content .fl-node-be8vrs1canq7.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-be8vrs1canq7.fl-module-rich-text.fl-rich-text * {
	color: rgb(0, 0, 0);
}
.fl-builder-content .fl-node-be8vrs1canq7.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-be8vrs1canq7.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-be8vrs1canq7.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-be8vrs1canq7.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-be8vrs1canq7.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-be8vrs1canq7.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 18px;
	}
}
 .fl-node-be8vrs1canq7.fl-module-rich-text {
	margin-top:10px;
	margin-bottom:15px;
}
@media ( max-width: 992px ) {
 .fl-node-be8vrs1canq7.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-bottom:5px;
}
}
@media ( max-width: 768px ) {
 .fl-node-be8vrs1canq7.fl-module-rich-text.fl-module {
	margin-top:5px;
	margin-bottom:10px;
}
}
.fl-node-puo02jkd9nsg, .fl-node-puo02jkd9nsg .fl-photo {
	text-align: center;
}
.fl-node-puo02jkd9nsg .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-puo02jkd9nsg .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-puo02jkd9nsg.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-puo02jkd9nsg.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-puo02jkd9nsg.fl-module-photo.fl-module {
	margin-right:15px;
	margin-bottom:10px;
	margin-left:15px;
}
}

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

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

div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-qtxg4c5k6vbh .pp-heading-content {
				text-align: ;
			}
	div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-qtxg4c5k6vbh div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-qtxg4c5k6vbh div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-qtxg4c5k6vbh div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-qtxg4c5k6vbh div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-sub-heading, div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-qtxg4c5k6vbh .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-qtxg4c5k6vbh .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-sub-heading, div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-sub-heading, div.fl-node-qtxg4c5k6vbh .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-qtxg4c5k6vbh > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-qtxg4c5k6vbh.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-qtxg4c5k6vbh.fl-module > .fl-module-content {
	margin-top:0px;
}
}

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

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

div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-xiebhwvz6218 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-xiebhwvz6218 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-xiebhwvz6218 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-xiebhwvz6218 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-xiebhwvz6218 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-xiebhwvz6218 .pp-heading-content .pp-sub-heading, div.fl-node-xiebhwvz6218 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-xiebhwvz6218 .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-xiebhwvz6218 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-xiebhwvz6218 .pp-heading-content .pp-sub-heading, div.fl-node-xiebhwvz6218 .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
	}
}
@media(max-width: 768px) {
	div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-xiebhwvz6218 .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-xiebhwvz6218 .pp-heading-content .pp-sub-heading, div.fl-node-xiebhwvz6218 .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-xiebhwvz6218 > .fl-module-content {
	margin-top:5px;
}
@media ( max-width: 992px ) {
 .fl-node-xiebhwvz6218.fl-module > .fl-module-content {
	margin-right:10px;
	margin-bottom:0px;
	margin-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-xiebhwvz6218.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:15px;
	margin-left:15px;
}
}
.fl-node-vibfcn5erwhx, .fl-node-vibfcn5erwhx .fl-photo {
	text-align: center;
}
.fl-node-vibfcn5erwhx .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-vibfcn5erwhx .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-vibfcn5erwhx.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-vibfcn5erwhx.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-vibfcn5erwhx.fl-module-photo.fl-module {
	margin-right:15px;
	margin-bottom:10px;
	margin-left:15px;
}
}

div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading-prefix {
	}

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

div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


div.fl-node-5s6x1unolg2e .pp-heading-content .pp-sub-heading,
div.fl-node-5s6x1unolg2e .pp-heading-content .pp-sub-heading p {
		color: rgb(0, 0, 0);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5s6x1unolg2e .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-5s6x1unolg2e div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-5s6x1unolg2e div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-5s6x1unolg2e div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-5s6x1unolg2e div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-5s6x1unolg2e .pp-heading-content .pp-sub-heading, div.fl-node-5s6x1unolg2e .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-5s6x1unolg2e .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-5s6x1unolg2e .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-5s6x1unolg2e .pp-heading-content .pp-sub-heading, div.fl-node-5s6x1unolg2e .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-5s6x1unolg2e .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-5s6x1unolg2e .pp-heading-content .pp-sub-heading, div.fl-node-5s6x1unolg2e .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
	}
}
 .fl-node-5s6x1unolg2e > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-5s6x1unolg2e.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5s6x1unolg2e.fl-module > .fl-module-content {
	margin-top:0px;
}
}

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

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

div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-dm4w51kl9vrj .pp-heading-content {
				text-align: ;
			}
	div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-dm4w51kl9vrj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-dm4w51kl9vrj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-dm4w51kl9vrj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-dm4w51kl9vrj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-sub-heading, div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-dm4w51kl9vrj .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-dm4w51kl9vrj .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-sub-heading, div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
	}
}
@media(max-width: 768px) {
	div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-sub-heading, div.fl-node-dm4w51kl9vrj .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-dm4w51kl9vrj > .fl-module-content {
	margin-top:5px;
}
@media ( max-width: 992px ) {
 .fl-node-dm4w51kl9vrj.fl-module > .fl-module-content {
	margin-right:10px;
	margin-bottom:0px;
	margin-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-dm4w51kl9vrj.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:21px;
	margin-left:21px;
}
}
.fl-node-4pq0u526fnkg, .fl-node-4pq0u526fnkg .fl-photo {
	text-align: center;
}
.fl-node-4pq0u526fnkg .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-4pq0u526fnkg .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-4pq0u526fnkg.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-4pq0u526fnkg.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-4pq0u526fnkg.fl-module-photo.fl-module {
	margin-right:15px;
	margin-bottom:10px;
	margin-left:15px;
}
}

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

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

div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-g86zn9muqhix .pp-heading-content {
				text-align: ;
			}
	div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-g86zn9muqhix div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-g86zn9muqhix div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-g86zn9muqhix div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-g86zn9muqhix div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-g86zn9muqhix .pp-heading-content .pp-sub-heading, div.fl-node-g86zn9muqhix .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-g86zn9muqhix .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-g86zn9muqhix .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-g86zn9muqhix .pp-heading-content .pp-sub-heading, div.fl-node-g86zn9muqhix .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-g86zn9muqhix .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-g86zn9muqhix .pp-heading-content .pp-sub-heading, div.fl-node-g86zn9muqhix .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
	}
}
 .fl-node-g86zn9muqhix > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-g86zn9muqhix.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:10px;
	margin-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-g86zn9muqhix.fl-module > .fl-module-content {
	margin-top:0px;
}
}

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

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

div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-brqyc6p4lakh .pp-heading-content {
				text-align: ;
			}
	div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-brqyc6p4lakh div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-brqyc6p4lakh div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-brqyc6p4lakh div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-brqyc6p4lakh div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-brqyc6p4lakh .pp-heading-content .pp-sub-heading, div.fl-node-brqyc6p4lakh .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-brqyc6p4lakh .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-brqyc6p4lakh .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-brqyc6p4lakh .pp-heading-content .pp-sub-heading, div.fl-node-brqyc6p4lakh .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
	}
}
@media(max-width: 768px) {
	div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-brqyc6p4lakh .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-brqyc6p4lakh .pp-heading-content .pp-sub-heading, div.fl-node-brqyc6p4lakh .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-brqyc6p4lakh > .fl-module-content {
	margin-top:5px;
}
@media ( max-width: 992px ) {
 .fl-node-brqyc6p4lakh.fl-module > .fl-module-content {
	margin-right:10px;
	margin-bottom:0px;
	margin-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-brqyc6p4lakh.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:18px;
	margin-left:18px;
}
}
.fl-node-w3bnyq0a78rt, .fl-node-w3bnyq0a78rt .fl-photo {
	text-align: center;
}
.fl-node-w3bnyq0a78rt .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-node-w3bnyq0a78rt .fl-photo-img {
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		border-bottom-left-radius: 10px;
		border-bottom-right-radius: 10px;
	}
}
 .fl-node-w3bnyq0a78rt.fl-module-photo {
	margin-top:10px;
	margin-right:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-w3bnyq0a78rt.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-w3bnyq0a78rt.fl-module-photo.fl-module {
	margin-right:15px;
	margin-bottom:10px;
	margin-left:15px;
}
}

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

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

div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-j4cub5xe6tin .pp-heading-content {
				text-align: ;
			}
	div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
}
div.fl-node-j4cub5xe6tin div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-j4cub5xe6tin div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-j4cub5xe6tin div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-j4cub5xe6tin div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-j4cub5xe6tin .pp-heading-content .pp-sub-heading, div.fl-node-j4cub5xe6tin .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 500;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-j4cub5xe6tin .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-j4cub5xe6tin .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
		text-align: center;
	}
	div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
	div.fl-node-j4cub5xe6tin .pp-heading-content .pp-sub-heading, div.fl-node-j4cub5xe6tin .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-j4cub5xe6tin .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-j4cub5xe6tin .pp-heading-content .pp-sub-heading, div.fl-node-j4cub5xe6tin .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
	}
}
 .fl-node-j4cub5xe6tin > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-j4cub5xe6tin.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-j4cub5xe6tin.fl-module > .fl-module-content {
	margin-top:0px;
}
}

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

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

div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fd779b;
								}
div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-i0kpz493ms1x .pp-heading-content {
				text-align: ;
			}
	div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading .heading-title {
	font-family: "Noto Sans", sans-serif;
	font-weight: 600;
	font-size: 25px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-i0kpz493ms1x div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-i0kpz493ms1x div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-i0kpz493ms1x div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-i0kpz493ms1x div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-i0kpz493ms1x .pp-heading-content .pp-sub-heading, div.fl-node-i0kpz493ms1x .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.8px;
	text-align: center;
}
div.fl-node-i0kpz493ms1x .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-i0kpz493ms1x .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 22px;
	}
	div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
	div.fl-node-i0kpz493ms1x .pp-heading-content .pp-sub-heading, div.fl-node-i0kpz493ms1x .pp-heading-content .pp-sub-heading p {
		font-size: 15px;
	}
}
@media(max-width: 768px) {
	div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 16px;
	}
	div.fl-node-i0kpz493ms1x .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
	div.fl-node-i0kpz493ms1x .pp-heading-content .pp-sub-heading, div.fl-node-i0kpz493ms1x .pp-heading-content .pp-sub-heading p {
		font-size: 14px;
	}
}
 .fl-node-i0kpz493ms1x > .fl-module-content {
	margin-top:5px;
}
@media ( max-width: 992px ) {
 .fl-node-i0kpz493ms1x.fl-module > .fl-module-content {
	margin-right:10px;
	margin-bottom:0px;
	margin-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-i0kpz493ms1x.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:18px;
	margin-left:18px;
}
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
/* ================================
   Responsive Line Break Utility
   하룹코어 공통 스니펫
================================ */

/* 1. PC에서는 보이고, 모바일(992px 이하)에서 숨김 */
.pc-only-break {
  display: block !important;
}
@media screen and (max-width: 992px) {
  .pc-only-break {
    display: none !important;
  }
}

/* 2. PC에서는 숨기고, 모바일(768px 이하)에서만 줄바꿈 */
.mobile-only-break {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .mobile-only-break {
    display: block !important;
  }
}

/* 3. 기본 줄바꿈, 1200px 이하에서는 붙이기 */
.join-under-1200 {
  display: block !important;
}
@media screen and (max-width: 1200px) {
  .join-under-1200 {
    display: none !important;
  }
}

/* 4. 기본 붙임, 1200px 이하에서 줄바꿈 */
.break-under-1200 {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  .break-under-1200 {
    display: block !important;
  }
}

/* 5. 기본 줄바꿈, 992px 이하에서는 붙이기 */
.join-under-992 {
  display: block !important;
}
@media screen and (max-width: 992px) {
  .join-under-992 {
    display: none !important;
  }
}

/* 6. 기본 붙임, 992px 이하에서 줄바꿈 */
.break-under-992 {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .break-under-992 {
    display: block !important;
  }
}

/* =========================
   기본 라인 / 공통 요소 berry 버전
   ========================= */

.berry_row2_plus {
  position: relative;
  z-index: 1;
}

.berry_row2_top {
  position: relative;
  z-index: 2;
}

.berry_row2_plus::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #e5e5e5 0%, #fd779b 50%, #e5e5e5 100%);
  pointer-events: none;
}

.berry_row2 .fl-col-content {
  position: relative !important;
}

.berry_row2 .fl-col-content::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 2px !important;
  height: 100% !important;
  background: linear-gradient(180deg, #fd779b 0%, #e5e5e5 100%) !important;
  display: block !important;
  pointer-events: none !important;
}

@media (max-width: 768px) {
  .berry_row2_plus::before,
  .berry_row2 .fl-col-content::after {
    display: none !important;
  }
}

.berry_mobile-line-wrap-pink {
  position: relative;
  text-align: center;
}

.berry_mobile-line-wrap-pink .fl-module-content {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: 6px 35px 4px;
  border-radius: 999px;
  background-color: #fd779b;
  color: #fff;
  font-weight: 600;
  font-family: 'SUIT', sans-serif;
  line-height: 1.2;
}

.berry_mobile-line-wrap-pink .fl-module-content p {
  margin: 0;
  color: inherit;
  font: inherit;
}

@media (max-width: 768px) {
  .berry_mobile-line-wrap-pink::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #fd779b;
    transform: translateY(-50%);
    z-index: 0;
  }
}

.berry_hover-pink .pp-heading *,
.berry_hover-pink .pp-sub-heading p {
  transition: color 0.3s ease;
}

.berry_hover-pink:hover .pp-heading *,
.berry_hover-pink:hover .pp-sub-heading p {
  color: #fd779b !important;
}

/* =========================
   BERRY 4 섹션
   ========================= */

.berry4_section .fl-row-content-wrap {
  padding: 0 !important;
}

.berry4_section > .fl-row-content-wrap > .fl-row-content > .fl-col-group {
  align-items: flex-start !important;
  height: auto !important;
}

.berry4_section,
.berry4_section .fl-row-content-wrap {
  height: auto !important;
  min-height: 0 !important;
}

.berry4_section {
  position: relative !important;
  z-index: 0 !important;
  isolation: isolate !important;
}

#berry4_left_fixed {
  position: sticky !important;
  top: 0 !important;
  height: 100vh !important;
  overflow: hidden !important;
  align-self: flex-start !important;
  z-index: 1;
}

.berry4-list {
  display: block;
  width: 100%;
}

.berry4-item {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 150px;
}

.berry4-item:last-child {
  margin-bottom: 0;
}

.berry4-img {
  flex: 0 0 auto;
  width: 400px;
}

.berry4-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
}

.berry4-text {
  flex: 1;
}

.berry4-title {
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
}

.berry4-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 20%;
  background-color: #fd779b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
  flex-shrink: 0;
}

.berry4-en {
  font-size: 16px;
  font-weight: 500;
  color: #fd779b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.berry4-sub {
  font-size: 24px;
  font-weight: 600;
  color: #25262c;
  letter-spacing: -0.6px;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.berry4-desc {
  font-size: 20px;
  color: #25262c;
  font-weight: 300;
  letter-spacing: -0.6px;
  line-height: 1.5;
  margin: 0;
}

/* 기존 disease 구조 안 쓰지만, 남겨둠 */
.berry4-disease {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.berry4-line {
  width: 100%;
  height: 1px;
  background-color: #ddd;
}

.berry4-label {
  font-size: 18px;
  font-weight: 600;
  color: #fd779b;
  padding: 2px 0;
}

.berry4-disease-text {
  font-size: 19px;
  color: #25262c;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  padding: 2px 0;
}

/* ===== 1200px 이하 ===== */
@media (max-width: 1200px) {
  .berry4-img {
    width: 300px;
  }

  .berry4-item {
    gap: 22px;
  }

  .berry4-en {
    font-size: 15px;
  }

  .berry4-sub {
    font-size: 21px;
  }

  .berry4-desc {
    font-size: 17px;
  }

  .berry4-label,
  .berry4-disease-text {
    font-size: 15px;
  }
}

/* ===== 992px 이하 섹션 숨김 ===== */
@media (max-width: 992px) {
  .berry4_section {
    display: none !important;
  }

  .berry4-en {
    font-size: 15px !important;
  }

  .berry4-sub {
    font-size: 21px !important;
  }

  .berry4-desc,
  .berry4-disease-text,
  .berry4-label {
    font-size: 17px !important;
  }
}

/* ===== 768px 이하 ===== */
@media (max-width: 768px) {
  .berry4-item {
    flex-direction: column;
  }

  .berry4-img,
  .berry4-text {
    width: 100%;
  }

  .berry4-en {
    font-size: 14px !important;
  }

  .berry4-sub {
    font-size: 21px !important;
  }

  .berry4-desc,
  .berry4-disease-text,
  .berry4-label {
    font-size: 16.5px !important;
  }
}
/* End Layout CSS */

.fl-node-h70xynuagqot .pp-tabs, .fl-node-h70xynuagqot .pp-tabs * {
  box-sizing: border-box;
}
.fl-node-h70xynuagqot .pp-tabs {
  overflow-x: hidden;
}
.fl-node-h70xynuagqot .pp-tabs-panel, .fl-node-h70xynuagqot .pp-tabs-panels, .fl-node-h70xynuagqot .pp-tabs-content, .fl-node-h70xynuagqot .pp-tabs-content-wrapper {
  overflow-x: hidden !important;
  max-width: 100%;
}
.fl-node-h70xynuagqot .pp-tabs img, .fl-node-h70xynuagqot .pp-tabs video, .fl-node-h70xynuagqot .pp-tabs iframe {
  max-width: 100%;
  height: auto;
  display: block;
}
@charset "UTF-8";
.fl-node-2j3d8hrqa7lc {
  /* 탭 버튼 간격 + 둥근 형태 */
  /* 모바일 (540px 이하) */
  /* 첫 번째 탭 여백 제거 */
  /* 포커스/클릭 outline 제거 */
}
.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label {
  margin-left: 10px;
  border-radius: 15px;
}
@media (max-width: 540px) {
  .fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label {
    border-radius: 0;
  }
}
.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label:first-child {
  margin-left: 0;
}
.fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label, .fl-node-2j3d8hrqa7lc .pp-tabs .pp-tabs-label * {
  outline: none !important;
  box-shadow: none !important;
}
@charset "UTF-8";
.fl-node-q3vfey90iojd {
  /* 모바일에서만 원형 그룹 중앙 고정 */
}
.fl-node-q3vfey90iojd .hci-mobile-item-1 {
  transform: translateX(20px);
}
.fl-node-q3vfey90iojd .hci-mobile-item-2 {
  transform: translateX(10px);
}
.fl-node-q3vfey90iojd .hci-mobile-item-3 {
  transform: translateX(-10px);
}
.fl-node-q3vfey90iojd .hci-mobile-item-4 {
  transform: translateX(-20px);
}
@media (max-width: 768px) {
  .fl-node-q3vfey90iojd .hci-mobile-center {
    display: none !important;
  }
  .fl-node-q3vfey90iojd .hci-content {
    display: grid !important;
    grid-template-columns: 120px 120px;
    justify-content: center;
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-item {
    width: 140px !important;
    margin: 0 !important;
  }
  .fl-node-q3vfey90iojd .hci-mobile-item-1 {
    transform: translate(15px, 0) !important;
  }
  .fl-node-q3vfey90iojd .hci-mobile-item-2 {
    transform: translate(-15px, 0px) !important;
  }
  .fl-node-q3vfey90iojd .hci-mobile-item-3 {
    transform: translate(15px, -23px) !important;
  }
  .fl-node-q3vfey90iojd .hci-mobile-item-4 {
    transform: translate(-15px, -23px) !important;
  }
}
@media (max-width: 768px) {
  .fl-node-q3vfey90iojd .haroop-circle-info {
    overflow: visible;
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-wrap {
    min-height: auto;
    padding: 24px 0 24px;
    overflow: visible;
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-content-wrap {
    padding: 0 10px;
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "item1 item2" "center center" "item3 item4";
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    row-gap: calc(var(--hci-mobile-gap) * -0.35);
    column-gap: calc(var(--hci-mobile-gap) * -0.2);
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-item {
    width: var(--hci-mobile-size);
    margin: 0;
  }
  .fl-node-q3vfey90iojd .hci-mobile-item-1 {
    grid-area: item1;
  }
  .fl-node-q3vfey90iojd .hci-mobile-item-2 {
    grid-area: item2;
  }
  .fl-node-q3vfey90iojd .hci-mobile-center {
    grid-area: center;
  }
  .fl-node-q3vfey90iojd .hci-mobile-item-3 {
    grid-area: item3;
  }
  .fl-node-q3vfey90iojd .hci-mobile-item-4 {
    grid-area: item4;
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-label {
    font-size: var(--hci-mobile-label-font-size);
    font-weight: var(--hci-mobile-label-font-weight);
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-text {
    font-size: var(--hci-mobile-text-font-size);
    font-weight: var(--hci-mobile-text-font-weight);
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-content-wrap {
    padding: 0 16px;
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-content {
    width: 100%;
    max-width: 760px;
    justify-content: center;
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-item {
    width: 190px;
    margin: 0 -18px;
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-label {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-text {
    font-size: 15px;
    max-width: 100px;
    line-height: 1.35;
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-center-text {
    font-size: 15px;
    max-width: 100px;
    line-height: 1.35;
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-item:first-child::before {
    right: calc(100% - 8px);
  }
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-item:last-child::after {
    left: calc(100% - 8px);
  }
}
@media (max-width: 768px) {
  .fl-node-q3vfey90iojd .haroop-circle-info .hci-content {
    width: 240px !important;
    max-width: 240px !important;
    min-width: 240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-template-columns: 155px 155px !important;
    justify-content: center !important;
  }
}

        
        
        			.fl-node-bntx368ckusz .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-gaqhu5pbk6zo .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-h70xynuagqot .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-ogzq6wu4rnsb .fl-row-content {
				min-width: 0px;
			}
		