/* 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:before,
.fl-module: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:after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* 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;
}

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

.fl-visible-large,
.fl-visible-medium,
.fl-visible-mobile,
.fl-col-group-equal-height .fl-col.fl-visible-large,
.fl-col-group-equal-height .fl-col.fl-visible-medium,
.fl-col-group-equal-height .fl-col.fl-visible-mobile {
	display: none;
}
.fl-visible-desktop {
	display: block;
}
.fl-col-group-equal-height .fl-col.fl-visible-desktop {
    display: flex;
}

/* 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%;
  	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
}
.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%;
}

/* IE 11 - Row full height - vertical alignment center/bottom fix */
.fl-builder-ie-11 .fl-row.fl-row-full-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile),
.fl-builder-ie-11 .fl-row.fl-row-custom-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile) {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Stupid IE Full Height Row Fixes */
.fl-builder-ie-11 .fl-row-full-height .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content-wrap {
	height: auto;
}

.fl-builder-ie-11 .fl-row-full-height .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content {
	flex: 0 0 auto;
	flex-basis: 100%;
	margin: 0;
}

.fl-builder-ie-11 .fl-row-full-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content {
    margin: 0 auto;
}

.fl-builder-ie-11 .fl-row-full-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height),
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height) {
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

/* 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 {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: 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 {
	align-items: flex-end;
	justify-content: flex-end;
	-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;
}

/* IE 11 - height bottom > row align bottom - center fix */
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}

/* 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 {
	align-items: center;
	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-module,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* IE11 fix for images with height:auto in equal height columns. */
.fl-builder-ie-11 .fl-col-group-equal-height,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-col,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-col-content,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-module,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	min-height: 1px;
}

/* 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;
}

/* Modules
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}

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

.fl-builder-module-template {
	margin: 0 auto;
	max-width: 1100px;
	padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1! important;
    -ms-filter: "alpha(opacity=100)";
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
    margin-left: -10px;
}

/* 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;
	}
}
.fl-row-fixed-width { max-width: 1100px; }.fl-row-content-wrap{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.fl-row-content-wrap{padding-top: 20px;padding-right: 20px;padding-bottom: 20px;padding-left: 20px;}.fl-module-content{margin-top: 20px;margin-right: 20px;margin-bottom: 20px;margin-left: 20px;}@media (max-width: 1200px) { /* Responsive Utilities
------------------------------------------------------ */
.fl-visible-desktop,
.fl-visible-medium,
.fl-visible-mobile,
.fl-col-group-equal-height .fl-col.fl-visible-desktop,
.fl-col-group-equal-height .fl-col.fl-visible-medium,
.fl-col-group-equal-height .fl-col.fl-visible-mobile {
	display: none;
}
.fl-visible-large {
	display: block;
}
.fl-col-group-equal-height .fl-col.fl-visible-large {
    display: flex;
} }@media (max-width: 992px) { /* Responsive Utilities
------------------------------------------------------ */
.fl-visible-desktop,
.fl-visible-large,
.fl-visible-mobile,
.fl-col-group-equal-height .fl-col.fl-visible-desktop,
.fl-col-group-equal-height .fl-col.fl-visible-large,
.fl-col-group-equal-height .fl-col.fl-visible-mobile {
	display: none;
}
.fl-visible-medium {
	display: block;
}
.fl-col-group-equal-height .fl-col.fl-visible-medium {
    display: flex;
}

/* 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) { /* Responsive Utilities
------------------------------------------------------ */
.fl-visible-desktop,
.fl-visible-large,
.fl-visible-medium,
.fl-col-group-equal-height .fl-col.fl-visible-desktop,
.fl-col-group-equal-height .fl-col.fl-visible-large,
.fl-col-group-equal-height .fl-col.fl-visible-medium {
	display: none;
}
.fl-visible-mobile {
	display: block;
}
.fl-col-group-equal-height .fl-col.fl-visible-mobile {
    display: flex;
}

/* 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;
}
 }.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





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

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

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-4l5c23mq7ayg.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-4l5c23mq7ayg.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 (device-aspect-ratio: 40/71) {
	.fl-node-4l5c23mq7ayg.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-4l5c23mq7ayg > .fl-row-content-wrap {
	background-color: rgb(8, 37, 84);
}
.fl-node-4l5c23mq7ayg.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 10px;
}
 .fl-node-4l5c23mq7ayg > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-4l5c23mq7ayg > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:20px;
}
@media ( max-width: 992px ) {
 .fl-node-4l5c23mq7ayg.fl-row > .fl-row-content-wrap {
	padding-right:15px;
}
}






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

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

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-7v5bx8y390r2.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-7v5bx8y390r2.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 (device-aspect-ratio: 40/71) {
	.fl-node-7v5bx8y390r2.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-7v5bx8y390r2 > .fl-row-content-wrap {
	background-image: url(https://performex.com/wp-content/uploads/2016/06/Frontline-Leader-Splash.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-7v5bx8y390r2.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 700px;
}
.fl-node-7v5bx8y390r2 .fl-row-content {
	max-width: 1102px;
}
@media(max-width: 992px) {
	.fl-node-7v5bx8y390r2.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 550px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-7v5bx8y390r2.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}






.fl-node-aq4ot3mevrui .fl-row-content {
	max-width: 1102px;
}
 .fl-node-aq4ot3mevrui > .fl-row-content-wrap {
	margin-top:60px;
}
@media ( max-width: 768px ) {
 .fl-node-aq4ot3mevrui.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}
}






 .fl-node-53hxuvoq1zgm > .fl-row-content-wrap {
	margin-top:-450px;
	margin-left:60px;
}
@media ( max-width: 992px ) {
 .fl-node-53hxuvoq1zgm.fl-row > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 992px ) {
 .fl-node-53hxuvoq1zgm.fl-row > .fl-row-content-wrap {
	padding-top:00px;
	padding-right:00px;
	padding-bottom:00px;
	padding-left:00px;
}
}






.fl-node-9f25vh610nd4 .fl-row-content {
	max-width: 1300px;
}
 .fl-node-9f25vh610nd4 > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:60px;
}






.fl-node-9zqw5dniy37c .fl-row-content {
	max-width: 1092px;
}
 .fl-node-9zqw5dniy37c > .fl-row-content-wrap {
	margin-right:0px;
	margin-bottom:60px;
	margin-left:0px;
}
 .fl-node-9zqw5dniy37c > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-9zqw5dniy37c.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}
}






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

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

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-fqlozy1053jr.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-fqlozy1053jr.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 (device-aspect-ratio: 40/71) {
	.fl-node-fqlozy1053jr.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-fqlozy1053jr > .fl-row-content-wrap {
	background-color: #282b30;
	background-image: url(https://performex.com/wp-content/uploads/2024/12/PERFORMEX-11.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-fqlozy1053jr.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 800px;
}
 .fl-node-fqlozy1053jr > .fl-row-content-wrap {
	margin-left:60px;
}
@media ( max-width: 992px ) {
 .fl-node-fqlozy1053jr.fl-row > .fl-row-content-wrap {
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-fqlozy1053jr.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}
}






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

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

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-8asciflqu6wp.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-8asciflqu6wp.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 (device-aspect-ratio: 40/71) {
	.fl-node-8asciflqu6wp.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-8asciflqu6wp > .fl-row-content-wrap {
	background-image: url(https://performex.com/wp-content/uploads/2016/06/Results-Meeting-with-Chart.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-8asciflqu6wp.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 400px;
}
 .fl-node-8asciflqu6wp > .fl-row-content-wrap {
	margin-top:40px;
	margin-right:60px;
}
@media ( max-width: 992px ) {
 .fl-node-8asciflqu6wp.fl-row > .fl-row-content-wrap {
	margin-right:0px;
}
}






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

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

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-mko0wejc8fl2.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-mko0wejc8fl2.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 (device-aspect-ratio: 40/71) {
	.fl-node-mko0wejc8fl2.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-mko0wejc8fl2 > .fl-row-content-wrap {
	background-image: linear-gradient(180deg, #edf2f5 90%, #ffffff 0%);
}
@media ( max-width: 768px ) {
 .fl-node-mko0wejc8fl2.fl-row > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-mko0wejc8fl2.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}






 .fl-node-xtkbsidq4zn1 > .fl-row-content-wrap {
	margin-top:60px;
	margin-bottom:10px;
}












.fl-node-6bxickevar9u > .fl-row-content-wrap {
	background-image: linear-gradient(90deg, rgb(20, 118, 80) 10%, rgb(32, 65, 126) 100%);
}
 .fl-node-6bxickevar9u > .fl-row-content-wrap {
	margin-top:15px;
}
@media ( max-width: 992px ) {
 .fl-node-6bxickevar9u.fl-row > .fl-row-content-wrap {
	margin-top:0px;
}
}
 .fl-node-6bxickevar9u > .fl-row-content-wrap {
	padding-top:51px;
	padding-bottom:75px;
}




.fl-node-2rxwfad6tou0 {
	width: 50%;
}
.fl-builder-content .fl-node-2rxwfad6tou0 > .fl-col-content {
	min-height: 0px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-2rxwfad6tou0 {
		width: 75% !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-node-2rxwfad6tou0.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 992px ) {
 .fl-node-2rxwfad6tou0.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




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




.fl-node-a1v6t9xp05w7 {
	width: 49%;
}




.fl-node-6p03swyzfjxm {
	width: 100%;
}




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




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




.fl-node-7j5fv8oc943e {
	width: 100%;
}
.fl-node-7j5fv8oc943e > .fl-col-content {
	background-color: #ffffff;
}
 .fl-node-7j5fv8oc943e > .fl-col-content {
	margin-right:60px;
}




.fl-node-uhkif8dcx1lj {
	width: 25%;
}
.fl-node-uhkif8dcx1lj > .fl-col-content {
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(221,221,221,0.5);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-uhkif8dcx1lj {
		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-uhkif8dcx1lj {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-uhkif8dcx1lj > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-uhkif8dcx1lj > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-60ozmquh3vkp {
	width: 25%;
}
.fl-node-60ozmquh3vkp > .fl-col-content {
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(221,221,221,0.5);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-60ozmquh3vkp {
		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-60ozmquh3vkp {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-60ozmquh3vkp > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-60ozmquh3vkp > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-qwuv7ez4acl5 {
	width: 25%;
}
.fl-node-qwuv7ez4acl5 > .fl-col-content {
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(221,221,221,0.5);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-qwuv7ez4acl5 {
		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-qwuv7ez4acl5 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-qwuv7ez4acl5 > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-qwuv7ez4acl5 > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-6dyte5b98i23 {
	width: 25%;
}
.fl-node-6dyte5b98i23 > .fl-col-content {
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(221,221,221,0.5);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-6dyte5b98i23 {
		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-6dyte5b98i23 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-6dyte5b98i23 > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-6dyte5b98i23 > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-zn2shjy13ke9 {
	width: 100%;
}
.fl-node-zn2shjy13ke9 > .fl-col-content {
	background-color: #0d5aa4;
}
 .fl-node-zn2shjy13ke9 > .fl-col-content {
	margin-top:-300px;
	margin-left:60px;
}
@media ( max-width: 768px ) {
 .fl-node-zn2shjy13ke9.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
 .fl-node-zn2shjy13ke9 > .fl-col-content {
	padding-top:300px;
}
@media ( max-width: 768px ) {
 .fl-node-zn2shjy13ke9.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-nug8tks5verl {
	width: 19%;
}
 .fl-node-nug8tks5verl > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}




.fl-node-9lpmgie2b0jd {
	width: 46%;
}
 .fl-node-9lpmgie2b0jd > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}




.fl-node-qxcna193r4te {
	width: 33.33%;
}
 .fl-node-qxcna193r4te > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}




.fl-node-hto43ce1jqm9 {
	width: 50%;
}
 .fl-node-hto43ce1jqm9 > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-hto43ce1jqm9.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
 .fl-node-hto43ce1jqm9 > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-hto43ce1jqm9.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




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




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




.fl-node-kacjsnm6z8o1 {
	width: 33.33%;
}
.fl-node-kacjsnm6z8o1 > .fl-col-content {
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	box-shadow: 0px 0px 30px 0px rgba(28,208,172,0.3);
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-kacjsnm6z8o1 {
		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-kacjsnm6z8o1 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-kacjsnm6z8o1 > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-kacjsnm6z8o1.fl-col > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
}
 .fl-node-kacjsnm6z8o1 > .fl-col-content {
	padding-top:15px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:25px;
}




.fl-node-epht5of926jk {
	width: 33.33%;
}
.fl-node-epht5of926jk > .fl-col-content {
	background-color: #1cd0ac;
	background-image: url(https://performex.com/wp-content/uploads/2025/06/PERFORMEX-gradient-background-CLEANED.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	box-shadow: 0px 0px 30px 0px rgba(28,208,172,0.3);
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-epht5of926jk {
		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-epht5of926jk {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-epht5of926jk > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-epht5of926jk.fl-col > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
}
 .fl-node-epht5of926jk > .fl-col-content {
	padding-top:15px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:25px;
}




.fl-node-y1szm2kwioat {
	width: 33.33%;
}
.fl-node-y1szm2kwioat > .fl-col-content {
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	box-shadow: 0px 0px 30px 0px rgba(28,208,172,0.3);
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-y1szm2kwioat {
		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-y1szm2kwioat {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-y1szm2kwioat > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-y1szm2kwioat.fl-col > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
}
 .fl-node-y1szm2kwioat > .fl-col-content {
	padding-top:15px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:25px;
}




.fl-node-tshjp8wlumya {
	width: 33.33%;
}
.fl-node-tshjp8wlumya > .fl-col-content {
	background-image: url(https://performex.com/wp-content/uploads/2025/06/PERFORMEX-gradient-background-CLEANED.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	box-shadow: 0px 0px 30px 0px rgba(28,208,172,0.3);
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-tshjp8wlumya {
		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-tshjp8wlumya {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-tshjp8wlumya > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-tshjp8wlumya.fl-col > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
}
 .fl-node-tshjp8wlumya > .fl-col-content {
	padding-top:15px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:25px;
}




.fl-node-ezcufw1jlriv {
	width: 33.33%;
}
.fl-node-ezcufw1jlriv > .fl-col-content {
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	box-shadow: 0px 0px 30px 0px rgba(28,208,172,0.3);
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-ezcufw1jlriv {
		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-ezcufw1jlriv {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-ezcufw1jlriv > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-ezcufw1jlriv.fl-col > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
}
 .fl-node-ezcufw1jlriv > .fl-col-content {
	padding-top:15px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:25px;
}




.fl-node-8bfc69ixrlqp {
	width: 33.33%;
}
.fl-node-8bfc69ixrlqp > .fl-col-content {
	background-color: #1cd0ac;
	background-image: url(https://performex.com/wp-content/uploads/2025/06/PERFORMEX-gradient-background-CLEANED.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	box-shadow: 0px 0px 30px 0px rgba(28,208,172,0.3);
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-8bfc69ixrlqp {
		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-8bfc69ixrlqp {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-8bfc69ixrlqp > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-8bfc69ixrlqp.fl-col > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
}
 .fl-node-8bfc69ixrlqp > .fl-col-content {
	padding-top:15px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:25px;
}




.fl-node-7pgbzfsqchnx {
	width: 100%;
}




.fl-node-ioum479fe5p1 {
	width: 15%;
}




.fl-node-jwmcz3k29vlr {
	width: 85%;
}




.fl-node-gjuoak29iyc0 {
	width: 15%;
}




.fl-node-zvjcdxh82ytu {
	width: 84%;
}




.fl-node-t1hysdi6nvq4 {
	width: 15%;
}




.fl-node-xqjmc4k32rno {
	width: 85%;
}
 .fl-node-xqjmc4k32rno > .fl-col-content {
	margin-bottom:0px;
}
 .fl-node-xqjmc4k32rno > .fl-col-content {
	padding-bottom:0px;
}




.fl-node-42ucqs3exna0 {
	width: 15%;
}




.fl-node-bz8sogi4rhjm {
	width: 85%;
}




.fl-node-3yvj64engdmt {
	width: 15%;
}




.fl-node-lv8epzu609gr {
	width: 85%;
}




.fl-node-2nexvl6rhbyw {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-2nexvl6rhbyw {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-2nexvl6rhbyw > .fl-col-content {
	margin-top:60px;
	margin-right:60px;
	margin-bottom:60px;
	margin-left:60px;
}
 .fl-node-2nexvl6rhbyw > .fl-col-content {
	padding-bottom:400px;
}
@media ( max-width: 992px ) {
 .fl-node-2nexvl6rhbyw.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




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




.fl-node-m4x61be5aivl {
	width: 79%;
}
 .fl-node-m4x61be5aivl > .fl-col-content {
	margin-top:60px;
	margin-right:60px;
	margin-bottom:160px;
	margin-left:40px;
}




.fl-node-0pge2uj8tdya {
	width: 20%;
}




.fl-node-hk5wu3lvqoar {
	width: 100%;
}
.fl-node-hk5wu3lvqoar > .fl-col-content {
	background-color: #282b30;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-hk5wu3lvqoar {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-hk5wu3lvqoar > .fl-col-content {
	margin-top:-150px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-hk5wu3lvqoar.fl-col > .fl-col-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}
 .fl-node-hk5wu3lvqoar > .fl-col-content {
	padding-top:65px;
	padding-right:65px;
	padding-bottom:65px;
	padding-left:65px;
}
@media ( max-width: 992px ) {
 .fl-node-hk5wu3lvqoar.fl-col > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-hk5wu3lvqoar.fl-col > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}
}




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




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




.fl-node-p2vioywf87b6 {
	width: 33.333%;
}




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




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




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




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




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




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




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




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




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




.fl-node-8n60bqspglch {
	width: 30%;
}




.fl-node-mqdi6a4sfuc0 {
	width: 100%;
}
.fl-node-mqdi6a4sfuc0 > .fl-col-content {
	background-color: rgba(0,50,66,0.43);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-mqdi6a4sfuc0 {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-mqdi6a4sfuc0 > .fl-col-content {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:5px;
	margin-left:5px;
}
@media ( max-width: 768px ) {
 .fl-node-mqdi6a4sfuc0.fl-col > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
}




.fl-node-5jztx2lug61h {
	width: 100%;
}
.fl-node-5jztx2lug61h > .fl-col-content {
	background-color: rgba(0,50,66,0.43);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-5jztx2lug61h {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-5jztx2lug61h > .fl-col-content {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:5px;
	margin-left:5px;
}
@media ( max-width: 768px ) {
 .fl-node-5jztx2lug61h.fl-col > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
.fl-builder-content .fl-node-pzkyrxeaof5h .fl-rich-text, .fl-builder-content .fl-node-pzkyrxeaof5h .fl-rich-text *:not(b, strong) {
	text-align: left;
}
 .fl-node-pzkyrxeaof5h > .fl-module-content {
	margin-top:0px;
	margin-bottom:-20px;
}
@media (max-width: 768px) { .fl-node-pzkyrxeaof5h > .fl-module-content { margin-bottom:20px; } }.fl-icon-group .fl-icon {
	display: inline-block;
	margin-bottom: 10px;
	margin-top: 10px;
}
.fl-node-sxlgn954p6fw .fl-icon i,
.fl-node-sxlgn954p6fw .fl-icon i:before {
	color: #ffffff;
}



.fl-node-sxlgn954p6fw .fl-icon i:hover,
.fl-node-sxlgn954p6fw .fl-icon i:hover:before,
.fl-node-sxlgn954p6fw .fl-icon a:hover i,
.fl-node-sxlgn954p6fw .fl-icon a:hover i:before {
	color: rgb(6, 83, 116);
}

.fl-node-sxlgn954p6fw .fl-icon i, .fl-node-sxlgn954p6fw .fl-icon i:before {
	font-size: 22px;
}
.fl-node-sxlgn954p6fw .fl-icon-wrap .fl-icon-text {
	height: 38.5px;
}
@media(max-width: 1200px) {
	.fl-node-sxlgn954p6fw .fl-icon-wrap .fl-icon-text {
		height: 38.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-sxlgn954p6fw .fl-icon-wrap .fl-icon-text {
		height: 38.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-sxlgn954p6fw .fl-icon-wrap .fl-icon-text {
		height: 38.5px;
	}
}
				
	
	
.fl-node-sxlgn954p6fw .fl-icon-group {
	text-align: right;
}
.fl-node-sxlgn954p6fw .fl-icon + .fl-icon {
	margin-left: 25px;
}
 .fl-node-sxlgn954p6fw > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-0filu17mcz3b h2.fl-heading a,
.fl-row .fl-col .fl-node-0filu17mcz3b h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-0filu17mcz3b h2.fl-heading .fl-heading-text *,
.fl-node-0filu17mcz3b h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-0filu17mcz3b.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 46px;
	text-transform: capitalize;
}
@media(max-width: 992px) {
	.fl-node-0filu17mcz3b.fl-module-heading .fl-heading {
		text-align: center;
	}
}
	.fl-builder-content .fl-node-zexb2gjorl6q .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-zexb2gjorl6q .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-zexb2gjorl6q .fl-rich-text, .fl-builder-content .fl-node-zexb2gjorl6q .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-zexb2gjorl6q .fl-rich-text, .fl-builder-content .fl-node-zexb2gjorl6q .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}

.fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button,
.fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button:hover,
.fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button:visited {
		background: #39b4e7;
	}

.fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button:hover {
	background-color: #0d5aa4;
}

.fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button,
.fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button:visited,
.fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button *,
.fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button:visited * {
	color: #ffffff;
}












.fl-node-ugqtrdkx1emh .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-ugqtrdkx1emh .fl-button-wrap a.fl-button {
	padding-top: 25px;
	padding-right: 40px;
	padding-bottom: 25px;
	padding-left: 40px;
}
.fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button, .fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button:visited {
	font-weight: 500;
	font-size: 17px;
	border: 1px solid #2da8db;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #39b4e7;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
.fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button:hover, .fl-builder-content .fl-node-ugqtrdkx1emh a.fl-button:focus {
	border: 1px solid #014e98;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0d5aa4;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 992px) {
	.fl-node-ugqtrdkx1emh .fl-button-wrap {
		text-align: center;
	}
}
.fl-node-krpoguvz6jtd.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	font-variant: normal;
}
@media(max-width: 992px) {
	.fl-node-krpoguvz6jtd.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-krpoguvz6jtd > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-1xpulvnz6g74 .fl-separator {
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #282b30;
	max-width: 75%;
	margin: 0 0 0 0;
}

			@media (max-width: 992px) {
		.fl-node-1xpulvnz6g74 .fl-separator {
										max-width: 33%;
										margin: auto;
					}
	}
		 .fl-node-1xpulvnz6g74 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-5zvxwej4ocid.fl-module-heading .fl-heading {
	font-weight: 400;
	font-size: 37px;
}
@media(max-width: 992px) {
	.fl-node-5zvxwej4ocid.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-5zvxwej4ocid > .fl-module-content {
	margin-top:10px;
}
img.mfp-img {
    padding-bottom: 40px !important;
}
@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-iwlb7fgvc85k .fl-photo {
	text-align: center;
}
.fl-node-3nxq7sulabmj .fl-photo {
	text-align: left;
}
.fl-node-3nxq7sulabmj .fl-photo-content, .fl-node-3nxq7sulabmj .fl-photo-img {
	width: 75px;
}
@media(max-width: 992px) {
	.fl-node-3nxq7sulabmj .fl-photo {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-3nxq7sulabmj .fl-photo-content, .fl-node-3nxq7sulabmj .fl-photo-img {
		width: 75px;
	}
}
 .fl-node-3nxq7sulabmj > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-k1febw6vz0c5.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 22px;
}
@media(max-width: 992px) {
	.fl-node-k1febw6vz0c5.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-k1febw6vz0c5 > .fl-module-content {
	margin-bottom:10px;
}
.fl-builder-content .fl-node-hcqosilnz0b2 .fl-rich-text, .fl-builder-content .fl-node-hcqosilnz0b2 .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-hcqosilnz0b2 .fl-rich-text, .fl-builder-content .fl-node-hcqosilnz0b2 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-hcqosilnz0b2 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-y3moj5cwkf2d .fl-photo {
	text-align: left;
}
.fl-node-y3moj5cwkf2d .fl-photo-content, .fl-node-y3moj5cwkf2d .fl-photo-img {
	width: 75px;
}
@media(max-width: 992px) {
	.fl-node-y3moj5cwkf2d .fl-photo {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-y3moj5cwkf2d .fl-photo-content, .fl-node-y3moj5cwkf2d .fl-photo-img {
		width: 75px;
	}
}
 .fl-node-y3moj5cwkf2d > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-c90o2v5mbkfi.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 22px;
}
@media(max-width: 992px) {
	.fl-node-c90o2v5mbkfi.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-c90o2v5mbkfi > .fl-module-content {
	margin-bottom:10px;
}
.fl-builder-content .fl-node-6xs2ynjd0ko3 .fl-rich-text, .fl-builder-content .fl-node-6xs2ynjd0ko3 .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-6xs2ynjd0ko3 .fl-rich-text, .fl-builder-content .fl-node-6xs2ynjd0ko3 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-6xs2ynjd0ko3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-wlgyabt159vh .fl-photo {
	text-align: left;
}
.fl-node-wlgyabt159vh .fl-photo-content, .fl-node-wlgyabt159vh .fl-photo-img {
	width: 75px;
}
@media(max-width: 992px) {
	.fl-node-wlgyabt159vh .fl-photo {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-wlgyabt159vh .fl-photo-content, .fl-node-wlgyabt159vh .fl-photo-img {
		width: 75px;
	}
}
 .fl-node-wlgyabt159vh > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-w3t8ey0qjar2.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 22px;
}
@media(max-width: 992px) {
	.fl-node-w3t8ey0qjar2.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-w3t8ey0qjar2 > .fl-module-content {
	margin-bottom:10px;
}
.fl-builder-content .fl-node-eoqvd8n6m457 .fl-rich-text, .fl-builder-content .fl-node-eoqvd8n6m457 .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-eoqvd8n6m457 .fl-rich-text, .fl-builder-content .fl-node-eoqvd8n6m457 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-eoqvd8n6m457 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-2a0dkifr947u .fl-photo {
	text-align: left;
}
.fl-node-2a0dkifr947u .fl-photo-content, .fl-node-2a0dkifr947u .fl-photo-img {
	width: 75px;
}
@media(max-width: 992px) {
	.fl-node-2a0dkifr947u .fl-photo {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-2a0dkifr947u .fl-photo-content, .fl-node-2a0dkifr947u .fl-photo-img {
		width: 75px;
	}
}
 .fl-node-2a0dkifr947u > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-9w3kj2tmh8ob.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 22px;
}
@media(max-width: 992px) {
	.fl-node-9w3kj2tmh8ob.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-9w3kj2tmh8ob > .fl-module-content {
	margin-bottom:10px;
}
.fl-builder-content .fl-node-u56qjlt79wg3 .fl-rich-text, .fl-builder-content .fl-node-u56qjlt79wg3 .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-u56qjlt79wg3 .fl-rich-text, .fl-builder-content .fl-node-u56qjlt79wg3 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-u56qjlt79wg3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-0huamop16tvz h5.fl-heading a,
.fl-row .fl-col .fl-node-0huamop16tvz h5.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-0huamop16tvz h5.fl-heading .fl-heading-text *,
.fl-node-0huamop16tvz h5.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-0huamop16tvz.fl-module-heading .fl-heading {
	font-weight: 500;
	font-size: 17px;
	text-align: right;
}
@media(max-width: 992px) {
	.fl-node-0huamop16tvz.fl-module-heading .fl-heading {
		font-size: 14px;
		text-align: center;
	}
}

.fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button,
.fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button:hover,
.fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button:visited {
		background: #39b4e7;
	}

.fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button:hover {
	background-color: #0d5aa4;
}

.fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button,
.fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button:visited,
.fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button *,
.fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button:visited * {
	color: #ffffff;
}












.fl-node-g9x5jnal1vhs .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-g9x5jnal1vhs .fl-button-wrap a.fl-button {
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 20px;
	padding-left: 35px;
}
.fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button, .fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button:visited {
	font-weight: 500;
	font-size: 17px;
	border: 1px solid #2da8db;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #39b4e7;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
.fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button:hover, .fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button:focus {
	border: 1px solid #014e98;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0d5aa4;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 992px) {
	.fl-node-g9x5jnal1vhs .fl-button-wrap {
		text-align: center;
	}
	.fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button, .fl-builder-content .fl-node-g9x5jnal1vhs a.fl-button:visited {
		font-size: 14px;
	}
}
.fl-node-ru1ez8h6l3oq .fl-photo {
	text-align: right;
}
@media(max-width: 992px) {
	.fl-node-ru1ez8h6l3oq .fl-photo {
		text-align: left;
	}
	.fl-node-ru1ez8h6l3oq .fl-photo-content, .fl-node-ru1ez8h6l3oq .fl-photo-img {
		width: 500px;
	}
}
 .fl-node-ru1ez8h6l3oq > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-ru1ez8h6l3oq.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-row .fl-col .fl-node-yw05hags4mpd h2.fl-heading a,
.fl-row .fl-col .fl-node-yw05hags4mpd h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-yw05hags4mpd h2.fl-heading .fl-heading-text *,
.fl-node-yw05hags4mpd h2.fl-heading .fl-heading-text {
	color: rgb(77, 77, 77);
}
.fl-node-yw05hags4mpd.fl-module-heading .fl-heading {
	font-weight: 500;
	font-size: 44px;
}
@media(max-width: 992px) {
	.fl-node-yw05hags4mpd.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-yw05hags4mpd > .fl-module-content {
	margin-top:10px;
}
.fl-node-34p729idoxhe .fl-photo {
	text-align: left;
}
 .fl-node-34p729idoxhe > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-q6y5xvc0o17b h3.fl-heading a,
.fl-row .fl-col .fl-node-q6y5xvc0o17b h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-q6y5xvc0o17b h3.fl-heading .fl-heading-text *,
.fl-node-q6y5xvc0o17b h3.fl-heading .fl-heading-text {
	color: #696a68;
}
.fl-node-q6y5xvc0o17b.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-q6y5xvc0o17b > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-h5evlniutayc .fl-rich-text, .fl-builder-content .fl-node-h5evlniutayc .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-h5evlniutayc > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-q9gotl0p8jdx .fl-photo {
	text-align: left;
}
 .fl-node-q9gotl0p8jdx > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-q94rai8y2m3j h3.fl-heading a,
.fl-row .fl-col .fl-node-q94rai8y2m3j h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-q94rai8y2m3j h3.fl-heading .fl-heading-text *,
.fl-node-q94rai8y2m3j h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-q94rai8y2m3j.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-q94rai8y2m3j > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-db6vrw2sk5ex .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-db6vrw2sk5ex .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-db6vrw2sk5ex .fl-rich-text, .fl-builder-content .fl-node-db6vrw2sk5ex .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-db6vrw2sk5ex > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-9uqhrleya7zd .fl-photo {
	text-align: left;
}
 .fl-node-9uqhrleya7zd > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-b0scjrhkywvi h3.fl-heading a,
.fl-row .fl-col .fl-node-b0scjrhkywvi h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-b0scjrhkywvi h3.fl-heading .fl-heading-text *,
.fl-node-b0scjrhkywvi h3.fl-heading .fl-heading-text {
	color: #696a68;
}
.fl-node-b0scjrhkywvi.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-b0scjrhkywvi > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-po5iwz0qsu2e .fl-rich-text, .fl-builder-content .fl-node-po5iwz0qsu2e .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-po5iwz0qsu2e > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-ngi5d168yuwh .fl-photo {
	text-align: left;
}
 .fl-node-ngi5d168yuwh > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-ea2y074nv1hd h3.fl-heading a,
.fl-row .fl-col .fl-node-ea2y074nv1hd h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ea2y074nv1hd h3.fl-heading .fl-heading-text *,
.fl-node-ea2y074nv1hd h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-ea2y074nv1hd.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-ea2y074nv1hd > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-3xe67cmjkidq .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-3xe67cmjkidq .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-3xe67cmjkidq .fl-rich-text, .fl-builder-content .fl-node-3xe67cmjkidq .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-3xe67cmjkidq > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-sxi85aympdnw .fl-photo {
	text-align: left;
}
 .fl-node-sxi85aympdnw > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-gw7uzyd956lo h3.fl-heading a,
.fl-row .fl-col .fl-node-gw7uzyd956lo h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-gw7uzyd956lo h3.fl-heading .fl-heading-text *,
.fl-node-gw7uzyd956lo h3.fl-heading .fl-heading-text {
	color: #696a68;
}
.fl-node-gw7uzyd956lo.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-gw7uzyd956lo > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-4z92xvptiuej .fl-rich-text, .fl-builder-content .fl-node-4z92xvptiuej .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-4z92xvptiuej > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-2pi83rc5x9wb .fl-photo {
	text-align: left;
}
 .fl-node-2pi83rc5x9wb > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-wugl2yjkdrxs h3.fl-heading a,
.fl-row .fl-col .fl-node-wugl2yjkdrxs h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-wugl2yjkdrxs h3.fl-heading .fl-heading-text *,
.fl-node-wugl2yjkdrxs h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-wugl2yjkdrxs.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-wugl2yjkdrxs > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-4ap1td58wfjh .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-4ap1td58wfjh .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-4ap1td58wfjh .fl-rich-text, .fl-builder-content .fl-node-4ap1td58wfjh .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-4ap1td58wfjh > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-tegdx3z0wnai.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 48px;
	text-align: left;
	text-transform: capitalize;
	font-variant: normal;
}
@media(max-width: 992px) {
	.fl-node-tegdx3z0wnai.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-tegdx3z0wnai > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-fjy6scp02vkq .fl-separator {
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #282b30;
	max-width: 63%;
	margin: 0 0 0 0;
}

			 .fl-node-fjy6scp02vkq > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
	.fl-builder-content .fl-node-lnj1vow6mdfr .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-lnj1vow6mdfr .fl-module-content .fl-rich-text * {
		color: rgba(96,198,0,0.75);
	}
	.fl-builder-content .fl-node-lnj1vow6mdfr .fl-rich-text, .fl-builder-content .fl-node-lnj1vow6mdfr .fl-rich-text *:not(b, strong) {
	font-family: "Bowlby One SC", sans-serif;
	font-weight: 400;
}
 .fl-node-lnj1vow6mdfr > .fl-module-content {
	margin-top:10px;
}
.fl-builder-content .fl-node-ytmh6eu4i5dx .fl-rich-text, .fl-builder-content .fl-node-ytmh6eu4i5dx .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-ytmh6eu4i5dx .fl-rich-text, .fl-builder-content .fl-node-ytmh6eu4i5dx .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-ytmh6eu4i5dx > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-d238c7qe9izt .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-d238c7qe9izt .fl-module-content .fl-rich-text * {
		color: #00ad90;
	}
	.fl-builder-content .fl-node-d238c7qe9izt .fl-rich-text, .fl-builder-content .fl-node-d238c7qe9izt .fl-rich-text *:not(b, strong) {
	font-family: "Bowlby One SC", sans-serif;
	font-weight: 400;
}
 .fl-node-d238c7qe9izt > .fl-module-content {
	margin-top:10px;
	margin-bottom:13px;
}
.fl-builder-content .fl-node-97m1xa5hp4lg .fl-rich-text, .fl-builder-content .fl-node-97m1xa5hp4lg .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-97m1xa5hp4lg .fl-rich-text, .fl-builder-content .fl-node-97m1xa5hp4lg .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-97m1xa5hp4lg > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-ngzmdht8ckj2 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-ngzmdht8ckj2 .fl-module-content .fl-rich-text * {
		color: #0068c4;
	}
	.fl-builder-content .fl-node-ngzmdht8ckj2 .fl-rich-text, .fl-builder-content .fl-node-ngzmdht8ckj2 .fl-rich-text *:not(b, strong) {
	font-family: "Bowlby One SC", sans-serif;
	font-weight: 400;
}
 .fl-node-ngzmdht8ckj2 > .fl-module-content {
	margin-top:10px;
}
.fl-builder-content .fl-node-ir6ybd104h75 .fl-rich-text, .fl-builder-content .fl-node-ir6ybd104h75 .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-ir6ybd104h75 .fl-rich-text, .fl-builder-content .fl-node-ir6ybd104h75 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-ir6ybd104h75 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-bk8voge9fmnj .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-bk8voge9fmnj .fl-module-content .fl-rich-text * {
		color: #001e66;
	}
	.fl-builder-content .fl-node-bk8voge9fmnj .fl-rich-text, .fl-builder-content .fl-node-bk8voge9fmnj .fl-rich-text *:not(b, strong) {
	font-family: "Bowlby One SC", sans-serif;
	font-weight: 400;
}
 .fl-node-bk8voge9fmnj > .fl-module-content {
	margin-top:10px;
}
.fl-builder-content .fl-node-xgn81qekcspa .fl-rich-text, .fl-builder-content .fl-node-xgn81qekcspa .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-xgn81qekcspa .fl-rich-text, .fl-builder-content .fl-node-xgn81qekcspa .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-xgn81qekcspa > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-mbeai3924fhd .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-mbeai3924fhd .fl-module-content .fl-rich-text * {
		color: rgba(40,40,40,0.72);
	}
	.fl-builder-content .fl-node-mbeai3924fhd .fl-rich-text, .fl-builder-content .fl-node-mbeai3924fhd .fl-rich-text *:not(b, strong) {
	font-family: "Bowlby One SC", sans-serif;
	font-weight: 400;
}
 .fl-node-mbeai3924fhd > .fl-module-content {
	margin-top:10px;
}
.fl-builder-content .fl-node-tpi2qvbd8zjr .fl-rich-text, .fl-builder-content .fl-node-tpi2qvbd8zjr .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-tpi2qvbd8zjr .fl-rich-text, .fl-builder-content .fl-node-tpi2qvbd8zjr .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-tpi2qvbd8zjr > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-c37bky5owmd8 h3.fl-heading a,
.fl-row .fl-col .fl-node-c37bky5owmd8 h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-c37bky5owmd8 h3.fl-heading .fl-heading-text *,
.fl-node-c37bky5owmd8 h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-c37bky5owmd8.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	font-variant: normal;
}
@media(max-width: 992px) {
	.fl-node-c37bky5owmd8.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-c37bky5owmd8 > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-1nwva6c0pjr3 .fl-separator {
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #ffffff;
	max-width: 75%;
	margin: 0 0 0 0;
}

			@media (max-width: 992px) {
		.fl-node-1nwva6c0pjr3 .fl-separator {
										max-width: 33%;
										margin: auto;
					}
	}
		 .fl-node-1nwva6c0pjr3 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-row .fl-col .fl-node-zhk3dearn0yi h2.fl-heading a,
.fl-row .fl-col .fl-node-zhk3dearn0yi h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-zhk3dearn0yi h2.fl-heading .fl-heading-text *,
.fl-node-zhk3dearn0yi h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-zhk3dearn0yi.fl-module-heading .fl-heading {
	font-weight: 500;
	font-size: 44px;
}
@media(max-width: 992px) {
	.fl-node-zhk3dearn0yi.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-zhk3dearn0yi > .fl-module-content {
	margin-top:10px;
}
.fl-row .fl-col .fl-node-57lvtkogbpax h2.fl-heading a,
.fl-row .fl-col .fl-node-57lvtkogbpax h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-57lvtkogbpax h2.fl-heading .fl-heading-text *,
.fl-node-57lvtkogbpax h2.fl-heading .fl-heading-text {
	color: rgb(255, 255, 255);
}
.fl-node-57lvtkogbpax.fl-module-heading .fl-heading {
	font-weight: 400;
	font-size: 30px;
}
@media(max-width: 992px) {
	.fl-node-57lvtkogbpax.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-57lvtkogbpax > .fl-module-content {
	margin-top:10px;
}
	.fl-builder-content .fl-node-tr1fqnicjk9b .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-tr1fqnicjk9b .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-tr1fqnicjk9b .fl-rich-text, .fl-builder-content .fl-node-tr1fqnicjk9b .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-tr1fqnicjk9b .fl-rich-text, .fl-builder-content .fl-node-tr1fqnicjk9b .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-tr1fqnicjk9b > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

.fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button,
.fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button:hover,
.fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button:visited {
		background: #39b4e7;
	}

.fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button:hover {
	background-color: #0d5aa4;
}

.fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button,
.fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button:visited,
.fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button *,
.fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button:visited * {
	color: #ffffff;
}












.fl-node-bh46vnp1cq5j .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-bh46vnp1cq5j .fl-button-wrap a.fl-button {
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 20px;
	padding-left: 35px;
}
.fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button, .fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button:visited {
	font-weight: 500;
	font-size: 17px;
	border: 1px solid #2da8db;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #39b4e7;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
.fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button:hover, .fl-builder-content .fl-node-bh46vnp1cq5j a.fl-button:focus {
	border: 1px solid #014e98;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0d5aa4;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 992px) {
	.fl-node-bh46vnp1cq5j .fl-button-wrap {
		text-align: center;
	}
}
	.fl-builder-content .fl-node-9w18rbtkzqcm .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-9w18rbtkzqcm .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-9w18rbtkzqcm .fl-rich-text, .fl-builder-content .fl-node-9w18rbtkzqcm .fl-rich-text *:not(b, strong) {
	font-weight: 700;
	font-size: 36px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-9w18rbtkzqcm .fl-rich-text, .fl-builder-content .fl-node-9w18rbtkzqcm .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-9w18rbtkzqcm > .fl-module-content {
	margin-top:40px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-9w18rbtkzqcm > .fl-module-content { margin-top:20px; } }.fl-row .fl-col .fl-node-sbi06xo3zhg1 h3.fl-heading a,
.fl-row .fl-col .fl-node-sbi06xo3zhg1 h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-sbi06xo3zhg1 h3.fl-heading .fl-heading-text *,
.fl-node-sbi06xo3zhg1 h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-sbi06xo3zhg1.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	font-variant: normal;
}
@media(max-width: 992px) {
	.fl-node-sbi06xo3zhg1.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-sbi06xo3zhg1 > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-covmqfnkt4i7 .fl-separator {
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #ffffff;
	max-width: 75%;
	margin: 0 0 0 0;
}

				@media (max-width: 768px) {
		.fl-node-covmqfnkt4i7 .fl-separator {
													margin: auto;
					}
	}
	 .fl-node-covmqfnkt4i7 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-row .fl-col .fl-node-lrwqi978ne4c h2.fl-heading a,
.fl-row .fl-col .fl-node-lrwqi978ne4c h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-lrwqi978ne4c h2.fl-heading .fl-heading-text *,
.fl-node-lrwqi978ne4c h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-lrwqi978ne4c.fl-module-heading .fl-heading {
	font-weight: 500;
	font-size: 44px;
}
@media(max-width: 992px) {
	.fl-node-lrwqi978ne4c.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-lrwqi978ne4c > .fl-module-content {
	margin-top:10px;
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }.fl-node-3ht6vxg5l9sp .fl-icon i,
.fl-node-3ht6vxg5l9sp .fl-icon i:before {
	color: #39b4e7;
}




.fl-node-3ht6vxg5l9sp .fl-icon i, .fl-node-3ht6vxg5l9sp .fl-icon i:before {
	font-size: 50px;
}
.fl-node-3ht6vxg5l9sp .fl-icon-wrap .fl-icon-text {
	height: 87.5px;
}
.fl-node-3ht6vxg5l9sp.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-3ht6vxg5l9sp .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-3ht6vxg5l9sp .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-3ht6vxg5l9sp .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
 .fl-node-3ht6vxg5l9sp > .fl-module-content {
	margin-top:5px;
}
@media ( max-width: 768px ) {
 .fl-node-3ht6vxg5l9sp.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
	.fl-builder-content .fl-node-nh14i9mrkzo8 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-nh14i9mrkzo8 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-nh14i9mrkzo8 .fl-rich-text, .fl-builder-content .fl-node-nh14i9mrkzo8 .fl-rich-text *:not(b, strong) {
	font-weight: 600;
	font-size: 18px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-nh14i9mrkzo8 .fl-rich-text, .fl-builder-content .fl-node-nh14i9mrkzo8 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-nh14i9mrkzo8 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-nh14i9mrkzo8.fl-module > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}
.fl-builder-content .fl-node-x8z94vuy6j02 .fl-rich-text, .fl-builder-content .fl-node-x8z94vuy6j02 .fl-rich-text *:not(b, strong) {
	font-weight: 300;
	font-size: 18px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-x8z94vuy6j02 .fl-rich-text, .fl-builder-content .fl-node-x8z94vuy6j02 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-x8z94vuy6j02 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-x8z94vuy6j02.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-builder-content .fl-node-1io4u7sftr2m .fl-rich-text, .fl-builder-content .fl-node-1io4u7sftr2m .fl-rich-text *:not(b, strong) {
	font-weight: 300;
	font-size: 18px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-1io4u7sftr2m .fl-rich-text, .fl-builder-content .fl-node-1io4u7sftr2m .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-1io4u7sftr2m > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-1io4u7sftr2m.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-node-nsiaj63x45lv .fl-photo {
	text-align: center;
}
.fl-node-nsiaj63x45lv .fl-photo-content, .fl-node-nsiaj63x45lv .fl-photo-img {
	width: 160px;
}
body.fl-builder {
	overflow-x: hidden;
}

.fl-animated.fl-slide-in-right {
  	animation: fl-slide-in-right 1s ease;
  	-webkit-animation: fl-slide-in-right 1s ease;
}
@-webkit-keyframes fl-slide-in-right {
  from {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-slide-in-right {
  from {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fl-node-smh10crwqv4i.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	font-variant: normal;
}
@media(max-width: 992px) {
	.fl-node-smh10crwqv4i.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-smh10crwqv4i > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-dnt7pbs1wm4v .fl-separator {
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #282b30;
	max-width: 75%;
	margin: 0 0 0 0;
}

			@media (max-width: 992px) {
		.fl-node-dnt7pbs1wm4v .fl-separator {
										max-width: 33%;
										margin: auto;
					}
	}
		 .fl-node-dnt7pbs1wm4v > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-eca502xusj8f.fl-module-heading .fl-heading {
	font-weight: 400;
	font-size: 37px;
}
@media(max-width: 992px) {
	.fl-node-eca502xusj8f.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-eca502xusj8f > .fl-module-content {
	margin-top:10px;
}
.fl-node-4e1z5nqrjp7i .fl-photo {
	text-align: center;
}
.fl-node-8wmrjzs64cxl .fl-photo {
	text-align: center;
}
.fl-node-oq8g79rab5hc .fl-photo {
	text-align: center;
}
.fl-node-3cirf1pk6u8x .fl-photo {
	text-align: center;
}
.fl-node-4dp8xt36wycr .fl-photo {
	text-align: center;
}
.fl-node-svk7r9dbou2m .fl-photo {
	text-align: center;
}
.fl-row .fl-col .fl-node-ma9udtk0bvh4 h4.fl-heading a,
.fl-row .fl-col .fl-node-ma9udtk0bvh4 h4.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ma9udtk0bvh4 h4.fl-heading .fl-heading-text *,
.fl-node-ma9udtk0bvh4 h4.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-ma9udtk0bvh4.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 16px;
	text-align: left;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-node-ma9udtk0bvh4.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-ma9udtk0bvh4 > .fl-module-content {
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-wcskroay1xiz h3.fl-heading a,
.fl-row .fl-col .fl-node-wcskroay1xiz h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-wcskroay1xiz h3.fl-heading .fl-heading-text *,
.fl-node-wcskroay1xiz h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-wcskroay1xiz.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 56px;
	text-align: left;
	text-transform: capitalize;
}
@media(max-width: 992px) {
	.fl-node-wcskroay1xiz.fl-module-heading .fl-heading {
		font-size: 36px;
		text-align: center;
	}
}
 .fl-node-wcskroay1xiz > .fl-module-content {
	margin-top:0px;
	margin-right:100px;
}
@media ( max-width: 992px ) {
 .fl-node-wcskroay1xiz.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-row .fl-col .fl-node-rc26i5yfvga7 h2.fl-heading a,
.fl-row .fl-col .fl-node-rc26i5yfvga7 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-rc26i5yfvga7 h2.fl-heading .fl-heading-text *,
.fl-node-rc26i5yfvga7 h2.fl-heading .fl-heading-text {
	color: rgb(255, 255, 255);
}
.fl-node-rc26i5yfvga7.fl-module-heading .fl-heading {
	font-weight: 400;
	font-size: 37px;
}
@media(max-width: 992px) {
	.fl-node-rc26i5yfvga7.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-rc26i5yfvga7 > .fl-module-content {
	margin-top:10px;
}
/* Title
---------------------------------------------------*/

body a.fl-callout-title-link {
	text-decoration: none;
}
body h1.fl-callout-title,
body h2.fl-callout-title,
body h3.fl-callout-title,
body h4.fl-callout-title,
body h5.fl-callout-title,
body h6.fl-callout-title {
	margin: 0;
	padding: 0 0 10px 0;
}

/* Text
---------------------------------------------------*/

.fl-callout-text p {
	margin: 0 !important;
	padding: 0 0 10px 0 !important;
}

/* Button
---------------------------------------------------*/

.fl-callout-button {
	padding: 10px 0 0 0;
}

/* CTA Link
---------------------------------------------------*/

.fl-callout-cta-link {
	display: block;
}

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

/* Above/Below Title */
.fl-callout-icon-above-title .fl-icon {
	display: block;
	margin-bottom: 20px;
}
.fl-callout-icon-below-title .fl-icon {
	display: block;
	margin: 10px 0 15px;
}
.fl-callout-icon-above-title .fl-icon i,
.fl-callout-icon-below-title .fl-icon i {
	display: inline-block;
	float: none;
}

/* Left/Right of Title */
.fl-callout-icon-left-title .fl-callout-title,
.fl-callout-icon-right-title .fl-callout-title {
	display: inline-block;
}
.fl-callout-icon-left-title .fl-callout-title span,
.fl-callout-icon-right-title .fl-callout-title span {
	display: table-cell;
	vertical-align: middle;
}
.fl-callout-icon-left-title .fl-icon {
	padding-right: 15px;
}
.fl-callout-icon-right-title .fl-icon {
	padding-left: 15px;
}

/* Left/Right */
.fl-callout-icon-left,
.fl-callout-icon-right {
	display: table;
}
.fl-callout-icon-left .fl-icon,
.fl-callout-icon-left-text .fl-icon {
	display: table-cell;
	vertical-align: top;
	padding-right: 15px;
}
.fl-callout-icon-right .fl-icon,
.fl-callout-icon-right-text .fl-icon {
	display: table-cell;
	vertical-align: top;
	padding-left: 15px;
}

.fl-callout-icon-left .fl-callout-content,
.fl-callout-icon-right .fl-callout-content,
.fl-callout-icon-left-text .fl-callout-text-wrap,
.fl-callout-icon-right-text .fl-callout-text-wrap {
	display: table-cell;
}

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

/* Above Title */
.fl-callout-photo-above-title .fl-photo {
	margin-bottom: 15px;
}

/* Below Title */
.fl-callout-photo-below-title .fl-photo {
	margin-bottom: 15px;
	margin-top: 5px;
}

/* Left */
.fl-callout-photo-left {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.fl-callout-photo-left .fl-callout-photo,
.fl-callout-photo-left-text .fl-callout-photo {
	display: table-cell;
	padding-right: 30px;
	width: 50%;
	vertical-align: top;
}
.fl-callout-photo-left .fl-callout-content,
.fl-callout-photo-left-text .fl-callout-text-wrap {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

/* Right */
.fl-callout-photo-right {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.fl-callout-photo-right .fl-callout-photo,
.fl-callout-photo-right-text .fl-callout-photo {
	display: table-cell;
	padding-left: 30px;
	width: 50%;
	vertical-align: top;
}
.fl-callout-photo-right .fl-callout-content,
.fl-callout-photo-right-text .fl-callout-text-wrap {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

.fl-module-callout .fl-module-content {
	overflow: hidden;
}
@media (max-width: 768px) { .fl-callout-photo-left,
.fl-callout-photo-right {
	display: block;
}
.fl-callout-photo-left .fl-callout-photo,
.fl-callout-photo-left-text .fl-callout-photo {
	display: block;
	margin-bottom: 15px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}
.fl-callout-photo-right .fl-callout-photo,
.fl-callout-photo-right-text .fl-callout-photo {
	display: block;
	margin-top: 25px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}
.fl-callout-photo-left .fl-callout-content,
.fl-callout-photo-left-text .fl-callout-content,
.fl-callout-photo-right .fl-callout-content,
.fl-callout-photo-right-text .fl-callout-content {
	display: block;
	width: auto;
} }.fl-node-emfg9u25dxjt .fl-icon i,
.fl-node-emfg9u25dxjt .fl-icon i:before {
	color: #91f2e9;
}




.fl-node-emfg9u25dxjt .fl-callout {
	text-align: right;
}
.fl-node-emfg9u25dxjt .fl-callout-icon-left, .fl-node-emfg9u25dxjt .fl-callout-icon-right {
	float: right;
}
.fl-node-emfg9u25dxjt .fl-icon i, .fl-node-emfg9u25dxjt .fl-icon i:before {
	font-size: 60px;
}
.fl-node-emfg9u25dxjt .fl-icon-wrap .fl-icon-text {
	height: 105px;
}
@media(max-width: 1200px) {
	.fl-node-emfg9u25dxjt .fl-icon-wrap .fl-icon-text {
		height: 105px;
	}
}
@media(max-width: 992px) {
	.fl-node-emfg9u25dxjt .fl-callout-icon-left, .fl-node-emfg9u25dxjt .fl-callout-icon-right {
		float: none;
	}
	.fl-node-emfg9u25dxjt .fl-icon-wrap .fl-icon-text {
		height: 105px;
	}
}
@media(max-width: 768px) {
	.fl-node-emfg9u25dxjt .fl-callout-icon-left, .fl-node-emfg9u25dxjt .fl-callout-icon-right {
		float: none;
	}
	.fl-node-emfg9u25dxjt .fl-icon-wrap .fl-icon-text {
		height: 105px;
	}
}
.fl-node-emfg9u25dxjt .fl-module-content {
	padding-left: 0%;
}
.fl-builder-content .fl-node-emfg9u25dxjt .fl-callout-content .fl-callout-title, .fl-builder-content .fl-node-emfg9u25dxjt .fl-callout-content .fl-callout-title-text, .fl-builder-content .fl-node-emfg9u25dxjt .fl-callout-content .fl-callout-title-text:hover {
	color: #ffffff;
}
.fl-node-emfg9u25dxjt .fl-callout-title {
	font-weight: 500;
	font-size: 16px;
	text-align: right;
	text-transform: uppercase;
}
.fl-builder-content .fl-node-emfg9u25dxjt .fl-callout-content .fl-callout-text *, .fl-builder-content .fl-node-emfg9u25dxjt .fl-callout-content .fl-callout-cta-link {
	color: #ffffff;
}
.fl-node-emfg9u25dxjt .fl-callout-text, .fl-node-emfg9u25dxjt .fl-callout-cta-link {
	font-weight: 500;
	font-size: 28px;
	text-align: right;
}
@media(max-width: 768px) {
	.fl-node-emfg9u25dxjt .fl-callout-text, .fl-node-emfg9u25dxjt .fl-callout-cta-link {
		font-size: 22px;
	}
}

.fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button,
.fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button:hover,
.fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button:visited {
		background: #88dff2;
	}

.fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button:hover {
	background-color: #3e7aa8;
}

.fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button,
.fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button:visited,
.fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button *,
.fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button:visited * {
	color: #ffffff;
}












.fl-node-ad3j2uhn08sr .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-ad3j2uhn08sr .fl-button-wrap a.fl-button {
	padding-top: 20px;
	padding-right: 40px;
	padding-bottom: 20px;
	padding-left: 40px;
}
.fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button, .fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button:visited {
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	border: 1px solid #7cd3e6;
	border-color: #88dff2;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button:hover, .fl-builder-content .fl-node-ad3j2uhn08sr a.fl-button:focus {
	border: 1px solid #326e9c;
	border-color: #3e7aa8;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
@media(max-width: 992px) {
	.fl-node-ad3j2uhn08sr .fl-button-wrap {
		text-align: center;
	}
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
* { 
    font-family: 'Open Sans', sans-serif;
    
}

.overlap {
	position: relative;
	z-index:1;
}

.underlap {
    position: relative;
    z-index: -1;
}

.square-icon .fl-icon i {
    border-radius: 0px;
}

.ol-white img{
    filter: brightness(0) invert(1);
}
.square-icon .fl-callout i {
    border-radius: 5px;
}
.overlap {
	position: relative;
	z-index:1;
}
/* End Layout CSS */


                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-4l5c23mq7ayg .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-7v5bx8y390r2 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-aq4ot3mevrui .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-53hxuvoq1zgm .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-9f25vh610nd4 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-9zqw5dniy37c .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-fqlozy1053jr .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-8asciflqu6wp .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-mko0wejc8fl2 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-xtkbsidq4zn1 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-g94al13vm0kp .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6bxickevar9u .fl-row-content {
				min-width: 0px;
			}
		