/* 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-jyb80zxkicdf.fl-row-full-height > .fl-row-content-wrap,
.fl-node-jyb80zxkicdf.fl-row-custom-height > .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.fl-node-jyb80zxkicdf.fl-row-full-height > .fl-row-content-wrap {
	min-height: 100vh;
}
.fl-node-jyb80zxkicdf.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 0;
}

.fl-builder-edit .fl-node-jyb80zxkicdf.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-jyb80zxkicdf.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-jyb80zxkicdf.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-jyb80zxkicdf.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-jyb80zxkicdf > .fl-row-content-wrap {
	background-color: rgb(8, 37, 84);
}
.fl-node-jyb80zxkicdf.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 10px;
}
 .fl-node-jyb80zxkicdf > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-jyb80zxkicdf > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:20px;
}
@media ( max-width: 992px ) {
 .fl-node-jyb80zxkicdf.fl-row > .fl-row-content-wrap {
	padding-right:15px;
}
}






.fl-node-7nkwj83t9gmp > .fl-row-content-wrap {
	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;
}
 .fl-node-7nkwj83t9gmp > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






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






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






.fl-node-03wz8thf7dlo > .fl-row-content-wrap {
	background-color: #cff1f9;
}






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

.fl-builder-edit .fl-node-fq6xgz42td5p.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-fq6xgz42td5p.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-fq6xgz42td5p.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-fq6xgz42td5p.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-fq6xgz42td5p > .fl-row-content-wrap {
	background-image: url(https://performex.com/wp-content/uploads/2024/04/PERFORMEX-gradient-background.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-fq6xgz42td5p.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 700px;
}
.fl-node-fq6xgz42td5p .fl-row-content {
	max-width: 1102px;
}
@media(max-width: 992px) {
	.fl-node-fq6xgz42td5p.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 550px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-fq6xgz42td5p.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}






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






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






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






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






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

.fl-builder-edit .fl-node-qsya9trupjbx.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-qsya9trupjbx.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-qsya9trupjbx.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-qsya9trupjbx.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-qsya9trupjbx > .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-qsya9trupjbx.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 800px;
}
.fl-node-qsya9trupjbx .fl-row-content {
	max-width: 1102px;
}
 .fl-node-qsya9trupjbx > .fl-row-content-wrap {
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-qsya9trupjbx.fl-row > .fl-row-content-wrap {
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-qsya9trupjbx.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}
}






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

.fl-builder-edit .fl-node-0znfbhemc9it.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-0znfbhemc9it.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-0znfbhemc9it.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-0znfbhemc9it.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-0znfbhemc9it > .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-0znfbhemc9it.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 400px;
}
 .fl-node-0znfbhemc9it > .fl-row-content-wrap {
	margin-top:40px;
	margin-right:60px;
}
@media ( max-width: 992px ) {
 .fl-node-0znfbhemc9it.fl-row > .fl-row-content-wrap {
	margin-right:0px;
}
}






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

.fl-builder-edit .fl-node-smvtx24lfjg9.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-smvtx24lfjg9.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-smvtx24lfjg9.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-smvtx24lfjg9.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-smvtx24lfjg9 > .fl-row-content-wrap {
	background-image: linear-gradient(180deg, #edf2f5 90%, #ffffff 0%);
}
@media ( max-width: 768px ) {
 .fl-node-smvtx24lfjg9.fl-row > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-smvtx24lfjg9.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}






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






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




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




.fl-node-vxjbwzyin58c {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-vxjbwzyin58c {
		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-iugs6ze19n5f {
	width: 100%;
}




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




.fl-node-2wdyxb90krza {
	width: 70%;
}




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




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




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




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




.fl-node-gmnp90fqorc4 {
	width: 26%;
}




.fl-node-5euahtr0vwq9 {
	width: 73%;
}




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




.fl-node-4xslvmj1p78y {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-4xslvmj1p78y {
		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-8vuj9lt0a1oy {
	width: 50%;
}




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




.fl-node-9ygafvznqus8 {
	width: 50%;
}




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




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




.fl-node-o0rqvc3njpif {
	width: 25%;
}
.fl-node-o0rqvc3njpif > .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-o0rqvc3njpif {
		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-o0rqvc3njpif {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-o0rqvc3njpif > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-o0rqvc3njpif > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-nr27y4mh6eoc {
	width: 25%;
}
.fl-node-nr27y4mh6eoc > .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-nr27y4mh6eoc {
		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-nr27y4mh6eoc {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-nr27y4mh6eoc > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-nr27y4mh6eoc > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-pgjuh9isdkzx {
	width: 25%;
}
.fl-node-pgjuh9isdkzx > .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-pgjuh9isdkzx {
		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-pgjuh9isdkzx {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-pgjuh9isdkzx > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-pgjuh9isdkzx > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-u0w6bf7o4dc5 {
	width: 25%;
}
.fl-node-u0w6bf7o4dc5 > .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-u0w6bf7o4dc5 {
		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-u0w6bf7o4dc5 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-u0w6bf7o4dc5 > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-u0w6bf7o4dc5 > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




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




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




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




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




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




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




.fl-node-di1wpego8kn3 {
	width: 50%;
}
.fl-node-di1wpego8kn3 > .fl-col-content {
	background-color: #1cd0ac;
	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-di1wpego8kn3 {
		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-di1wpego8kn3 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-di1wpego8kn3 > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-di1wpego8kn3.fl-col > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
}
 .fl-node-di1wpego8kn3 > .fl-col-content {
	padding-top:15px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:25px;
}




.fl-node-5w8acy6tpx91 {
	width: 50%;
}
.fl-node-5w8acy6tpx91 > .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-5w8acy6tpx91 {
		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-5w8acy6tpx91 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-5w8acy6tpx91 > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-5w8acy6tpx91.fl-col > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
}
 .fl-node-5w8acy6tpx91 > .fl-col-content {
	padding-top:15px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:25px;
}




.fl-node-zngeo2tym83l {
	width: 50%;
}
.fl-node-zngeo2tym83l > .fl-col-content {
	background-color: #1cd0ac;
	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-zngeo2tym83l {
		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-zngeo2tym83l {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-zngeo2tym83l > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-zngeo2tym83l.fl-col > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
}
 .fl-node-zngeo2tym83l > .fl-col-content {
	padding-top:15px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:25px;
}




.fl-node-2r1swxhya9lo {
	width: 50%;
}
.fl-node-2r1swxhya9lo > .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-2r1swxhya9lo {
		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-2r1swxhya9lo {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-2r1swxhya9lo > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-2r1swxhya9lo.fl-col > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
}
 .fl-node-2r1swxhya9lo > .fl-col-content {
	padding-top:15px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:25px;
}




.fl-node-elck3hi82v7x {
	width: 50%;
}
.fl-node-elck3hi82v7x > .fl-col-content {
	background-color: #1cd0ac;
	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-elck3hi82v7x {
		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-elck3hi82v7x {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-elck3hi82v7x > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-elck3hi82v7x.fl-col > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
}
 .fl-node-elck3hi82v7x > .fl-col-content {
	padding-top:15px;
	padding-right:25px;
	padding-bottom:15px;
	padding-left:25px;
}




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




.fl-node-0fyr78sieguo {
	width: 50%;
}




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




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




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




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




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




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




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




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




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




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




.fl-node-4wfrj6qzctng {
	width: 85%;
}




.fl-node-6oa08u3vz2q7 {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-6oa08u3vz2q7 {
		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-6oa08u3vz2q7 > .fl-col-content {
	margin-top:60px;
	margin-right:60px;
	margin-bottom:60px;
	margin-left:60px;
}
 .fl-node-6oa08u3vz2q7 > .fl-col-content {
	padding-bottom:400px;
}
@media ( max-width: 992px ) {
 .fl-node-6oa08u3vz2q7.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-247wxzoskg93 {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-247wxzoskg93 {
		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-247wxzoskg93 > .fl-col-content {
	margin-top:60px;
	margin-right:60px;
	margin-bottom:60px;
	margin-left:60px;
}
@media ( max-width: 992px ) {
 .fl-node-247wxzoskg93.fl-col > .fl-col-content {
	margin-top:0px;
}
}
@media ( max-width: 992px ) {
 .fl-node-247wxzoskg93.fl-col > .fl-col-content {
	padding-top:0px;
}
}




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




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




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




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




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




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




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




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




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




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




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




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




.fl-node-5w8t76xfl0qg {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-5w8t76xfl0qg {
		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-lsox63evn8fj {
	width: 50%;
}




.fl-node-83alpy9wensu {
	width: 50%;
}
.fl-node-83alpy9wensu > .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-83alpy9wensu {
		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-83alpy9wensu > .fl-col-content {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:5px;
	margin-left:5px;
}
@media ( max-width: 768px ) {
 .fl-node-83alpy9wensu.fl-col > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
}




.fl-node-5186fimuaq3n {
	width: 50%;
}
.fl-node-5186fimuaq3n > .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-5186fimuaq3n {
		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-5186fimuaq3n > .fl-col-content {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:5px;
	margin-left:5px;
}
@media ( max-width: 768px ) {
 .fl-node-5186fimuaq3n.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-xl870rzq64w1 .fl-rich-text, .fl-builder-content .fl-node-xl870rzq64w1 .fl-rich-text *:not(b, strong) {
	text-align: left;
}
 .fl-node-xl870rzq64w1 > .fl-module-content {
	margin-top:0px;
	margin-bottom:-20px;
}
@media (max-width: 768px) { .fl-node-xl870rzq64w1 > .fl-module-content { margin-bottom:20px; } }.fl-icon-group .fl-icon {
	display: inline-block;
	margin-bottom: 10px;
	margin-top: 10px;
}
.fl-node-6j43zexgcnat .fl-icon i,
.fl-node-6j43zexgcnat .fl-icon i:before {
	color: #ffffff;
}



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

.fl-node-6j43zexgcnat .fl-icon i, .fl-node-6j43zexgcnat .fl-icon i:before {
	font-size: 22px;
}
.fl-node-6j43zexgcnat .fl-icon-wrap .fl-icon-text {
	height: 38.5px;
}
@media(max-width: 1200px) {
	.fl-node-6j43zexgcnat .fl-icon-wrap .fl-icon-text {
		height: 38.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-6j43zexgcnat .fl-icon-wrap .fl-icon-text {
		height: 38.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-6j43zexgcnat .fl-icon-wrap .fl-icon-text {
		height: 38.5px;
	}
}
				
	
	
.fl-node-6j43zexgcnat .fl-icon-group {
	text-align: right;
}
.fl-node-6j43zexgcnat .fl-icon + .fl-icon {
	margin-left: 25px;
}
 .fl-node-6j43zexgcnat > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
img.mfp-img {
    padding-bottom: 40px !important;
}
@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-cfwq6z5lbtnu .fl-photo {
	text-align: center;
}
 .fl-node-cfwq6z5lbtnu > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-embed-video iframe {
	max-width: 100%;
}
.fl-wp-video {
	position: relative;
	height: 0;
	overflow: hidden;
	padding: 0 0 56.25%;
}
.fl-wp-video .wp-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


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

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

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

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

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

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








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

	.fl-node-i37ka5lq8t40 .fl-wp-video .mejs-overlay-loading {
		display: none;
	}

 .fl-node-i37ka5lq8t40 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-gm3bx076af5y .fl-separator {
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #282b30;
	max-width: 63%;
	margin: 0 0 0 0;
}

			 .fl-node-gm3bx076af5y > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-b6a90h478o3m .fl-photo {
	text-align: center;
}

.fl-builder-content .fl-node-ezcolxr73buh a.fl-button,
.fl-builder-content .fl-node-ezcolxr73buh a.fl-button:hover,
.fl-builder-content .fl-node-ezcolxr73buh a.fl-button:visited {
		background: #004f8c;
	}

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

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












.fl-node-ezcolxr73buh .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-ezcolxr73buh .fl-button-wrap a.fl-button {
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 20px;
	padding-left: 35px;
}
.fl-builder-content .fl-node-ezcolxr73buh a.fl-button, .fl-builder-content .fl-node-ezcolxr73buh a.fl-button:visited {
	font-weight: 500;
	font-size: 17px;
	border: 1px solid #004380;
	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-ezcolxr73buh a.fl-button:hover, .fl-builder-content .fl-node-ezcolxr73buh 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-ezcolxr73buh .fl-button-wrap {
		text-align: center;
	}
}
	.fl-node-ip0g1nmxreao .fl-wp-video {
		padding-bottom: 56.25%;
	}








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

	.fl-node-ip0g1nmxreao .fl-wp-video .mejs-overlay-loading {
		display: none;
	}









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


.fl-node-l3rxghm1tjo2 .fl-photo {
	text-align: center;
}
.fl-node-gdvf2uk6c31z .fl-photo {
	text-align: center;
}
 .fl-node-gdvf2uk6c31z > .fl-module-content {
	margin-top:-20px;
}
@media (max-width: 768px) { .fl-node-gdvf2uk6c31z > .fl-module-content { margin-top:20px; } }
.fl-builder-content .fl-node-g14ke3b6m8ai a.fl-button,
.fl-builder-content .fl-node-g14ke3b6m8ai a.fl-button:hover,
.fl-builder-content .fl-node-g14ke3b6m8ai a.fl-button:visited {
		background: #004f8c;
	}

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

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












.fl-node-g14ke3b6m8ai .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-g14ke3b6m8ai .fl-button-wrap a.fl-button {
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 20px;
	padding-left: 35px;
}
.fl-builder-content .fl-node-g14ke3b6m8ai a.fl-button, .fl-builder-content .fl-node-g14ke3b6m8ai a.fl-button:visited {
	font-weight: 500;
	font-size: 17px;
	border: 1px solid #004380;
	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-g14ke3b6m8ai a.fl-button:hover, .fl-builder-content .fl-node-g14ke3b6m8ai 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-g14ke3b6m8ai .fl-button-wrap {
		text-align: center;
	}
}
.fl-node-wald58n7g3xm .fl-photo {
	text-align: center;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-hg659pinwyek h2.fl-heading a,
.fl-row .fl-col .fl-node-hg659pinwyek h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-hg659pinwyek h2.fl-heading .fl-heading-text *,
.fl-node-hg659pinwyek h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-hg659pinwyek.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 46px;
	text-transform: capitalize;
}
@media(max-width: 992px) {
	.fl-node-hg659pinwyek.fl-module-heading .fl-heading {
		text-align: center;
	}
}
.fl-row .fl-col .fl-node-ume148tdb2ci h2.fl-heading a,
.fl-row .fl-col .fl-node-ume148tdb2ci h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ume148tdb2ci h2.fl-heading .fl-heading-text *,
.fl-node-ume148tdb2ci h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-ume148tdb2ci.fl-module-heading .fl-heading {
	font-weight: 700;
	text-transform: capitalize;
}
@media(max-width: 992px) {
	.fl-node-ume148tdb2ci.fl-module-heading .fl-heading {
		text-align: center;
	}
}
	.fl-builder-content .fl-node-okpvh9lty2fb .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-okpvh9lty2fb .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-okpvh9lty2fb .fl-rich-text, .fl-builder-content .fl-node-okpvh9lty2fb .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-okpvh9lty2fb .fl-rich-text, .fl-builder-content .fl-node-okpvh9lty2fb .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
	.fl-node-hb1gs4edzwjo .fl-wp-video {
		padding-bottom: 56.25%;
	}








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

	.fl-node-hb1gs4edzwjo .fl-wp-video .mejs-overlay-loading {
		display: none;
	}


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

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

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












.fl-node-31djp7enm5i6 .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-31djp7enm5i6 .fl-button-wrap a.fl-button {
	padding-top: 25px;
	padding-right: 40px;
	padding-bottom: 25px;
	padding-left: 40px;
}
.fl-builder-content .fl-node-31djp7enm5i6 a.fl-button, .fl-builder-content .fl-node-31djp7enm5i6 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-31djp7enm5i6 a.fl-button:hover, .fl-builder-content .fl-node-31djp7enm5i6 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-31djp7enm5i6 .fl-button-wrap {
		text-align: center;
	}
}
.fl-node-5d62p8lnsmcg.fl-module-heading .fl-heading {
	font-weight: 400;
	font-size: 37px;
}
@media(max-width: 992px) {
	.fl-node-5d62p8lnsmcg.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-5d62p8lnsmcg > .fl-module-content {
	margin-top:10px;
}
.fl-node-1du0hbe57kl8 .fl-photo {
	text-align: center;
}
.fl-node-hbwxrt47qe98 .fl-photo {
	text-align: left;
}
.fl-node-hbwxrt47qe98 .fl-photo-content, .fl-node-hbwxrt47qe98 .fl-photo-img {
	width: 75px;
}
@media(max-width: 992px) {
	.fl-node-hbwxrt47qe98 .fl-photo {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-hbwxrt47qe98 .fl-photo-content, .fl-node-hbwxrt47qe98 .fl-photo-img {
		width: 75px;
	}
}
 .fl-node-hbwxrt47qe98 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-gtcv3fsz7h1k.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 22px;
}
@media(max-width: 992px) {
	.fl-node-gtcv3fsz7h1k.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-gtcv3fsz7h1k > .fl-module-content {
	margin-bottom:10px;
}
.fl-builder-content .fl-node-0v4izaf7986j .fl-rich-text, .fl-builder-content .fl-node-0v4izaf7986j .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-0v4izaf7986j .fl-rich-text, .fl-builder-content .fl-node-0v4izaf7986j .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-0v4izaf7986j > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-78us143newba .fl-photo {
	text-align: left;
}
.fl-node-78us143newba .fl-photo-content, .fl-node-78us143newba .fl-photo-img {
	width: 75px;
}
@media(max-width: 992px) {
	.fl-node-78us143newba .fl-photo {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-78us143newba .fl-photo-content, .fl-node-78us143newba .fl-photo-img {
		width: 75px;
	}
}
 .fl-node-78us143newba > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-l3zusai96eq0.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 22px;
}
@media(max-width: 992px) {
	.fl-node-l3zusai96eq0.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-l3zusai96eq0 > .fl-module-content {
	margin-bottom:10px;
}
.fl-builder-content .fl-node-a9us6q842gwy .fl-rich-text, .fl-builder-content .fl-node-a9us6q842gwy .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-a9us6q842gwy .fl-rich-text, .fl-builder-content .fl-node-a9us6q842gwy .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-a9us6q842gwy > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-769gdwq8yiue .fl-photo {
	text-align: left;
}
.fl-node-769gdwq8yiue .fl-photo-content, .fl-node-769gdwq8yiue .fl-photo-img {
	width: 75px;
}
@media(max-width: 992px) {
	.fl-node-769gdwq8yiue .fl-photo {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-769gdwq8yiue .fl-photo-content, .fl-node-769gdwq8yiue .fl-photo-img {
		width: 75px;
	}
}
 .fl-node-769gdwq8yiue > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-r7w8gvqpn12y.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 22px;
}
@media(max-width: 992px) {
	.fl-node-r7w8gvqpn12y.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-r7w8gvqpn12y > .fl-module-content {
	margin-bottom:10px;
}
.fl-builder-content .fl-node-4dj8kngczat6 .fl-rich-text, .fl-builder-content .fl-node-4dj8kngczat6 .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-4dj8kngczat6 .fl-rich-text, .fl-builder-content .fl-node-4dj8kngczat6 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-4dj8kngczat6 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-6obwiavdpr5n .fl-photo {
	text-align: left;
}
.fl-node-6obwiavdpr5n .fl-photo-content, .fl-node-6obwiavdpr5n .fl-photo-img {
	width: 75px;
}
@media(max-width: 992px) {
	.fl-node-6obwiavdpr5n .fl-photo {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-6obwiavdpr5n .fl-photo-content, .fl-node-6obwiavdpr5n .fl-photo-img {
		width: 75px;
	}
}
 .fl-node-6obwiavdpr5n > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-ocyljd07fqgr.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 22px;
}
@media(max-width: 992px) {
	.fl-node-ocyljd07fqgr.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-ocyljd07fqgr > .fl-module-content {
	margin-bottom:10px;
}
.fl-builder-content .fl-node-ec3xdoiaum6y .fl-rich-text, .fl-builder-content .fl-node-ec3xdoiaum6y .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-ec3xdoiaum6y .fl-rich-text, .fl-builder-content .fl-node-ec3xdoiaum6y .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-ec3xdoiaum6y > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-builder-content .fl-node-jiu8nwmcgqek .fl-rich-text, .fl-builder-content .fl-node-jiu8nwmcgqek .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-jiu8nwmcgqek .fl-rich-text, .fl-builder-content .fl-node-jiu8nwmcgqek .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-jiu8nwmcgqek > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-j264st758lui h5.fl-heading a,
.fl-row .fl-col .fl-node-j264st758lui h5.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-j264st758lui h5.fl-heading .fl-heading-text *,
.fl-node-j264st758lui h5.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-j264st758lui.fl-module-heading .fl-heading {
	font-weight: 500;
	font-size: 17px;
	text-align: right;
}
@media(max-width: 992px) {
	.fl-node-j264st758lui.fl-module-heading .fl-heading {
		font-size: 14px;
		text-align: center;
	}
}

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

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

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












.fl-node-7kzpm9hqbv48 .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-7kzpm9hqbv48 .fl-button-wrap a.fl-button {
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 20px;
	padding-left: 35px;
}
.fl-builder-content .fl-node-7kzpm9hqbv48 a.fl-button, .fl-builder-content .fl-node-7kzpm9hqbv48 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-7kzpm9hqbv48 a.fl-button:hover, .fl-builder-content .fl-node-7kzpm9hqbv48 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-7kzpm9hqbv48 .fl-button-wrap {
		text-align: center;
	}
	.fl-builder-content .fl-node-7kzpm9hqbv48 a.fl-button, .fl-builder-content .fl-node-7kzpm9hqbv48 a.fl-button:visited {
		font-size: 14px;
	}
}
.fl-row .fl-col .fl-node-lmhc1vwzd3ko h2.fl-heading a,
.fl-row .fl-col .fl-node-lmhc1vwzd3ko h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-lmhc1vwzd3ko h2.fl-heading .fl-heading-text *,
.fl-node-lmhc1vwzd3ko h2.fl-heading .fl-heading-text {
	color: rgb(77, 77, 77);
}
.fl-node-lmhc1vwzd3ko.fl-module-heading .fl-heading {
	font-weight: 500;
	font-size: 44px;
}
@media(max-width: 992px) {
	.fl-node-lmhc1vwzd3ko.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-lmhc1vwzd3ko > .fl-module-content {
	margin-top:10px;
}
.fl-node-nk9ors2alfhb .fl-photo {
	text-align: left;
}
 .fl-node-nk9ors2alfhb > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-dehs7wfj8c45 h3.fl-heading a,
.fl-row .fl-col .fl-node-dehs7wfj8c45 h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-dehs7wfj8c45 h3.fl-heading .fl-heading-text *,
.fl-node-dehs7wfj8c45 h3.fl-heading .fl-heading-text {
	color: #696a68;
}
.fl-node-dehs7wfj8c45.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-dehs7wfj8c45 > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-96wda2tijlzp .fl-rich-text, .fl-builder-content .fl-node-96wda2tijlzp .fl-rich-text *:not(b, strong) {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-96wda2tijlzp > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-5usxv94n8i1m .fl-photo {
	text-align: left;
}
 .fl-node-5usxv94n8i1m > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-l0ctx9183osw h3.fl-heading a,
.fl-row .fl-col .fl-node-l0ctx9183osw h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-l0ctx9183osw h3.fl-heading .fl-heading-text *,
.fl-node-l0ctx9183osw h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-l0ctx9183osw.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-l0ctx9183osw > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-4h97woxyflm8 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-4h97woxyflm8 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-4h97woxyflm8 .fl-rich-text, .fl-builder-content .fl-node-4h97woxyflm8 .fl-rich-text *:not(b, strong) {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-4h97woxyflm8 > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-ur64l3zjobe1 .fl-photo {
	text-align: left;
}
 .fl-node-ur64l3zjobe1 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-0n97yj3umg25 h3.fl-heading a,
.fl-row .fl-col .fl-node-0n97yj3umg25 h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-0n97yj3umg25 h3.fl-heading .fl-heading-text *,
.fl-node-0n97yj3umg25 h3.fl-heading .fl-heading-text {
	color: #696a68;
}
.fl-node-0n97yj3umg25.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-0n97yj3umg25 > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-wqcnp8abhx9g .fl-rich-text, .fl-builder-content .fl-node-wqcnp8abhx9g .fl-rich-text *:not(b, strong) {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-wqcnp8abhx9g > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-nsx02dmkt6ia .fl-photo {
	text-align: left;
}
 .fl-node-nsx02dmkt6ia > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-fdihcxp4s0oe h3.fl-heading a,
.fl-row .fl-col .fl-node-fdihcxp4s0oe h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-fdihcxp4s0oe h3.fl-heading .fl-heading-text *,
.fl-node-fdihcxp4s0oe h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-fdihcxp4s0oe.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-fdihcxp4s0oe > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-e47t2gvz8lfw .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-e47t2gvz8lfw .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-e47t2gvz8lfw .fl-rich-text, .fl-builder-content .fl-node-e47t2gvz8lfw .fl-rich-text *:not(b, strong) {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-e47t2gvz8lfw > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-up4s5oia6dxg .fl-photo {
	text-align: left;
}
 .fl-node-up4s5oia6dxg > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-zy14oxkfw5v7 h3.fl-heading a,
.fl-row .fl-col .fl-node-zy14oxkfw5v7 h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-zy14oxkfw5v7 h3.fl-heading .fl-heading-text *,
.fl-node-zy14oxkfw5v7 h3.fl-heading .fl-heading-text {
	color: #696a68;
}
.fl-node-zy14oxkfw5v7.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-zy14oxkfw5v7 > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-mz0xkn18bcrt .fl-rich-text, .fl-builder-content .fl-node-mz0xkn18bcrt .fl-rich-text *:not(b, strong) {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-mz0xkn18bcrt > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-bfm7pejgl2za .fl-photo {
	text-align: left;
}
 .fl-node-bfm7pejgl2za > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-6w1i5klv8ygj h3.fl-heading a,
.fl-row .fl-col .fl-node-6w1i5klv8ygj h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-6w1i5klv8ygj h3.fl-heading .fl-heading-text *,
.fl-node-6w1i5klv8ygj h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-6w1i5klv8ygj.fl-module-heading .fl-heading {
	font-family: "Fira Sans", sans-serif;
	font-weight: 400;
	font-size: 24px;
}
 .fl-node-6w1i5klv8ygj > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-xpdjwi3nlmh9 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-xpdjwi3nlmh9 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-xpdjwi3nlmh9 .fl-rich-text, .fl-builder-content .fl-node-xpdjwi3nlmh9 .fl-rich-text *:not(b, strong) {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-xpdjwi3nlmh9 > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-m1hgcyv8ax06.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-m1hgcyv8ax06.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-m1hgcyv8ax06 > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-8lr9x23tfbde .fl-separator {
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #282b30;
	max-width: 63%;
	margin: 0 0 0 0;
}

			 .fl-node-8lr9x23tfbde > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
	.fl-builder-content .fl-node-r87an5dob0lv .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-r87an5dob0lv .fl-module-content .fl-rich-text * {
		color: rgba(96,198,0,0.75);
	}
	.fl-builder-content .fl-node-r87an5dob0lv .fl-rich-text, .fl-builder-content .fl-node-r87an5dob0lv .fl-rich-text *:not(b, strong) {
	font-family: "Bowlby One SC", sans-serif;
	font-weight: 400;
}
 .fl-node-r87an5dob0lv > .fl-module-content {
	margin-top:10px;
}
.fl-builder-content .fl-node-n08bvqmxo6zh .fl-rich-text, .fl-builder-content .fl-node-n08bvqmxo6zh .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-n08bvqmxo6zh .fl-rich-text, .fl-builder-content .fl-node-n08bvqmxo6zh .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-n08bvqmxo6zh > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-duv83nspm21z .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-duv83nspm21z .fl-module-content .fl-rich-text * {
		color: #00ad90;
	}
	.fl-builder-content .fl-node-duv83nspm21z .fl-rich-text, .fl-builder-content .fl-node-duv83nspm21z .fl-rich-text *:not(b, strong) {
	font-family: "Bowlby One SC", sans-serif;
	font-weight: 400;
}
 .fl-node-duv83nspm21z > .fl-module-content {
	margin-top:10px;
	margin-bottom:13px;
}
.fl-builder-content .fl-node-rzjs8awybdpi .fl-rich-text, .fl-builder-content .fl-node-rzjs8awybdpi .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-rzjs8awybdpi .fl-rich-text, .fl-builder-content .fl-node-rzjs8awybdpi .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-rzjs8awybdpi > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-n83jxvio0l9e .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-n83jxvio0l9e .fl-module-content .fl-rich-text * {
		color: #0068c4;
	}
	.fl-builder-content .fl-node-n83jxvio0l9e .fl-rich-text, .fl-builder-content .fl-node-n83jxvio0l9e .fl-rich-text *:not(b, strong) {
	font-family: "Bowlby One SC", sans-serif;
	font-weight: 400;
}
 .fl-node-n83jxvio0l9e > .fl-module-content {
	margin-top:10px;
}
.fl-builder-content .fl-node-njluzb928cod .fl-rich-text, .fl-builder-content .fl-node-njluzb928cod .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-njluzb928cod .fl-rich-text, .fl-builder-content .fl-node-njluzb928cod .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-njluzb928cod > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-6h1vk2rezc5j .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-6h1vk2rezc5j .fl-module-content .fl-rich-text * {
		color: rgba(0,30,102,0.91);
	}
	.fl-builder-content .fl-node-6h1vk2rezc5j .fl-rich-text, .fl-builder-content .fl-node-6h1vk2rezc5j .fl-rich-text *:not(b, strong) {
	font-family: "Bowlby One SC", sans-serif;
	font-weight: 400;
}
 .fl-node-6h1vk2rezc5j > .fl-module-content {
	margin-top:10px;
}
.fl-builder-content .fl-node-jkrqa19p52n7 .fl-rich-text, .fl-builder-content .fl-node-jkrqa19p52n7 .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-jkrqa19p52n7 .fl-rich-text, .fl-builder-content .fl-node-jkrqa19p52n7 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-jkrqa19p52n7 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-nkemtchqs31v .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-nkemtchqs31v .fl-module-content .fl-rich-text * {
		color: rgba(40,40,40,0.79);
	}
	.fl-builder-content .fl-node-nkemtchqs31v .fl-rich-text, .fl-builder-content .fl-node-nkemtchqs31v .fl-rich-text *:not(b, strong) {
	font-family: "Bowlby One SC", sans-serif;
	font-weight: 400;
}
 .fl-node-nkemtchqs31v > .fl-module-content {
	margin-top:10px;
}
.fl-builder-content .fl-node-x0pdo6l7czew .fl-rich-text, .fl-builder-content .fl-node-x0pdo6l7czew .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-x0pdo6l7czew .fl-rich-text, .fl-builder-content .fl-node-x0pdo6l7czew .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-x0pdo6l7czew > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-om09incv2f5t h3.fl-heading a,
.fl-row .fl-col .fl-node-om09incv2f5t h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-om09incv2f5t h3.fl-heading .fl-heading-text *,
.fl-node-om09incv2f5t h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-om09incv2f5t.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	font-variant: normal;
}
@media(max-width: 992px) {
	.fl-node-om09incv2f5t.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-om09incv2f5t > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-1vi2rtndazqp .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-1vi2rtndazqp .fl-separator {
										max-width: 33%;
										margin: auto;
					}
	}
		 .fl-node-1vi2rtndazqp > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-row .fl-col .fl-node-cjtyv9si4d08 h2.fl-heading a,
.fl-row .fl-col .fl-node-cjtyv9si4d08 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-cjtyv9si4d08 h2.fl-heading .fl-heading-text *,
.fl-node-cjtyv9si4d08 h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-cjtyv9si4d08.fl-module-heading .fl-heading {
	font-weight: 500;
	font-size: 44px;
}
@media(max-width: 992px) {
	.fl-node-cjtyv9si4d08.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-cjtyv9si4d08 > .fl-module-content {
	margin-top:10px;
}
	.fl-builder-content .fl-node-jgw48nsuxkc2 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-jgw48nsuxkc2 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-jgw48nsuxkc2 .fl-rich-text, .fl-builder-content .fl-node-jgw48nsuxkc2 .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-jgw48nsuxkc2 .fl-rich-text, .fl-builder-content .fl-node-jgw48nsuxkc2 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-jgw48nsuxkc2 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-rtz2laoxbcn7 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-z91tqjdn4hu7 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-z91tqjdn4hu7 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-z91tqjdn4hu7 .fl-rich-text, .fl-builder-content .fl-node-z91tqjdn4hu7 .fl-rich-text *:not(b, strong) {
	font-weight: 700;
	font-size: 30px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-z91tqjdn4hu7 .fl-rich-text, .fl-builder-content .fl-node-z91tqjdn4hu7 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-z91tqjdn4hu7 > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-dtih2aley4n5 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-dtih2aley4n5 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-dtih2aley4n5 .fl-rich-text, .fl-builder-content .fl-node-dtih2aley4n5 .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-dtih2aley4n5 .fl-rich-text, .fl-builder-content .fl-node-dtih2aley4n5 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-dtih2aley4n5 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

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

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

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












.fl-node-xwkdoh0ea6jr .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-xwkdoh0ea6jr .fl-button-wrap a.fl-button {
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 20px;
	padding-left: 35px;
}
.fl-builder-content .fl-node-xwkdoh0ea6jr a.fl-button, .fl-builder-content .fl-node-xwkdoh0ea6jr 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-xwkdoh0ea6jr a.fl-button:hover, .fl-builder-content .fl-node-xwkdoh0ea6jr 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-xwkdoh0ea6jr .fl-button-wrap {
		text-align: center;
	}
}
.fl-row .fl-col .fl-node-7rexwopin6uf h3.fl-heading a,
.fl-row .fl-col .fl-node-7rexwopin6uf h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-7rexwopin6uf h3.fl-heading .fl-heading-text *,
.fl-node-7rexwopin6uf h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-7rexwopin6uf.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	font-variant: normal;
}
@media(max-width: 992px) {
	.fl-node-7rexwopin6uf.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-7rexwopin6uf > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-90rgoe6l4y3q .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-90rgoe6l4y3q .fl-separator {
													margin: auto;
					}
	}
	 .fl-node-90rgoe6l4y3q > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-row .fl-col .fl-node-ewv1gd0sb45k h2.fl-heading a,
.fl-row .fl-col .fl-node-ewv1gd0sb45k h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ewv1gd0sb45k h2.fl-heading .fl-heading-text *,
.fl-node-ewv1gd0sb45k h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-ewv1gd0sb45k.fl-module-heading .fl-heading {
	font-weight: 500;
	font-size: 44px;
}
@media(max-width: 992px) {
	.fl-node-ewv1gd0sb45k.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-ewv1gd0sb45k > .fl-module-content {
	margin-top:10px;
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }.fl-node-7bil4n61uxm2 .fl-icon i,
.fl-node-7bil4n61uxm2 .fl-icon i:before {
	color: #39b4e7;
}




.fl-node-7bil4n61uxm2 .fl-icon i, .fl-node-7bil4n61uxm2 .fl-icon i:before {
	font-size: 50px;
}
.fl-node-7bil4n61uxm2 .fl-icon-wrap .fl-icon-text {
	height: 87.5px;
}
.fl-node-7bil4n61uxm2.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-7bil4n61uxm2 .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-7bil4n61uxm2 .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-7bil4n61uxm2 .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
 .fl-node-7bil4n61uxm2 > .fl-module-content {
	margin-top:5px;
}
@media ( max-width: 768px ) {
 .fl-node-7bil4n61uxm2.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
	.fl-builder-content .fl-node-h1ylo976efuz .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-h1ylo976efuz .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-h1ylo976efuz .fl-rich-text, .fl-builder-content .fl-node-h1ylo976efuz .fl-rich-text *:not(b, strong) {
	font-weight: 600;
	font-size: 18px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-h1ylo976efuz .fl-rich-text, .fl-builder-content .fl-node-h1ylo976efuz .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-h1ylo976efuz > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-h1ylo976efuz.fl-module > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}
.fl-builder-content .fl-node-728a9zn53kbq .fl-rich-text, .fl-builder-content .fl-node-728a9zn53kbq .fl-rich-text *:not(b, strong) {
	font-weight: 300;
	font-size: 18px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-728a9zn53kbq .fl-rich-text, .fl-builder-content .fl-node-728a9zn53kbq .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-728a9zn53kbq > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-728a9zn53kbq.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
.fl-node-fkw320iuy9p8.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	font-variant: normal;
}
@media(max-width: 992px) {
	.fl-node-fkw320iuy9p8.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-fkw320iuy9p8 > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-h4gufri5qtm2 .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-h4gufri5qtm2 .fl-separator {
										max-width: 33%;
										margin: auto;
					}
	}
		 .fl-node-h4gufri5qtm2 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-ck3ised8rymg.fl-module-heading .fl-heading {
	font-weight: 400;
	font-size: 37px;
}
@media(max-width: 992px) {
	.fl-node-ck3ised8rymg.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-ck3ised8rymg > .fl-module-content {
	margin-top:10px;
}
.fl-node-sq49hlwyokvb .fl-photo {
	text-align: center;
}
.fl-node-xk90ohg3dl5r .fl-photo {
	text-align: center;
}
.fl-node-h25mi7byvlfs .fl-photo {
	text-align: center;
}
.fl-node-rd9f180uxyn2 .fl-photo {
	text-align: center;
}
.fl-node-mjylvzr10p5e .fl-photo {
	text-align: center;
}
.fl-row .fl-col .fl-node-i0avo12p3g5j h4.fl-heading a,
.fl-row .fl-col .fl-node-i0avo12p3g5j h4.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-i0avo12p3g5j h4.fl-heading .fl-heading-text *,
.fl-node-i0avo12p3g5j h4.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-i0avo12p3g5j.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 16px;
	text-align: left;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-node-i0avo12p3g5j.fl-module-heading .fl-heading {
		text-align: center;
	}
}
 .fl-node-i0avo12p3g5j > .fl-module-content {
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-ot2mpse9lrci h3.fl-heading a,
.fl-row .fl-col .fl-node-ot2mpse9lrci h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ot2mpse9lrci h3.fl-heading .fl-heading-text *,
.fl-node-ot2mpse9lrci h3.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-ot2mpse9lrci.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 56px;
	text-align: left;
	text-transform: capitalize;
}
@media(max-width: 992px) {
	.fl-node-ot2mpse9lrci.fl-module-heading .fl-heading {
		font-size: 36px;
		text-align: center;
	}
}
 .fl-node-ot2mpse9lrci > .fl-module-content {
	margin-top:0px;
	margin-right:100px;
}
@media ( max-width: 992px ) {
 .fl-node-ot2mpse9lrci.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
/* 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-e60cam7342fd .fl-icon i,
.fl-node-e60cam7342fd .fl-icon i:before {
	color: #91f2e9;
}




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

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

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

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












.fl-node-qdvlz7f18ohb .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-qdvlz7f18ohb .fl-button-wrap a.fl-button {
	padding-top: 20px;
	padding-right: 40px;
	padding-bottom: 20px;
	padding-left: 40px;
}
.fl-builder-content .fl-node-qdvlz7f18ohb a.fl-button, .fl-builder-content .fl-node-qdvlz7f18ohb 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-qdvlz7f18ohb a.fl-button:hover, .fl-builder-content .fl-node-qdvlz7f18ohb 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-qdvlz7f18ohb .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);
}
/* 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-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-jyb80zxkicdf .fl-row-content {
				min-width: 0px;
			}
		
        
        
        			.fl-node-v8s3aikbw5dc .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-03wz8thf7dlo .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-fq6xgz42td5p .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-tiqga5dx9p68 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-nw1v4th75ixb .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-wk8da1ui3gfj .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-f82as05hjli3 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-qsya9trupjbx .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-0znfbhemc9it .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-smvtx24lfjg9 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-qrlximcupsvt .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-ikn37t0jyqhp .fl-row-content {
				min-width: 0px;
			}
		