/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

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

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

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

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

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

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Default button colors for non Beaver Builder themes.
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content .fl-button:is(a, button) *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}@media (max-width: 1199px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 991px) { /* Columns
------------------------------------------------------ */

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1320px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 12px;
	margin-right: 12px;
	margin-bottom: 12px;
	margin-left: 12px;
}
.page .page-title, .single-fl-builder-template .page-title { display:none; }





.fl-node-qbcyrofup7n9 > .fl-row-content-wrap {
	background-color: #1F2A5C;
}
 .fl-node-qbcyrofup7n9 > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-qbcyrofup7n9 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}












.fl-node-27ewxbi196uz > .fl-row-content-wrap {
	background-color: #1F2A5C;
}
 .fl-node-27ewxbi196uz > .fl-row-content-wrap {
	padding-top:32px;
	padding-bottom:32px;
}






.fl-node-6n5fraksl2du > .fl-row-content-wrap {
	background-color: #f2f2f2;
}




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




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




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




.fl-node-lysernka74oc {
	width: 40%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-lysernka74oc {
		width: 97% !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-lysernka74oc > .fl-col-content {
	padding-right:28px;
}
@media ( max-width: 991px ) {
 .fl-node-lysernka74oc.fl-col > .fl-col-content {
	padding-right:0px;
}
}




.fl-node-wubpk7q6jvyl {
	width: 70%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-wubpk7q6jvyl {
		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-5yl6awdrtnpm {
	width: 60%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-5yl6awdrtnpm {
		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-5yl6awdrtnpm > .fl-col-content {
	padding-left:28px;
}
@media ( max-width: 991px ) {
 .fl-node-5yl6awdrtnpm.fl-col > .fl-col-content {
	padding-left:0px;
}
}




.fl-node-ysr6mwt3do07 {
	width: 30%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-ysr6mwt3do07 {
		width: 0% !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-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col h2.fl-node-3p0uha4mf5yd,
		.fl-row .fl-col h2.fl-node-3p0uha4mf5yd a,
		h2.fl-node-3p0uha4mf5yd,
		h2.fl-node-3p0uha4mf5yd a {
	color: #1F2A5C;
}
 .fl-node-3p0uha4mf5yd.fl-module-heading {
	margin-bottom:16px;
}
@media (max-width: 767px) { .fl-node-3p0uha4mf5yd.fl-module-heading { margin-bottom:12px; } }.fl-module-box:before,
.fl-module-box:after {
	position: absolute;
}
a.fl-module-box {
	text-decoration: none;
}

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

/* Ensure child modules size properly */
:where(.fl-module-box) { 
    min-width: 0;
}
.fl-builder-content-6051 .fl-node-gbntcqhaw8rk {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
:where( .fl-builder-content-6051 .fl-node-gbntcqhaw8rk > :not( .fl-block-overlay, .fl-drop-target ) ) {
	flex-basis: 0px;
}
@media(max-width: 767px) {
	:where( .fl-builder-content-6051 .fl-node-gbntcqhaw8rk > :not( .fl-block-overlay, .fl-drop-target ) ) {
		width: 100%;
	}
}
@media (max-width: 767px) { .fl-module-icon {
	text-align: center;
}
 }.fl-node-9m6a178nwzex .fl-icon i,
.fl-node-9m6a178nwzex .fl-icon i:before {
	color: #43c4dc;
}




.fl-node-9m6a178nwzex .fl-icon i, .fl-node-9m6a178nwzex .fl-icon i:before {
	font-size: 27px;
}
.fl-node-9m6a178nwzex .fl-icon-wrap .fl-icon-text {
	height: 47.25px;
}
.fl-node-9m6a178nwzex.fl-module-icon {
	text-align: left;
}
@media(max-width: 1199px) {
	.fl-node-9m6a178nwzex .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 991px) {
	.fl-node-9m6a178nwzex .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 767px) {
	.fl-node-9m6a178nwzex .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
img.mfp-img {
    padding-bottom: 40px !important;
}

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

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

@media (max-width: 767px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-c1tmil37rzyk, .fl-node-c1tmil37rzyk .fl-photo {
	text-align: left;
}
.fl-node-c1tmil37rzyk .fl-photo-content, .fl-node-c1tmil37rzyk .fl-photo-img {
	width: 200px;
}
.fl-row .fl-col h2.fl-node-j502ln96vuh3,
		.fl-row .fl-col h2.fl-node-j502ln96vuh3 a,
		h2.fl-node-j502ln96vuh3,
		h2.fl-node-j502ln96vuh3 a {
	color: #1F2A5C;
}
.fl-node-j502ln96vuh3.fl-module-heading, .fl-node-j502ln96vuh3.fl-module-heading :where(a, q, p, span) {
	text-transform: capitalize;
}
.fl-builder-content-6051 .fl-node-7ajwfmcux413 {
	display: flex;
	flex-direction: column;
	gap: 0px;
}
.fl-node-2iq6puztla5k, .fl-node-2iq6puztla5k .fl-photo {
	text-align: center;
}
.fl-node-2iq6puztla5k .fl-photo-img {
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
.fl-node-zyibwnsqd14k, .fl-node-zyibwnsqd14k .fl-photo {
	text-align: center;
}
.fl-node-zyibwnsqd14k .fl-photo-img {
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
.fl-node-r2obam1pj9dl, .fl-node-r2obam1pj9dl .fl-photo {
	text-align: center;
}
.fl-node-r2obam1pj9dl .fl-photo-img {
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
.fl-node-ajz82qd6k5nv, .fl-node-ajz82qd6k5nv .fl-photo {
	text-align: center;
}
.fl-node-ajz82qd6k5nv .fl-photo-img {
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
.fl-node-mtzi21ex9apo, .fl-node-mtzi21ex9apo .fl-photo {
	text-align: center;
}
.fl-node-mtzi21ex9apo .fl-photo-img {
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
.fl-builder-content-6051 .fl-node-480gc1tpx3bl {
	display: flex;
	flex-direction: row;
	align-items: start;
	gap: 48px;
}
@media(max-width: 991px) {
	.fl-builder-content-6051 .fl-node-480gc1tpx3bl {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
}
.fl-row .fl-col h2.fl-node-em65c2wq8zap,
		.fl-row .fl-col h2.fl-node-em65c2wq8zap a,
		h2.fl-node-em65c2wq8zap,
		h2.fl-node-em65c2wq8zap a {
	color: #ffffff;
}
.fl-node-em65c2wq8zap.fl-module-heading, .fl-node-em65c2wq8zap.fl-module-heading :where(a, q, p, span) {
	text-transform: capitalize;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
	.fl-builder-content .fl-node-awnjk6sqyc15.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-awnjk6sqyc15.fl-module-rich-text.fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-awnjk6sqyc15.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-awnjk6sqyc15.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
.fl-node-6f1qtno0vijg .fl-icon i,
.fl-node-6f1qtno0vijg .fl-icon i:before {
	color: #43c4dc;
}




.fl-node-6f1qtno0vijg .fl-icon i, .fl-node-6f1qtno0vijg .fl-icon i:before {
	font-size: 27px;
}
.fl-node-6f1qtno0vijg .fl-icon-wrap .fl-icon-text {
	height: 47.25px;
}
.fl-node-6f1qtno0vijg.fl-module-icon {
	text-align: left;
}
@media(max-width: 1199px) {
	.fl-node-6f1qtno0vijg .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 991px) {
	.fl-node-6f1qtno0vijg .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 767px) {
	.fl-node-6f1qtno0vijg .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
.fl-builder-content-6051 .fl-node-ygwmcf5sl40q {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.fl-node-uvsxrk184qf2 .fl-icon i,
.fl-node-uvsxrk184qf2 .fl-icon i:before {
	color: #43c4dc;
}




.fl-node-uvsxrk184qf2 .fl-icon i, .fl-node-uvsxrk184qf2 .fl-icon i:before {
	font-size: 27px;
}
.fl-node-uvsxrk184qf2 .fl-icon-wrap .fl-icon-text {
	height: 47.25px;
}
.fl-node-uvsxrk184qf2.fl-module-icon {
	text-align: left;
}
@media(max-width: 1199px) {
	.fl-node-uvsxrk184qf2 .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 991px) {
	.fl-node-uvsxrk184qf2 .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 767px) {
	.fl-node-uvsxrk184qf2 .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
.fl-node-ogn1tzqblvky .fl-icon i,
.fl-node-ogn1tzqblvky .fl-icon i:before {
	color: #43c4dc;
}




.fl-node-ogn1tzqblvky .fl-icon i, .fl-node-ogn1tzqblvky .fl-icon i:before {
	font-size: 27px;
}
.fl-node-ogn1tzqblvky .fl-icon-wrap .fl-icon-text {
	height: 47.25px;
}
.fl-node-ogn1tzqblvky.fl-module-icon {
	text-align: left;
}
@media(max-width: 1199px) {
	.fl-node-ogn1tzqblvky .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 991px) {
	.fl-node-ogn1tzqblvky .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 767px) {
	.fl-node-ogn1tzqblvky .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
.fl-node-v5dxzpso614n .fl-icon i,
.fl-node-v5dxzpso614n .fl-icon i:before {
	color: #43c4dc;
}




.fl-node-v5dxzpso614n .fl-icon i, .fl-node-v5dxzpso614n .fl-icon i:before {
	font-size: 27px;
}
.fl-node-v5dxzpso614n .fl-icon-wrap .fl-icon-text {
	height: 47.25px;
}
.fl-node-v5dxzpso614n.fl-module-icon {
	text-align: left;
}
@media(max-width: 1199px) {
	.fl-node-v5dxzpso614n .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 991px) {
	.fl-node-v5dxzpso614n .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 767px) {
	.fl-node-v5dxzpso614n .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
.fl-node-is146oy2hxdv .fl-icon i,
.fl-node-is146oy2hxdv .fl-icon i:before {
	color: #43c4dc;
}




.fl-node-is146oy2hxdv .fl-icon i, .fl-node-is146oy2hxdv .fl-icon i:before {
	font-size: 27px;
}
.fl-node-is146oy2hxdv .fl-icon-wrap .fl-icon-text {
	height: 47.25px;
}
.fl-node-is146oy2hxdv.fl-module-icon {
	text-align: left;
}
@media(max-width: 1199px) {
	.fl-node-is146oy2hxdv .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 991px) {
	.fl-node-is146oy2hxdv .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
@media(max-width: 767px) {
	.fl-node-is146oy2hxdv .fl-icon-wrap .fl-icon-text {
		height: 47.25px;
	}
}
.fl-row .fl-col h1.fl-node-c3wvo6gl8jh1,
		.fl-row .fl-col h1.fl-node-c3wvo6gl8jh1 a,
		h1.fl-node-c3wvo6gl8jh1,
		h1.fl-node-c3wvo6gl8jh1 a {
	color: #43c4dc;
}
.fl-node-c3wvo6gl8jh1.fl-module-heading, .fl-node-c3wvo6gl8jh1.fl-module-heading :where(a, q, p, span) {
	text-transform: capitalize;
}
.fl-row .fl-col h5.fl-node-a0q69y3kjgp8,
		.fl-row .fl-col h5.fl-node-a0q69y3kjgp8 a,
		h5.fl-node-a0q69y3kjgp8,
		h5.fl-node-a0q69y3kjgp8 a {
	color: #1F2A5C;
}
.fl-node-a0q69y3kjgp8.fl-module-heading, .fl-node-a0q69y3kjgp8.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
}
.fl-builder-content-6051 .fl-node-qnk9vz3g1dsl {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
:where( .fl-builder-content-6051 .fl-node-qnk9vz3g1dsl > :not( .fl-block-overlay, .fl-drop-target ) ) {
	flex-basis: 0px;
}
.fl-row .fl-col h5.fl-node-ndbzrhespyma,
		.fl-row .fl-col h5.fl-node-ndbzrhespyma a,
		h5.fl-node-ndbzrhespyma,
		h5.fl-node-ndbzrhespyma a {
	color: #1F2A5C;
}
.fl-node-ndbzrhespyma.fl-module-heading, .fl-node-ndbzrhespyma.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
}
.fl-builder-content-6051 .fl-node-2jmbnzw13tlk {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-template-rows: repeat(0,1fr);
	flex-direction: row;
	row-gap: 32px;
	column-gap: 32px;
}
@media(max-width: 991px) {
	.fl-builder-content-6051 .fl-node-2jmbnzw13tlk {
		grid-template-columns: repeat(3,1fr);
	}
}
@media(max-width: 767px) {
	.fl-builder-content-6051 .fl-node-2jmbnzw13tlk {
		grid-template-columns: repeat(2,1fr);
	}
}
 .fl-node-2jmbnzw13tlk.fl-module-box {
	margin-top:56px;
}
@media (max-width: 767px) { .fl-node-2jmbnzw13tlk.fl-module-box { margin-top:12px; } }.fl-builder-content .fl-node-uk3amjvitnx0.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-uk3amjvitnx0.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 18px;
}
.fl-row .fl-col h5.fl-node-3lc7kbo15xmq,
		.fl-row .fl-col h5.fl-node-3lc7kbo15xmq a,
		h5.fl-node-3lc7kbo15xmq,
		h5.fl-node-3lc7kbo15xmq a {
	color: #1F2A5C;
}
 .fl-node-3lc7kbo15xmq.fl-module-heading {
	margin-top:16px;
}
@media (max-width: 767px) { .fl-node-3lc7kbo15xmq.fl-module-heading { margin-top:12px; } }.fl-row .fl-col h5.fl-node-ji1wlt9m47z3,
		.fl-row .fl-col h5.fl-node-ji1wlt9m47z3 a,
		h5.fl-node-ji1wlt9m47z3,
		h5.fl-node-ji1wlt9m47z3 a {
	color: #1F2A5C;
}
 .fl-node-ji1wlt9m47z3.fl-module-heading {
	margin-top:16px;
}
@media (max-width: 767px) { .fl-node-ji1wlt9m47z3.fl-module-heading { margin-top:12px; } }.fl-builder-content-6051 .fl-node-8bap51jzedug {
	display: flex;
	flex-direction: column;
	gap: 0px;
}
.fl-row .fl-col h5.fl-node-q8j5zlfwkoc9,
		.fl-row .fl-col h5.fl-node-q8j5zlfwkoc9 a,
		h5.fl-node-q8j5zlfwkoc9,
		h5.fl-node-q8j5zlfwkoc9 a {
	color: #1F2A5C;
}
 .fl-node-q8j5zlfwkoc9.fl-module-heading {
	margin-top:16px;
}
@media (max-width: 767px) { .fl-node-q8j5zlfwkoc9.fl-module-heading { margin-top:12px; } }.fl-row .fl-col h5.fl-node-a1oi69czphx8,
		.fl-row .fl-col h5.fl-node-a1oi69czphx8 a,
		h5.fl-node-a1oi69czphx8,
		h5.fl-node-a1oi69czphx8 a {
	color: #1F2A5C;
}
 .fl-node-a1oi69czphx8.fl-module-heading {
	margin-top:16px;
}
@media (max-width: 767px) { .fl-node-a1oi69czphx8.fl-module-heading { margin-top:12px; } }.fl-row .fl-col h5.fl-node-v3sqhez0xmgi,
		.fl-row .fl-col h5.fl-node-v3sqhez0xmgi a,
		h5.fl-node-v3sqhez0xmgi,
		h5.fl-node-v3sqhez0xmgi a {
	color: #1F2A5C;
}
 .fl-node-v3sqhez0xmgi.fl-module-heading {
	margin-top:16px;
}
@media (max-width: 767px) { .fl-node-v3sqhez0xmgi.fl-module-heading { margin-top:12px; } }@media (max-width: 767px) { .fl-module-button .fl-button-left,
.fl-module-button .fl-button-right {
	text-align: center;
} }.fl-builder-content .fl-node-5q6hrb4iaumj a.fl-button {
	}
.fl-builder-content-6051 .fl-node-e6i3u159fdat {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.fl-builder-content .fl-node-qudwl1rv9m7j.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-qudwl1rv9m7j.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
.fl-row .fl-col h5.fl-node-f86lwe13imqv,
		.fl-row .fl-col h5.fl-node-f86lwe13imqv a,
		h5.fl-node-f86lwe13imqv,
		h5.fl-node-f86lwe13imqv a {
	color: #1F2A5C;
}
.fl-node-f86lwe13imqv.fl-module-heading, .fl-node-f86lwe13imqv.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
}
.fl-row .fl-col h5.fl-node-hfcrlxiz4djv,
		.fl-row .fl-col h5.fl-node-hfcrlxiz4djv a,
		h5.fl-node-hfcrlxiz4djv,
		h5.fl-node-hfcrlxiz4djv a {
	color: #1F2A5C;
}
.fl-node-hfcrlxiz4djv.fl-module-heading, .fl-node-hfcrlxiz4djv.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
}
.fl-builder-content-6051 .fl-node-6j2kow9cse74 {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.fl-row .fl-col h5.fl-node-mow9rep7gzb3,
		.fl-row .fl-col h5.fl-node-mow9rep7gzb3 a,
		h5.fl-node-mow9rep7gzb3,
		h5.fl-node-mow9rep7gzb3 a {
	color: #1F2A5C;
}
.fl-node-mow9rep7gzb3.fl-module-heading, .fl-node-mow9rep7gzb3.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
}
.fl-row .fl-col h5.fl-node-l9abugz1eo3v,
		.fl-row .fl-col h5.fl-node-l9abugz1eo3v a,
		h5.fl-node-l9abugz1eo3v,
		h5.fl-node-l9abugz1eo3v a {
	color: #1F2A5C;
}
.fl-node-l9abugz1eo3v.fl-module-heading, .fl-node-l9abugz1eo3v.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
}
	.fl-builder-content .fl-node-126zivd3kamf.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-126zivd3kamf.fl-module-rich-text.fl-rich-text * {
		color: #A7A9AB;
	}
	.fl-builder-content-6051 .fl-node-3cso4i5bnkdy {
	display: flex;
	flex-direction: row;
	gap: 32px;
}
@media(max-width: 991px) {
	.fl-builder-content-6051 .fl-node-3cso4i5bnkdy {
		display: flex;
		flex-direction: row;
	}
	:where( .fl-builder-content-6051 .fl-node-3cso4i5bnkdy > :not( .fl-block-overlay, .fl-drop-target ) ) {
		flex-basis: 50%;
		width: 54%;
	}
}
@media(max-width: 767px) {
	.fl-builder-content-6051 .fl-node-3cso4i5bnkdy {
		display: flex;
		flex-direction: column;
	}
	:where( .fl-builder-content-6051 .fl-node-3cso4i5bnkdy > :not( .fl-block-overlay, .fl-drop-target ) ) {
		flex-basis: 100%;
		width: 100%;
	}
}
.fl-builder-content .fl-node-ptm5can1wg3b.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-ptm5can1wg3b.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
.fl-builder-content .fl-node-jwrl4pcb7601.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-jwrl4pcb7601.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
.fl-row .fl-col h6.fl-node-cme76ivjhgzl,
		.fl-row .fl-col h6.fl-node-cme76ivjhgzl a,
		h6.fl-node-cme76ivjhgzl,
		h6.fl-node-cme76ivjhgzl a {
	color: #A7A9AB;
}
.fl-node-cme76ivjhgzl.fl-module-heading, .fl-node-cme76ivjhgzl.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
}
.fl-builder-content-6051 .fl-node-xego482sau93 {
	display: flex;
	flex-direction: column;
	gap: 0px;
}
.fl-row .fl-col h6.fl-node-nbe5ujw2riv9,
		.fl-row .fl-col h6.fl-node-nbe5ujw2riv9 a,
		h6.fl-node-nbe5ujw2riv9,
		h6.fl-node-nbe5ujw2riv9 a {
	color: #A7A9AB;
}
.fl-node-nbe5ujw2riv9.fl-module-heading, .fl-node-nbe5ujw2riv9.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
}
.fl-row .fl-col h6.fl-node-ymfn523vr71d,
		.fl-row .fl-col h6.fl-node-ymfn523vr71d a,
		h6.fl-node-ymfn523vr71d,
		h6.fl-node-ymfn523vr71d a {
	color: #A7A9AB;
}
.fl-node-ymfn523vr71d.fl-module-heading, .fl-node-ymfn523vr71d.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
}
.fl-row .fl-col h6.fl-node-1hl0oq3t2piz,
		.fl-row .fl-col h6.fl-node-1hl0oq3t2piz a,
		h6.fl-node-1hl0oq3t2piz,
		h6.fl-node-1hl0oq3t2piz a {
	color: #A7A9AB;
}
.fl-node-1hl0oq3t2piz.fl-module-heading, .fl-node-1hl0oq3t2piz.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
}
.fl-row .fl-col h6.fl-node-vkj9nhrou3ca,
		.fl-row .fl-col h6.fl-node-vkj9nhrou3ca a,
		h6.fl-node-vkj9nhrou3ca,
		h6.fl-node-vkj9nhrou3ca a {
	color: #A7A9AB;
}
.fl-node-vkj9nhrou3ca.fl-module-heading, .fl-node-vkj9nhrou3ca.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
}
.fl-node-8eb1fq4w7xjo, .fl-node-8eb1fq4w7xjo .fl-photo {
	text-align: center;
}
.fl-builder-content-6051 .fl-node-0m81nud3ev24 {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.fl-builder-content .fl-node-0hkqv1uwmr3e.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-0hkqv1uwmr3e.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
.fl-builder-content .fl-node-ml8c26dih1kf.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-ml8c26dih1kf.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
.fl-builder-content .fl-node-62nrpioufm98.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-62nrpioufm98.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
.fl-builder-content-6051 .fl-node-516q4tncojs8 {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.fl-builder-content .fl-node-e3gq9zkhcxfv.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-e3gq9zkhcxfv.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
.fl-row .fl-col h6.fl-node-95yjnifkhpxd,
		.fl-row .fl-col h6.fl-node-95yjnifkhpxd a,
		h6.fl-node-95yjnifkhpxd,
		h6.fl-node-95yjnifkhpxd a {
	color: #A7A9AB;
}
.fl-node-95yjnifkhpxd.fl-module-heading, .fl-node-95yjnifkhpxd.fl-module-heading :where(a, q, p, span) {
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
}
 .fl-node-95yjnifkhpxd.fl-module-heading {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col h6.fl-node-aemst9yoblv4,
		.fl-row .fl-col h6.fl-node-aemst9yoblv4 a,
		h6.fl-node-aemst9yoblv4,
		h6.fl-node-aemst9yoblv4 a {
	color: #A7A9AB;
}
.fl-node-aemst9yoblv4.fl-module-heading, .fl-node-aemst9yoblv4.fl-module-heading :where(a, q, p, span) {
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
}
 .fl-node-aemst9yoblv4.fl-module-heading {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col h6.fl-node-qhdubc403aok,
		.fl-row .fl-col h6.fl-node-qhdubc403aok a,
		h6.fl-node-qhdubc403aok,
		h6.fl-node-qhdubc403aok a {
	color: #A7A9AB;
}
.fl-node-qhdubc403aok.fl-module-heading, .fl-node-qhdubc403aok.fl-module-heading :where(a, q, p, span) {
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
}
 .fl-node-qhdubc403aok.fl-module-heading {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-builder-content-6051 .fl-node-jawpr9q6yxgs {
	display: flex;
	flex-direction: column;
	gap: 0px;
}
.fl-row .fl-col h6.fl-node-odx6qgr19mc3,
		.fl-row .fl-col h6.fl-node-odx6qgr19mc3 a,
		h6.fl-node-odx6qgr19mc3,
		h6.fl-node-odx6qgr19mc3 a {
	color: #A7A9AB;
}
.fl-node-odx6qgr19mc3.fl-module-heading, .fl-node-odx6qgr19mc3.fl-module-heading :where(a, q, p, span) {
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
}
 .fl-node-odx6qgr19mc3.fl-module-heading {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col h6.fl-node-m5pwod0zqifa,
		.fl-row .fl-col h6.fl-node-m5pwod0zqifa a,
		h6.fl-node-m5pwod0zqifa,
		h6.fl-node-m5pwod0zqifa a {
	color: #A7A9AB;
}
.fl-node-m5pwod0zqifa.fl-module-heading, .fl-node-m5pwod0zqifa.fl-module-heading :where(a, q, p, span) {
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
}
 .fl-node-m5pwod0zqifa.fl-module-heading {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-builder-content-6051 .fl-node-5r0v76hzloap {
	display: flex;
	flex-direction: row;
	gap: 32px;
}
:where( .fl-builder-content-6051 .fl-node-5r0v76hzloap > :not( .fl-block-overlay, .fl-drop-target ) ) {
	width: 50%;
}
@media(max-width: 767px) {
	.fl-builder-content-6051 .fl-node-5r0v76hzloap {
		display: flex;
		flex-direction: column;
	}
	:where( .fl-builder-content-6051 .fl-node-5r0v76hzloap > :not( .fl-block-overlay, .fl-drop-target ) ) {
		width: 100%;
	}
}
.fl-node-lwyix2kqahc0, .fl-node-lwyix2kqahc0 .fl-photo {
	text-align: right;
}
.fl-node-lwyix2kqahc0 .fl-photo-img {
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
}
@media(max-width: 991px) {
	.fl-node-lwyix2kqahc0 .fl-photo-img {
		border-top-left-radius: 24px;
		border-top-right-radius: 24px;
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
	}
}
 .fl-node-lwyix2kqahc0.fl-module-photo {
	margin-right:0px;
}
@media ( max-width: 991px ) {
 .fl-node-lwyix2kqahc0.fl-module-photo.fl-module {
	margin-right:12px;
}
}
	.fl-builder-content .fl-node-54e7lv9sx312.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-54e7lv9sx312.fl-module-rich-text.fl-rich-text * {
		color: #000000;
	}
	.fl-builder-content .fl-node-54e7lv9sx312.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-54e7lv9sx312.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-54e7lv9sx312.fl-module-rich-text {
	margin-top:16px;
}
@media (max-width: 767px) { .fl-node-54e7lv9sx312.fl-module-rich-text { margin-top:12px; } }	.fl-builder-content .fl-node-ugxjap5fyo9n.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-ugxjap5fyo9n.fl-module-rich-text.fl-rich-text * {
		color: #000000;
	}
	.fl-builder-content .fl-node-ugxjap5fyo9n.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-ugxjap5fyo9n.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-ugxjap5fyo9n.fl-module-rich-text {
	margin-top:16px;
}
@media (max-width: 767px) { .fl-node-ugxjap5fyo9n.fl-module-rich-text { margin-top:12px; } }	.fl-builder-content .fl-node-yuxelb25sgj9.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-yuxelb25sgj9.fl-module-rich-text.fl-rich-text * {
		color: #000000;
	}
	.fl-builder-content .fl-node-yuxelb25sgj9.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-yuxelb25sgj9.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-yuxelb25sgj9.fl-module-rich-text {
	margin-top:16px;
}
@media (max-width: 767px) { .fl-node-yuxelb25sgj9.fl-module-rich-text { margin-top:12px; } }	.fl-builder-content .fl-node-tuhorsvg593b.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-tuhorsvg593b.fl-module-rich-text.fl-rich-text * {
		color: #000000;
	}
	.fl-builder-content .fl-node-tuhorsvg593b.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-tuhorsvg593b.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-tuhorsvg593b.fl-module-rich-text {
	margin-top:16px;
}
@media (max-width: 767px) { .fl-node-tuhorsvg593b.fl-module-rich-text { margin-top:12px; } }.fl-builder-content-6051 .fl-node-wdlnceja6fyv {
	display: flex;
	flex-direction: column;
	gap: 0px;
}
	.fl-builder-content .fl-node-whexpaz167bm.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-whexpaz167bm.fl-module-rich-text.fl-rich-text * {
		color: #000000;
	}
	.fl-builder-content .fl-node-whexpaz167bm.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-whexpaz167bm.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-whexpaz167bm.fl-module-rich-text {
	margin-top:16px;
}
@media (max-width: 767px) { .fl-node-whexpaz167bm.fl-module-rich-text { margin-top:12px; } }
/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

@media (min-width: 767px) {
  .fl-node-em65c2wq8zap {
    width: 20%;
  }
}

                                
        
                                
        
                                
        
                                
        
        .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-vbcyas57ujow .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-27ewxbi196uz .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6n5fraksl2du .fl-row-content {
				min-width: 0px;
			}
		