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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 1154px;
}
.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: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
:root {
	--fl-global-text-color: #1E1E1E;
	--fl-global-text-font-family: Inter, sans-serif;
	--fl-global-text-font-weight: 400;
	--fl-global-text-font-size: 14px;
	--fl-global-h1-font-family: Inter, sans-serif;
	--fl-global-h1-font-weight: 700;
	--fl-global-h1-font-size: 30px;
	--fl-global-h2-font-family: Inter, sans-serif;
	--fl-global-h2-font-weight: 700;
	--fl-global-h2-font-size: 25px;
	--fl-global-h3-font-family: Inter, sans-serif;
	--fl-global-h3-font-weight: 700;
	--fl-global-h3-font-size: 20px;
	--fl-global-link-hover-color: #3AC4F2;
	--fl-global-button-background: #113A62;
	--fl-global-button-hover-background: #3AC4F2;
	--fl-global-button-font-family: Inter, sans-serif;
	--fl-global-button-font-weight: 700;
	--fl-global-button-font-size: 14px;
	--fl-global-button-border-style: none;
	--fl-global-button-background-clip: border-box;
	--fl-global-button-border-top-left-radius: 60px;
	--fl-global-button-border-top-right-radius: 60px;
	--fl-global-button-border-bottom-left-radius: 60px;
	--fl-global-button-border-bottom-right-radius: 60px;
}
.fl-builder-content:not(.fl-builder-empty) {
	color: #1E1E1E;
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-builder-content h1 {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 30px;
}
.fl-builder-content h2 {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
}
.fl-builder-content h3 {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 20px;
}
.fl-builder-content a:not(.fl-builder-submenu-link):hover {
	color: #3AC4F2;
}
.fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content .fl-button:is(a, button), .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content .fl-button:is(a, button), .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
	background-color: #113A62;
}
.fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button):hover, .fl-builder-content input[type=button]:hover, .fl-builder-content input[type=submit]:hover, .fl-builder-content .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button):hover, .fl-page .fl-builder-content input[type=button]:hover, .fl-page .fl-builder-content input[type=submit]:hover, .fl-page .fl-builder-content .fl-button:is(a, button):hover {
	background-color: #3AC4F2;
}
.fl-builder-content button:not(.fl-content-ui-button), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content .fl-button:is(a, button), .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content button:not(.fl-content-ui-button), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content .fl-button:is(a, button), .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 14px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 60px;
	border-top-right-radius: 60px;
	border-bottom-left-radius: 60px;
	border-bottom-right-radius: 60px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





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

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

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-3h76rxu0j9qv.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-3h76rxu0j9qv.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-3h76rxu0j9qv.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-3h76rxu0j9qv > .fl-row-content-wrap {
	background-color: #1D3557eb;
	background-image: url(https://allstarsigns.viewourdesign.info/wp-content/uploads/2025/09/Oceanside-CA-Banner.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-3h76rxu0j9qv.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 350px;
}
.fl-node-3h76rxu0j9qv .fl-row-content {
	max-width: 979px;
}
@media(max-width: 1200px) {
	.fl-node-3h76rxu0j9qv > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 992px) {
	.fl-node-3h76rxu0j9qv > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 768px) {
	.fl-node-3h76rxu0j9qv > .fl-row-content-wrap {
		background-position: center center;
	}
}
 .fl-node-3h76rxu0j9qv > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
@media ( max-width: 1200px ) {
 .fl-node-3h76rxu0j9qv.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}
@media ( max-width: 992px ) {
 .fl-node-3h76rxu0j9qv.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}
@media ( max-width: 768px ) {
 .fl-node-3h76rxu0j9qv.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-sbicugm6p5d0 > .fl-row-content-wrap {
	background-color: rgb(255, 255, 255);
}
@media ( max-width: 768px ) {
 .fl-node-sbicugm6p5d0.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-sbicugm6p5d0 > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-sbicugm6p5d0.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-ni9perbaju3g > .fl-row-content-wrap {
	background-color: rgb(255, 255, 255);
}
@media ( max-width: 768px ) {
 .fl-node-ni9perbaju3g.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-ni9perbaju3g > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:0%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-ni9perbaju3g.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-h9p5xy37uolj > .fl-row-content-wrap {
	background-color: rgb(255, 255, 255);
}
 .fl-node-h9p5xy37uolj > .fl-row-content-wrap {
	margin-top:50px;
}
@media ( max-width: 768px ) {
 .fl-node-h9p5xy37uolj.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-h9p5xy37uolj > .fl-row-content-wrap {
	padding-right:5%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-h9p5xy37uolj.fl-row > .fl-row-content-wrap {
	padding-right:5%;
	padding-left:5%;
}
}






.fl-node-gcn8k40u2hox > .fl-row-content-wrap {
	background-color: rgb(255, 255, 255);
}
@media ( max-width: 768px ) {
 .fl-node-gcn8k40u2hox.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-gcn8k40u2hox > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:0%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-gcn8k40u2hox.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-nl70exmvaw6t > .fl-row-content-wrap {
	background-color: rgb(255, 255, 255);
}
 .fl-node-nl70exmvaw6t > .fl-row-content-wrap {
	margin-top:50px;
}
@media ( max-width: 768px ) {
 .fl-node-nl70exmvaw6t.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-nl70exmvaw6t > .fl-row-content-wrap {
	padding-right:5%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-nl70exmvaw6t.fl-row > .fl-row-content-wrap {
	padding-right:5%;
	padding-left:5%;
}
}






.fl-node-i7enqgrtsczl > .fl-row-content-wrap {
	background-color: rgb(255, 255, 255);
}
 .fl-node-i7enqgrtsczl > .fl-row-content-wrap {
	margin-top:50px;
}
@media ( max-width: 768px ) {
 .fl-node-i7enqgrtsczl.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-i7enqgrtsczl > .fl-row-content-wrap {
	padding-right:5%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-i7enqgrtsczl.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-dim2nr89fgzc > .fl-row-content-wrap {
	background-color: rgb(255, 255, 255);
}
 .fl-node-dim2nr89fgzc > .fl-row-content-wrap {
	margin-top:50px;
}
@media ( max-width: 768px ) {
 .fl-node-dim2nr89fgzc.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-dim2nr89fgzc > .fl-row-content-wrap {
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-dim2nr89fgzc.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-fvz9u526y3s4 > .fl-row-content-wrap {
	background-color: rgb(255, 255, 255);
}
@media ( max-width: 768px ) {
 .fl-node-fvz9u526y3s4.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-fvz9u526y3s4 > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
@media ( max-width: 992px ) {
 .fl-node-fvz9u526y3s4.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}
@media ( max-width: 768px ) {
 .fl-node-fvz9u526y3s4.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-ipy04jv8dorc > .fl-row-content-wrap {
	background-color: #f9f9f9;
}
@media ( max-width: 768px ) {
 .fl-node-ipy04jv8dorc.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-ipy04jv8dorc > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:0%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-ipy04jv8dorc.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-q5chnx3b7twe > .fl-row-content-wrap {
	background-color: #f9f9f9;
}
 .fl-node-q5chnx3b7twe > .fl-row-content-wrap {
	margin-top:50px;
}
@media ( max-width: 768px ) {
 .fl-node-q5chnx3b7twe.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-q5chnx3b7twe > .fl-row-content-wrap {
	padding-right:5%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-q5chnx3b7twe.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-0qgs1xbtm8cn > .fl-row-content-wrap {
	background-color: #f9f9f9;
}
 .fl-node-0qgs1xbtm8cn > .fl-row-content-wrap {
	margin-top:50px;
}
 .fl-node-0qgs1xbtm8cn > .fl-row-content-wrap {
	padding-right:5%;
	padding-bottom:0%;
	padding-left:5%;
}
@media ( max-width: 1200px ) {
 .fl-node-0qgs1xbtm8cn.fl-row > .fl-row-content-wrap {
	padding-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-0qgs1xbtm8cn.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-njy4wzhix7lr > .fl-row-content-wrap {
	background-color: #f9f9f9;
}
 .fl-node-njy4wzhix7lr > .fl-row-content-wrap {
	margin-top:50px;
}
 .fl-node-njy4wzhix7lr > .fl-row-content-wrap {
	padding-right:5%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-njy4wzhix7lr.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-0odszpha1e5j > .fl-row-content-wrap {
	background-color: #f9f9f9;
}
@media ( max-width: 768px ) {
 .fl-node-0odszpha1e5j.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-0odszpha1e5j > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
@media ( max-width: 992px ) {
 .fl-node-0odszpha1e5j.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}
@media ( max-width: 768px ) {
 .fl-node-0odszpha1e5j.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-iszvqgx4elc2 > .fl-row-content-wrap {
	background-color: rgb(255, 255, 255);
}
@media ( max-width: 768px ) {
 .fl-node-iszvqgx4elc2.fl-row > .fl-row-content-wrap {
	margin-bottom:20px;
}
}
 .fl-node-iszvqgx4elc2 > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
@media ( max-width: 992px ) {
 .fl-node-iszvqgx4elc2.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}
@media ( max-width: 768px ) {
 .fl-node-iszvqgx4elc2.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}






.fl-node-8m96jag5b1ci > .fl-row-content-wrap {
	background-color: #f9f9f9;
}
 .fl-node-8m96jag5b1ci > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-8m96jag5b1ci.fl-row > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
}










.fl-node-ukta94mwy65i {
	width: 100%;
}
.fl-animated.fl-fade-in {
	animation: fl-fade-in 1s ease;
	-webkit-animation: fl-fade-in 1s ease;
}
@-webkit-keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}




.fl-node-5pzjmba06idg {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-5pzjmba06idg {
		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-5pzjmba06idg > .fl-col-content {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-5pzjmba06idg.fl-col > .fl-col-content {
	margin-bottom:25px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5pzjmba06idg.fl-col > .fl-col-content {
	margin-bottom:10px;
}
}




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




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




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




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




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




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




.fl-node-vkwdom54cutj {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-vkwdom54cutj {
		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-vkwdom54cutj > .fl-col-content {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-vkwdom54cutj.fl-col > .fl-col-content {
	margin-bottom:25px;
}
}




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




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




.fl-node-8lpgizu5vbfo {
	width: 100%;
}




.fl-node-lbr2kao3x0vj {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-lbr2kao3x0vj {
		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-lbr2kao3x0vj > .fl-col-content {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-lbr2kao3x0vj.fl-col > .fl-col-content {
	margin-bottom:25px;
}
}
@media ( max-width: 768px ) {
 .fl-node-lbr2kao3x0vj.fl-col > .fl-col-content {
	margin-bottom:10px;
}
}




.fl-node-3plkbz9am1o6 {
	width: 100%;
}




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




.fl-node-d8eum96pj2yg {
	width: 100%;
}
@media ( max-width: 768px ) {
 .fl-node-d8eum96pj2yg.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-d8eum96pj2yg.fl-col > .fl-col-content {
	padding-bottom:0px;
}
}




.fl-node-k6qy5o9va1f0 {
	width: 100%;
}
@media ( max-width: 768px ) {
 .fl-node-k6qy5o9va1f0.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-k6qy5o9va1f0.fl-col > .fl-col-content {
	padding-bottom:0px;
}
}




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




.fl-node-m4b8drtqwey7 {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-m4b8drtqwey7 {
		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-m4b8drtqwey7 > .fl-col-content {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-m4b8drtqwey7.fl-col > .fl-col-content {
	margin-bottom:25px;
}
}
@media ( max-width: 768px ) {
 .fl-node-m4b8drtqwey7.fl-col > .fl-col-content {
	margin-bottom:10px;
}
}




.fl-node-41uwd2lgx508 {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-41uwd2lgx508 {
		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-41uwd2lgx508 > .fl-col-content {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-41uwd2lgx508.fl-col > .fl-col-content {
	margin-bottom:25px;
}
}
@media ( max-width: 768px ) {
 .fl-node-41uwd2lgx508.fl-col > .fl-col-content {
	margin-bottom:10px;
}
}




.fl-node-5q2ptfsnr3h1 {
	width: 55%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-5q2ptfsnr3h1 {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media ( max-width: 992px ) {
 .fl-node-5q2ptfsnr3h1.fl-col > .fl-col-content {
	margin-bottom:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5q2ptfsnr3h1.fl-col > .fl-col-content {
	margin-bottom:20px;
}
}
 .fl-node-5q2ptfsnr3h1 > .fl-col-content {
	padding-right:30px;
}
@media ( max-width: 992px ) {
 .fl-node-5q2ptfsnr3h1.fl-col > .fl-col-content {
	padding-right:0px;
}
}




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




.fl-node-tpgbluid3fm8 {
	width: 45%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-tpgbluid3fm8 {
		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-q7ldgkzo02bp {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-q7ldgkzo02bp {
		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-wtap57jeb9qy {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-wtap57jeb9qy {
		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-l0j57f3qpucx {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-l0j57f3qpucx {
		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-l0j57f3qpucx > .fl-col-content {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-l0j57f3qpucx.fl-col > .fl-col-content {
	margin-bottom:50px;
}
}
@media ( max-width: 768px ) {
 .fl-node-l0j57f3qpucx.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
 .fl-node-l0j57f3qpucx > .fl-col-content {
	padding-left:30px;
}
@media ( max-width: 992px ) {
 .fl-node-l0j57f3qpucx.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-l0j57f3qpucx.fl-col > .fl-col-content {
	padding-bottom:0px;
}
}




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




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




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




.fl-node-o46x5mrbsdn2 {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-o46x5mrbsdn2 {
		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-mxwuvhdbo34p {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-mxwuvhdbo34p {
		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-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col h2.fl-node-59wep0t4ihao,
		.fl-row .fl-col h2.fl-node-59wep0t4ihao a,
		h2.fl-node-59wep0t4ihao,
		h2.fl-node-59wep0t4ihao a {
	color: #113A62;
}
.fl-node-59wep0t4ihao.fl-module-heading, .fl-node-59wep0t4ihao.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-59wep0t4ihao.fl-module-heading, .fl-node-59wep0t4ihao.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-59wep0t4ihao.fl-module-heading, .fl-node-59wep0t4ihao.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-59wep0t4ihao.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-59wep0t4ihao.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
.fl-row .fl-col h2.fl-node-9zxaqb451h8k,
		.fl-row .fl-col h2.fl-node-9zxaqb451h8k a,
		h2.fl-node-9zxaqb451h8k,
		h2.fl-node-9zxaqb451h8k a {
	color: #113A62;
}
.fl-node-9zxaqb451h8k.fl-module-heading, .fl-node-9zxaqb451h8k.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-9zxaqb451h8k.fl-module-heading, .fl-node-9zxaqb451h8k.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-9zxaqb451h8k.fl-module-heading, .fl-node-9zxaqb451h8k.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-9zxaqb451h8k.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-9zxaqb451h8k.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
.fl-row .fl-col h2.fl-node-lr18nzbwac23,
		.fl-row .fl-col h2.fl-node-lr18nzbwac23 a,
		h2.fl-node-lr18nzbwac23,
		h2.fl-node-lr18nzbwac23 a {
	color: #113A62;
}
.fl-node-lr18nzbwac23.fl-module-heading, .fl-node-lr18nzbwac23.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-lr18nzbwac23.fl-module-heading, .fl-node-lr18nzbwac23.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-lr18nzbwac23.fl-module-heading, .fl-node-lr18nzbwac23.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-lr18nzbwac23.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-lr18nzbwac23.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
.fl-row .fl-col h2.fl-node-8tar2g53i1ec,
		.fl-row .fl-col h2.fl-node-8tar2g53i1ec a,
		h2.fl-node-8tar2g53i1ec,
		h2.fl-node-8tar2g53i1ec a {
	color: #113A62;
}
.fl-node-8tar2g53i1ec.fl-module-heading, .fl-node-8tar2g53i1ec.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-8tar2g53i1ec.fl-module-heading, .fl-node-8tar2g53i1ec.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-8tar2g53i1ec.fl-module-heading, .fl-node-8tar2g53i1ec.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-8tar2g53i1ec.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-8tar2g53i1ec.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
.fl-row .fl-col h2.fl-node-xvrpz3gims64,
		.fl-row .fl-col h2.fl-node-xvrpz3gims64 a,
		h2.fl-node-xvrpz3gims64,
		h2.fl-node-xvrpz3gims64 a {
	color: #113A62;
}
.fl-node-xvrpz3gims64.fl-module-heading, .fl-node-xvrpz3gims64.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-xvrpz3gims64.fl-module-heading, .fl-node-xvrpz3gims64.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-xvrpz3gims64.fl-module-heading, .fl-node-xvrpz3gims64.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-xvrpz3gims64.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-xvrpz3gims64.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h2.fl-node-v8r70tmlwcas,
		.fl-row .fl-col h2.fl-node-v8r70tmlwcas a,
		h2.fl-node-v8r70tmlwcas,
		h2.fl-node-v8r70tmlwcas a {
	color: #113A62;
}
.fl-node-v8r70tmlwcas.fl-module-heading, .fl-node-v8r70tmlwcas.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-v8r70tmlwcas.fl-module-heading, .fl-node-v8r70tmlwcas.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-v8r70tmlwcas.fl-module-heading, .fl-node-v8r70tmlwcas.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-v8r70tmlwcas.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-v8r70tmlwcas.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h2.fl-node-obai295k3ufc,
		.fl-row .fl-col h2.fl-node-obai295k3ufc a,
		h2.fl-node-obai295k3ufc,
		h2.fl-node-obai295k3ufc a {
	color: #113A62;
}
.fl-node-obai295k3ufc.fl-module-heading, .fl-node-obai295k3ufc.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-obai295k3ufc.fl-module-heading, .fl-node-obai295k3ufc.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-obai295k3ufc.fl-module-heading, .fl-node-obai295k3ufc.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-obai295k3ufc.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-obai295k3ufc.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h2.fl-node-8o931uh0tgjy,
		.fl-row .fl-col h2.fl-node-8o931uh0tgjy a,
		h2.fl-node-8o931uh0tgjy,
		h2.fl-node-8o931uh0tgjy a {
	color: #113A62;
}
.fl-node-8o931uh0tgjy.fl-module-heading, .fl-node-8o931uh0tgjy.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-8o931uh0tgjy.fl-module-heading, .fl-node-8o931uh0tgjy.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-8o931uh0tgjy.fl-module-heading, .fl-node-8o931uh0tgjy.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-8o931uh0tgjy.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-8o931uh0tgjy.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.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;
}

/* Prevent sliders and carousels from blowing out flex layouts */
:where(.fl-module-box:has(
    [class*="slide"],
    [class*="carousel"],
    [class*="swiper"]
)) {
    min-width: 0;
}
.fl-builder-content-10921 .fl-node-2kyz15asfthg {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 30px;
}
:where( .fl-builder-content-10921 .fl-node-2kyz15asfthg > :not( .fl-block-overlay, .fl-drop-target ) ) {
	flex-grow: 1;
	padding-top: 25px;
	padding-right: 25px;
	padding-bottom: 25px;
	padding-left: 25px;
	max-width: 605px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #113A62;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
@media(max-width: 992px) {
	.fl-builder-content-10921 .fl-node-2kyz15asfthg {
		flex-direction: column;
		align-items: center;
	}
}
.fl-builder-content-10921 .fl-node-k7cm5gx1by6w {
	display: flex;
	flex-direction: column;
	justify-content: stretch;
	align-items: stretch;
	gap: 10px;
	background: url(https://allstarsigns.viewourdesign.info/wp-content/uploads/2025/09/Contact-All-Star-Signs-Today-Left-Column-BG.png) no-repeat center / cover;
}
.fl-row .fl-col h2.fl-node-dwjo35gbz6r0,
		.fl-row .fl-col h2.fl-node-dwjo35gbz6r0 a,
		h2.fl-node-dwjo35gbz6r0,
		h2.fl-node-dwjo35gbz6r0 a {
	color: rgb(255, 255, 255);
}
.fl-node-dwjo35gbz6r0.fl-module-heading, .fl-node-dwjo35gbz6r0.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-dwjo35gbz6r0.fl-module-heading, .fl-node-dwjo35gbz6r0.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-dwjo35gbz6r0.fl-module-heading, .fl-node-dwjo35gbz6r0.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-dwjo35gbz6r0.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-dwjo35gbz6r0.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
img.mfp-img {
    padding-bottom: 40px !important;
}

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

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

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-o2drgak436fz, .fl-node-o2drgak436fz .fl-photo {
	text-align: center;
}
.fl-row .fl-col h2.fl-node-pf9dqg8h14o7,
		.fl-row .fl-col h2.fl-node-pf9dqg8h14o7 a,
		h2.fl-node-pf9dqg8h14o7,
		h2.fl-node-pf9dqg8h14o7 a {
	color: #113A62;
}
.fl-node-pf9dqg8h14o7.fl-module-heading, .fl-node-pf9dqg8h14o7.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-pf9dqg8h14o7.fl-module-heading, .fl-node-pf9dqg8h14o7.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-pf9dqg8h14o7.fl-module-heading, .fl-node-pf9dqg8h14o7.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-pf9dqg8h14o7.fl-module-heading {
	margin-bottom:25px;
}
@media ( max-width: 768px ) {
 .fl-node-pf9dqg8h14o7.fl-module-heading.fl-module {
	margin-bottom:20px;
}
}
.fl-row .fl-col h2.fl-node-uyt2jk8375og,
		.fl-row .fl-col h2.fl-node-uyt2jk8375og a,
		h2.fl-node-uyt2jk8375og,
		h2.fl-node-uyt2jk8375og a {
	color: #113A62;
}
.fl-node-uyt2jk8375og.fl-module-heading, .fl-node-uyt2jk8375og.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-uyt2jk8375og.fl-module-heading, .fl-node-uyt2jk8375og.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-uyt2jk8375og.fl-module-heading, .fl-node-uyt2jk8375og.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-uyt2jk8375og.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-uyt2jk8375og.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
.fl-row .fl-col h2.fl-node-fsybc9erhtx7,
		.fl-row .fl-col h2.fl-node-fsybc9erhtx7 a,
		h2.fl-node-fsybc9erhtx7,
		h2.fl-node-fsybc9erhtx7 a {
	color: #113A62;
}
.fl-node-fsybc9erhtx7.fl-module-heading, .fl-node-fsybc9erhtx7.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-fsybc9erhtx7.fl-module-heading, .fl-node-fsybc9erhtx7.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-fsybc9erhtx7.fl-module-heading, .fl-node-fsybc9erhtx7.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-fsybc9erhtx7.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-fsybc9erhtx7.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
.fl-row .fl-col h2.fl-node-8thqw32nd0sc,
		.fl-row .fl-col h2.fl-node-8thqw32nd0sc a,
		h2.fl-node-8thqw32nd0sc,
		h2.fl-node-8thqw32nd0sc a {
	color: #113A62;
}
.fl-node-8thqw32nd0sc.fl-module-heading, .fl-node-8thqw32nd0sc.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-8thqw32nd0sc.fl-module-heading, .fl-node-8thqw32nd0sc.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-8thqw32nd0sc.fl-module-heading, .fl-node-8thqw32nd0sc.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-8thqw32nd0sc.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-8thqw32nd0sc.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-builder-content-10921 .fl-node-qrowen8g3amb {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-node-se63x2mblhnw, .fl-node-se63x2mblhnw .fl-photo {
	text-align: center;
}
.fl-node-cdkb5jozlseh, .fl-node-cdkb5jozlseh .fl-photo {
	text-align: center;
}
.fl-node-inf3cg7e1pts, .fl-node-inf3cg7e1pts .fl-photo {
	text-align: center;
}
.fl-node-i4tma6ecnpqd, .fl-node-i4tma6ecnpqd .fl-photo {
	text-align: center;
}
.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-dwr9chs1zi45.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-dwr9chs1zi45.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-dwr9chs1zi45.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-dwr9chs1zi45.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
 .fl-node-dwr9chs1zi45.fl-module-rich-text {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-dwr9chs1zi45.fl-module-rich-text.fl-module {
	margin-bottom:10px;
}
}
	.fl-builder-content .fl-node-y8foakqj5p32.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-y8foakqj5p32.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-y8foakqj5p32.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-y8foakqj5p32.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
 .fl-node-y8foakqj5p32.fl-module-rich-text {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-y8foakqj5p32.fl-module-rich-text.fl-module {
	margin-bottom:10px;
}
}
	.fl-builder-content .fl-node-lm3isy0eoha4.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-lm3isy0eoha4.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-lm3isy0eoha4.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-lm3isy0eoha4.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
 .fl-node-lm3isy0eoha4.fl-module-rich-text {
	margin-bottom:15px;
}
@media (max-width: 768px) { .fl-node-lm3isy0eoha4.fl-module-rich-text { margin-bottom:0px; } }.fl-row .fl-col h3.fl-node-x9d2iko4t8qg,
		.fl-row .fl-col h3.fl-node-x9d2iko4t8qg a,
		h3.fl-node-x9d2iko4t8qg,
		h3.fl-node-x9d2iko4t8qg a {
	color: #113A62;
}
.fl-node-x9d2iko4t8qg.fl-module-heading, .fl-node-x9d2iko4t8qg.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-x9d2iko4t8qg.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-x9d2iko4t8qg.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h3.fl-node-lw09mnghcp4x,
		.fl-row .fl-col h3.fl-node-lw09mnghcp4x a,
		h3.fl-node-lw09mnghcp4x,
		h3.fl-node-lw09mnghcp4x a {
	color: #113A62;
}
.fl-node-lw09mnghcp4x.fl-module-heading, .fl-node-lw09mnghcp4x.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-lw09mnghcp4x.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-lw09mnghcp4x.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h3.fl-node-6jt71nsa4hwx,
		.fl-row .fl-col h3.fl-node-6jt71nsa4hwx a,
		h3.fl-node-6jt71nsa4hwx,
		h3.fl-node-6jt71nsa4hwx a {
	color: #113A62;
}
.fl-node-6jt71nsa4hwx.fl-module-heading, .fl-node-6jt71nsa4hwx.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-6jt71nsa4hwx.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-6jt71nsa4hwx.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-builder-content-10921 .fl-node-m5yvx630thad {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.fl-row .fl-col h4.fl-node-5d91p6iqz3nr,
		.fl-row .fl-col h4.fl-node-5d91p6iqz3nr a,
		h4.fl-node-5d91p6iqz3nr,
		h4.fl-node-5d91p6iqz3nr a {
	color: #3AC4F2;
}
.fl-node-5d91p6iqz3nr.fl-module-heading, .fl-node-5d91p6iqz3nr.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 20px;
	font-style: italic;
}
 .fl-node-5d91p6iqz3nr.fl-module-heading {
	margin-bottom:10px;
}
@media (max-width: 768px) { .fl-node-5d91p6iqz3nr.fl-module-heading { margin-bottom:0px; } }.fl-row .fl-col h2.fl-node-sz64qwd9yi2e,
		.fl-row .fl-col h2.fl-node-sz64qwd9yi2e a,
		h2.fl-node-sz64qwd9yi2e,
		h2.fl-node-sz64qwd9yi2e a {
	color: #113A62;
}
.fl-node-sz64qwd9yi2e.fl-module-heading, .fl-node-sz64qwd9yi2e.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-sz64qwd9yi2e.fl-module-heading, .fl-node-sz64qwd9yi2e.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-sz64qwd9yi2e.fl-module-heading, .fl-node-sz64qwd9yi2e.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-sz64qwd9yi2e.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-sz64qwd9yi2e.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
.fl-row .fl-col h2.fl-node-23ro6zsqpliu,
		.fl-row .fl-col h2.fl-node-23ro6zsqpliu a,
		h2.fl-node-23ro6zsqpliu,
		h2.fl-node-23ro6zsqpliu a {
	color: #113A62;
}
.fl-node-23ro6zsqpliu.fl-module-heading, .fl-node-23ro6zsqpliu.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-23ro6zsqpliu.fl-module-heading, .fl-node-23ro6zsqpliu.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-23ro6zsqpliu.fl-module-heading, .fl-node-23ro6zsqpliu.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-23ro6zsqpliu.fl-module-heading {
	margin-bottom:25px;
}
@media ( max-width: 768px ) {
 .fl-node-23ro6zsqpliu.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
.fl-node-z093asuygfb4, .fl-node-z093asuygfb4 .fl-photo {
	text-align: center;
}
.fl-row .fl-col h3.fl-node-n20bd6x8qf35,
		.fl-row .fl-col h3.fl-node-n20bd6x8qf35 a,
		h3.fl-node-n20bd6x8qf35,
		h3.fl-node-n20bd6x8qf35 a {
	color: #113A62;
}
.fl-node-n20bd6x8qf35.fl-module-heading, .fl-node-n20bd6x8qf35.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-n20bd6x8qf35.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-n20bd6x8qf35.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h3.fl-node-wntd672z58rj,
		.fl-row .fl-col h3.fl-node-wntd672z58rj a,
		h3.fl-node-wntd672z58rj,
		h3.fl-node-wntd672z58rj a {
	color: #113A62;
}
.fl-node-wntd672z58rj.fl-module-heading, .fl-node-wntd672z58rj.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-wntd672z58rj.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-wntd672z58rj.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-node-9qb8fr3e1xou, .fl-node-9qb8fr3e1xou .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-0jb73hfxa85z.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-0jb73hfxa85z.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-0jb73hfxa85z.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-0jb73hfxa85z.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
 .fl-node-0jb73hfxa85z.fl-module-rich-text {
	margin-bottom:10px;
}
@media (max-width: 768px) { .fl-node-0jb73hfxa85z.fl-module-rich-text { margin-bottom:0px; } }	.fl-builder-content .fl-node-jy53lanxc2pi.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-jy53lanxc2pi.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-jy53lanxc2pi.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-jy53lanxc2pi.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
 .fl-node-jy53lanxc2pi.fl-module-rich-text {
	margin-bottom:10px;
}
@media (max-width: 768px) { .fl-node-jy53lanxc2pi.fl-module-rich-text { margin-bottom:0px; } }.fl-row .fl-col h3.fl-node-ckhxu293eosw,
		.fl-row .fl-col h3.fl-node-ckhxu293eosw a,
		h3.fl-node-ckhxu293eosw,
		h3.fl-node-ckhxu293eosw a {
	color: #113A62;
}
.fl-node-ckhxu293eosw.fl-module-heading, .fl-node-ckhxu293eosw.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-ckhxu293eosw.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-ckhxu293eosw.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-node-be3uvytijogq, .fl-node-be3uvytijogq .fl-photo {
	text-align: center;
}
.fl-builder-content-10921 .fl-node-zca0ivw1dh6o {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-row .fl-col h2.fl-node-mc6hb7yuwxa5,
		.fl-row .fl-col h2.fl-node-mc6hb7yuwxa5 a,
		h2.fl-node-mc6hb7yuwxa5,
		h2.fl-node-mc6hb7yuwxa5 a {
	color: #113A62;
}
.fl-node-mc6hb7yuwxa5.fl-module-heading, .fl-node-mc6hb7yuwxa5.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-mc6hb7yuwxa5.fl-module-heading, .fl-node-mc6hb7yuwxa5.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-mc6hb7yuwxa5.fl-module-heading, .fl-node-mc6hb7yuwxa5.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-mc6hb7yuwxa5.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-mc6hb7yuwxa5.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
.fl-row .fl-col h2.fl-node-u568filrgn17,
		.fl-row .fl-col h2.fl-node-u568filrgn17 a,
		h2.fl-node-u568filrgn17,
		h2.fl-node-u568filrgn17 a {
	color: #113A62;
}
.fl-node-u568filrgn17.fl-module-heading, .fl-node-u568filrgn17.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-u568filrgn17.fl-module-heading, .fl-node-u568filrgn17.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-u568filrgn17.fl-module-heading, .fl-node-u568filrgn17.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-u568filrgn17.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-u568filrgn17.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h2.fl-node-fau152w0zger,
		.fl-row .fl-col h2.fl-node-fau152w0zger a,
		h2.fl-node-fau152w0zger,
		h2.fl-node-fau152w0zger a {
	color: #113A62;
}
.fl-node-fau152w0zger.fl-module-heading, .fl-node-fau152w0zger.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-fau152w0zger.fl-module-heading, .fl-node-fau152w0zger.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-fau152w0zger.fl-module-heading, .fl-node-fau152w0zger.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-fau152w0zger.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-fau152w0zger.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h2.fl-node-dzwoife1cps2,
		.fl-row .fl-col h2.fl-node-dzwoife1cps2 a,
		h2.fl-node-dzwoife1cps2,
		h2.fl-node-dzwoife1cps2 a {
	color: #113A62;
}
.fl-node-dzwoife1cps2.fl-module-heading, .fl-node-dzwoife1cps2.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-dzwoife1cps2.fl-module-heading, .fl-node-dzwoife1cps2.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-dzwoife1cps2.fl-module-heading, .fl-node-dzwoife1cps2.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-dzwoife1cps2.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-dzwoife1cps2.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h3.fl-node-1iwe6k39pd5u,
		.fl-row .fl-col h3.fl-node-1iwe6k39pd5u a,
		h3.fl-node-1iwe6k39pd5u,
		h3.fl-node-1iwe6k39pd5u a {
	color: #113A62;
}
.fl-node-1iwe6k39pd5u.fl-module-heading, .fl-node-1iwe6k39pd5u.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-1iwe6k39pd5u.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-1iwe6k39pd5u.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h3.fl-node-jidgfwn3z82r,
		.fl-row .fl-col h3.fl-node-jidgfwn3z82r a,
		h3.fl-node-jidgfwn3z82r,
		h3.fl-node-jidgfwn3z82r a {
	color: #113A62;
}
.fl-node-jidgfwn3z82r.fl-module-heading, .fl-node-jidgfwn3z82r.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-jidgfwn3z82r.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-jidgfwn3z82r.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-node-36hl29cni0wj, .fl-node-36hl29cni0wj .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-dnk2sbyx436h.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-dnk2sbyx436h.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-dnk2sbyx436h.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-dnk2sbyx436h.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 600;
	font-size: 14px;
}
	.fl-builder-content .fl-node-ltnw261h7e9z.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-ltnw261h7e9z.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-ltnw261h7e9z.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-ltnw261h7e9z.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 600;
	font-size: 14px;
}
@media ( max-width: 768px ) {
 .fl-node-ltnw261h7e9z.fl-module-rich-text.fl-module {
	margin-bottom:5px;
}
}
	.fl-builder-content .fl-node-5f2jgp3c1vot.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-5f2jgp3c1vot.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-5f2jgp3c1vot.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-5f2jgp3c1vot.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 600;
	font-size: 14px;
}
@media ( max-width: 768px ) {
 .fl-node-5f2jgp3c1vot.fl-module-rich-text.fl-module {
	margin-bottom:5px;
}
}
	.fl-builder-content .fl-node-ut3fwno9gy75.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-ut3fwno9gy75.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-ut3fwno9gy75.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-ut3fwno9gy75.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 600;
	font-size: 14px;
}
@media ( max-width: 768px ) {
 .fl-node-ut3fwno9gy75.fl-module-rich-text.fl-module {
	margin-bottom:5px;
}
}
	.fl-builder-content .fl-node-vl5t98y6p4m1.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-vl5t98y6p4m1.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-vl5t98y6p4m1.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-vl5t98y6p4m1.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
 .fl-node-vl5t98y6p4m1.fl-module-rich-text {
	margin-bottom:10px;
}
@media (max-width: 768px) { .fl-node-vl5t98y6p4m1.fl-module-rich-text { margin-bottom:0px; } }	.fl-builder-content .fl-node-cehtn9aq4ksl.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-cehtn9aq4ksl.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-cehtn9aq4ksl.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-cehtn9aq4ksl.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
}
	.fl-builder-content .fl-node-p3ni2adgb51z.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-p3ni2adgb51z.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-p3ni2adgb51z.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-p3ni2adgb51z.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
 .fl-node-p3ni2adgb51z.fl-module-rich-text {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-p3ni2adgb51z.fl-module-rich-text.fl-module {
	margin-bottom:10px;
}
}
	.fl-builder-content .fl-node-z3c8kygj6xeu.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-z3c8kygj6xeu.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-z3c8kygj6xeu.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-z3c8kygj6xeu.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
 .fl-node-z3c8kygj6xeu.fl-module-rich-text {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-z3c8kygj6xeu.fl-module-rich-text.fl-module {
	margin-bottom:10px;
}
}
	.fl-builder-content .fl-node-5jt87dm0g4wo.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-5jt87dm0g4wo.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-5jt87dm0g4wo.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-5jt87dm0g4wo.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 600;
	font-size: 14px;
}
	.fl-builder-content .fl-node-twok7y2vip9q.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-twok7y2vip9q.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-twok7y2vip9q.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-twok7y2vip9q.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 600;
	font-size: 14px;
}
@media ( max-width: 768px ) {
 .fl-node-twok7y2vip9q.fl-module-rich-text.fl-module {
	margin-bottom:5px;
}
}
.fl-row .fl-col h2.fl-node-s25a1koxy9fn,
		.fl-row .fl-col h2.fl-node-s25a1koxy9fn a,
		h2.fl-node-s25a1koxy9fn,
		h2.fl-node-s25a1koxy9fn a {
	color: #113A62;
}
.fl-node-s25a1koxy9fn.fl-module-heading, .fl-node-s25a1koxy9fn.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-s25a1koxy9fn.fl-module-heading, .fl-node-s25a1koxy9fn.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-s25a1koxy9fn.fl-module-heading, .fl-node-s25a1koxy9fn.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-s25a1koxy9fn.fl-module-heading {
	margin-bottom:25px;
}
@media ( max-width: 768px ) {
 .fl-node-s25a1koxy9fn.fl-module-heading.fl-module {
	margin-bottom:20px;
}
}
.fl-builder-content-10921 .fl-node-0yrbazsi8kj1 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
	.fl-builder-content .fl-node-01q54lbzrna2.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-01q54lbzrna2.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-01q54lbzrna2.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-01q54lbzrna2.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
	.fl-builder-content .fl-node-8pdwlirsj6mu.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-8pdwlirsj6mu.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-8pdwlirsj6mu.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-8pdwlirsj6mu.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
	.fl-builder-content .fl-node-yd4ou0bh981v.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-yd4ou0bh981v.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-yd4ou0bh981v.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-yd4ou0bh981v.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
	.fl-builder-content .fl-node-mhzfujgwq9t1.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-mhzfujgwq9t1.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-mhzfujgwq9t1.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-mhzfujgwq9t1.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
	.fl-builder-content .fl-node-0g8q2t5fa3rs.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-0g8q2t5fa3rs.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-0g8q2t5fa3rs.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-0g8q2t5fa3rs.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
 .fl-node-0g8q2t5fa3rs.fl-module-rich-text {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-0g8q2t5fa3rs.fl-module-rich-text.fl-module {
	margin-bottom:10px;
}
}
	.fl-builder-content .fl-node-v23j10k9petg.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-v23j10k9petg.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-v23j10k9petg.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-v23j10k9petg.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
 .fl-node-v23j10k9petg.fl-module-rich-text {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-v23j10k9petg.fl-module-rich-text.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h5.fl-node-tg6b3o5u7khc,
		.fl-row .fl-col h5.fl-node-tg6b3o5u7khc a,
		h5.fl-node-tg6b3o5u7khc,
		h5.fl-node-tg6b3o5u7khc a {
	color: #3AC4F2;
}
.fl-node-tg6b3o5u7khc.fl-module-heading, .fl-node-tg6b3o5u7khc.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 18px;
	font-style: italic;
}
	.fl-builder-content .fl-node-lserhf1iw8ap.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-lserhf1iw8ap.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-lserhf1iw8ap.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-lserhf1iw8ap.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
}
.fl-builder-content-10921 .fl-node-b0ecmw9pt6ly {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 50px;
}
:where( .fl-builder-content-10921 .fl-node-b0ecmw9pt6ly > :not( .fl-block-overlay, .fl-drop-target ) ) {
	flex-grow: 1;
	max-width: 537px;
}
@media(max-width: 1200px) {
	:where( .fl-builder-content-10921 .fl-node-b0ecmw9pt6ly > :not( .fl-block-overlay, .fl-drop-target ) ) {
		flex-basis: 508px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content-10921 .fl-node-b0ecmw9pt6ly {
		gap: 25px;
	}
	:where( .fl-builder-content-10921 .fl-node-b0ecmw9pt6ly > :not( .fl-block-overlay, .fl-drop-target ) ) {
		width: 100%;
	}
}
.fl-builder-content-10921 .fl-node-mnt0arq3juvx {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-button:is(a, button) {
    cursor: pointer;
}








.fl-node-d3wa0knoft5q.fl-button-wrap, .fl-node-d3wa0knoft5q .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button) {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button), .fl-builder-content .fl-node-d3wa0knoft5q a.fl-button:visited, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-d3wa0knoft5q a.fl-button:visited {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 14px;
	background-color: rgba(0, 0, 0, 0);
}
.fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover, .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):focus, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):focus {
	border: 1px solid rgba(0,0,0, 0);
}
.fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button), .fl-builder-content .fl-node-d3wa0knoft5q a.fl-button:visited, .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover, .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):focus, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-d3wa0knoft5q a.fl-button:visited, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover, .fl-page .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover {
	background-color: rgba(0, 0, 0, 0);
}
.fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button), .fl-builder-content .fl-node-d3wa0knoft5q a.fl-button:visited, .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button) *, .fl-builder-content .fl-node-d3wa0knoft5q a.fl-button:visited *, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-d3wa0knoft5q a.fl-button:visited, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button) *, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q a.fl-button:visited * {
	color: rgb(255, 255, 255);
}
.fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover, .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover span.fl-button-text, .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover *, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover span.fl-button-text, .fl-page .fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button):hover * {
	color: #3AC4F2;
}
:where(.fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-d3wa0knoft5q .fl-button:is(a, button) *) {
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}
 .fl-node-d3wa0knoft5q.fl-module-button {
	margin-bottom:5px;
}
@media (max-width: 768px) { .fl-node-d3wa0knoft5q.fl-module-button { margin-bottom:0px; } }	.fl-builder-content .fl-node-kp30cxf6y9qa.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-kp30cxf6y9qa.fl-module-rich-text.fl-rich-text * {
		color: #113A62;
	}
	.fl-builder-content .fl-node-kp30cxf6y9qa.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-kp30cxf6y9qa.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
}
.fl-node-x9stmcag2pwb, .fl-node-x9stmcag2pwb .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-2h6g4qxyz5pd.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-2h6g4qxyz5pd.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-2h6g4qxyz5pd.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-2h6g4qxyz5pd.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-lgmt12dozhp3, .fl-node-lgmt12dozhp3 .fl-photo {
	text-align: center;
}
.fl-row .fl-col h5.fl-node-zoj7gs8vnptf,
		.fl-row .fl-col h5.fl-node-zoj7gs8vnptf a,
		h5.fl-node-zoj7gs8vnptf,
		h5.fl-node-zoj7gs8vnptf a {
	color: #3AC4F2;
}
.fl-node-zoj7gs8vnptf.fl-module-heading, .fl-node-zoj7gs8vnptf.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 18px;
	font-style: italic;
}
	.fl-builder-content .fl-node-0wqkls4hfmv1.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-0wqkls4hfmv1.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-0wqkls4hfmv1.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-0wqkls4hfmv1.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-row .fl-col h2.fl-node-bcx6rnu7z9h4,
		.fl-row .fl-col h2.fl-node-bcx6rnu7z9h4 a,
		h2.fl-node-bcx6rnu7z9h4,
		h2.fl-node-bcx6rnu7z9h4 a {
	color: #113A62;
}
.fl-node-bcx6rnu7z9h4.fl-module-heading, .fl-node-bcx6rnu7z9h4.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-bcx6rnu7z9h4.fl-module-heading, .fl-node-bcx6rnu7z9h4.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-bcx6rnu7z9h4.fl-module-heading, .fl-node-bcx6rnu7z9h4.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-bcx6rnu7z9h4.fl-module-heading {
	margin-bottom:25px;
}
@media ( max-width: 768px ) {
 .fl-node-bcx6rnu7z9h4.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
.fl-node-a8ref27kn5h0, .fl-node-a8ref27kn5h0 .fl-photo {
	text-align: center;
}
.fl-node-4crx8k20jgeq, .fl-node-4crx8k20jgeq .fl-photo {
	text-align: center;
}
.fl-node-3hfr01z2pcxg, .fl-node-3hfr01z2pcxg .fl-photo {
	text-align: center;
}
.fl-node-vh2m4ktq1ir0, .fl-node-vh2m4ktq1ir0 .fl-photo {
	text-align: center;
}
.fl-row .fl-col h2.fl-node-oudalqtm0yh1,
		.fl-row .fl-col h2.fl-node-oudalqtm0yh1 a,
		h2.fl-node-oudalqtm0yh1,
		h2.fl-node-oudalqtm0yh1 a {
	color: #113A62;
}
.fl-node-oudalqtm0yh1.fl-module-heading, .fl-node-oudalqtm0yh1.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-oudalqtm0yh1.fl-module-heading, .fl-node-oudalqtm0yh1.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-oudalqtm0yh1.fl-module-heading, .fl-node-oudalqtm0yh1.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-oudalqtm0yh1.fl-module-heading {
	margin-bottom:25px;
}
@media ( max-width: 768px ) {
 .fl-node-oudalqtm0yh1.fl-module-heading.fl-module {
	margin-bottom:20px;
}
}
.fl-row .fl-col h2.fl-node-6oqjnylcpes5,
		.fl-row .fl-col h2.fl-node-6oqjnylcpes5 a,
		h2.fl-node-6oqjnylcpes5,
		h2.fl-node-6oqjnylcpes5 a {
	color: #113A62;
}
.fl-node-6oqjnylcpes5.fl-module-heading, .fl-node-6oqjnylcpes5.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-6oqjnylcpes5.fl-module-heading, .fl-node-6oqjnylcpes5.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-6oqjnylcpes5.fl-module-heading, .fl-node-6oqjnylcpes5.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-6oqjnylcpes5.fl-module-heading {
	margin-bottom:25px;
}
@media ( max-width: 768px ) {
 .fl-node-6oqjnylcpes5.fl-module-heading.fl-module {
	margin-bottom:20px;
}
}
.fl-builder-content-10921 .fl-node-dws5pfnl6hm2 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-node-ozlxwt24ei7j, .fl-node-ozlxwt24ei7j .fl-photo {
	text-align: center;
}
.fl-node-r78jwzg3x46f, .fl-node-r78jwzg3x46f .fl-photo {
	text-align: center;
}
.fl-node-o29ky7zm01xd, .fl-node-o29ky7zm01xd .fl-photo {
	text-align: center;
}
.fl-row .fl-col h2.fl-node-rcbxa3fgy1jq,
		.fl-row .fl-col h2.fl-node-rcbxa3fgy1jq a,
		h2.fl-node-rcbxa3fgy1jq,
		h2.fl-node-rcbxa3fgy1jq a {
	color: #113A62;
}
.fl-node-rcbxa3fgy1jq.fl-module-heading, .fl-node-rcbxa3fgy1jq.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-rcbxa3fgy1jq.fl-module-heading, .fl-node-rcbxa3fgy1jq.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-rcbxa3fgy1jq.fl-module-heading, .fl-node-rcbxa3fgy1jq.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-rcbxa3fgy1jq.fl-module-heading {
	margin-bottom:25px;
}
@media ( max-width: 768px ) {
 .fl-node-rcbxa3fgy1jq.fl-module-heading.fl-module {
	margin-bottom:20px;
}
}
.fl-node-5x3l72bu4qpi, .fl-node-5x3l72bu4qpi .fl-photo {
	text-align: center;
}
.fl-node-6txq9y74ksn8, .fl-node-6txq9y74ksn8 .fl-photo {
	text-align: center;
}
.fl-builder-content-10921 .fl-node-qjet3nom2w0y {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-node-agwk9jdu3o0q, .fl-node-agwk9jdu3o0q .fl-photo {
	text-align: center;
}
.fl-node-olpd865xbrni, .fl-node-olpd865xbrni .fl-photo {
	text-align: center;
}
.fl-node-ykhp71cxns8t, .fl-node-ykhp71cxns8t .fl-photo {
	text-align: center;
}
.fl-row .fl-col h2.fl-node-ya0nt7m4f3d1,
		.fl-row .fl-col h2.fl-node-ya0nt7m4f3d1 a,
		h2.fl-node-ya0nt7m4f3d1,
		h2.fl-node-ya0nt7m4f3d1 a {
	color: #3BC5F1;
}
.fl-node-ya0nt7m4f3d1.fl-module-heading, .fl-node-ya0nt7m4f3d1.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-ya0nt7m4f3d1.fl-module-heading {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-ya0nt7m4f3d1.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-builder-content-10921 .fl-node-4p3hqbl92gnz {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 30px;
}
:where( .fl-builder-content-10921 .fl-node-4p3hqbl92gnz > :not( .fl-block-overlay, .fl-drop-target ) ) {
	flex-grow: 1;
	max-width: 350px;
}
@media(max-width: 1200px) {
	:where( .fl-builder-content-10921 .fl-node-4p3hqbl92gnz > :not( .fl-block-overlay, .fl-drop-target ) ) {
		flex-basis: 508px;
	}
}
@media(max-width: 768px) {
	:where( .fl-builder-content-10921 .fl-node-4p3hqbl92gnz > :not( .fl-block-overlay, .fl-drop-target ) ) {
		width: 100%;
	}
}
.fl-row .fl-col h1.fl-node-dby2qa75swr1,
		.fl-row .fl-col h1.fl-node-dby2qa75swr1 a,
		h1.fl-node-dby2qa75swr1,
		h1.fl-node-dby2qa75swr1 a {
	color: rgb(255, 255, 255);
}
.fl-node-dby2qa75swr1.fl-module-heading, .fl-node-dby2qa75swr1.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-node-dby2qa75swr1.fl-module-heading, .fl-node-dby2qa75swr1.fl-module-heading :where(a, q, p, span) {
		font-size: 35px;
	}
}
@media(max-width: 768px) {
	.fl-node-dby2qa75swr1.fl-module-heading, .fl-node-dby2qa75swr1.fl-module-heading :where(a, q, p, span) {
		font-size: 30px;
	}
}
.fl-builder-content-10921 .fl-node-j7dqys3rvhwz {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-row .fl-col h2.fl-node-b1gyml8qvcuw,
		.fl-row .fl-col h2.fl-node-b1gyml8qvcuw a,
		h2.fl-node-b1gyml8qvcuw,
		h2.fl-node-b1gyml8qvcuw a {
	color: #113A62;
}
.fl-node-b1gyml8qvcuw.fl-module-heading, .fl-node-b1gyml8qvcuw.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-b1gyml8qvcuw.fl-module-heading, .fl-node-b1gyml8qvcuw.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-b1gyml8qvcuw.fl-module-heading, .fl-node-b1gyml8qvcuw.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-b1gyml8qvcuw.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-b1gyml8qvcuw.fl-module-heading.fl-module {
	margin-bottom:0px;
}
}
.fl-row .fl-col h2.fl-node-pxwsjlzk2iqr,
		.fl-row .fl-col h2.fl-node-pxwsjlzk2iqr a,
		h2.fl-node-pxwsjlzk2iqr,
		h2.fl-node-pxwsjlzk2iqr a {
	color: #113A62;
}
.fl-node-pxwsjlzk2iqr.fl-module-heading, .fl-node-pxwsjlzk2iqr.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-pxwsjlzk2iqr.fl-module-heading, .fl-node-pxwsjlzk2iqr.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-pxwsjlzk2iqr.fl-module-heading, .fl-node-pxwsjlzk2iqr.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-pxwsjlzk2iqr.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-pxwsjlzk2iqr.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h2.fl-node-kbu5fnt0qopj,
		.fl-row .fl-col h2.fl-node-kbu5fnt0qopj a,
		h2.fl-node-kbu5fnt0qopj,
		h2.fl-node-kbu5fnt0qopj a {
	color: #113A62;
}
.fl-node-kbu5fnt0qopj.fl-module-heading, .fl-node-kbu5fnt0qopj.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-kbu5fnt0qopj.fl-module-heading, .fl-node-kbu5fnt0qopj.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-kbu5fnt0qopj.fl-module-heading, .fl-node-kbu5fnt0qopj.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-kbu5fnt0qopj.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-kbu5fnt0qopj.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h2.fl-node-bhyeq0vso8wj,
		.fl-row .fl-col h2.fl-node-bhyeq0vso8wj a,
		h2.fl-node-bhyeq0vso8wj,
		h2.fl-node-bhyeq0vso8wj a {
	color: #113A62;
}
.fl-node-bhyeq0vso8wj.fl-module-heading, .fl-node-bhyeq0vso8wj.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-bhyeq0vso8wj.fl-module-heading, .fl-node-bhyeq0vso8wj.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-bhyeq0vso8wj.fl-module-heading, .fl-node-bhyeq0vso8wj.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-bhyeq0vso8wj.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-bhyeq0vso8wj.fl-module-heading.fl-module {
	margin-bottom:0px;
}
}
.fl-row .fl-col h2.fl-node-gehw5j1p6nlv,
		.fl-row .fl-col h2.fl-node-gehw5j1p6nlv a,
		h2.fl-node-gehw5j1p6nlv,
		h2.fl-node-gehw5j1p6nlv a {
	color: #113A62;
}
.fl-node-gehw5j1p6nlv.fl-module-heading, .fl-node-gehw5j1p6nlv.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-gehw5j1p6nlv.fl-module-heading, .fl-node-gehw5j1p6nlv.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-gehw5j1p6nlv.fl-module-heading, .fl-node-gehw5j1p6nlv.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-gehw5j1p6nlv.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-gehw5j1p6nlv.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h2.fl-node-jamtbwdv16eo,
		.fl-row .fl-col h2.fl-node-jamtbwdv16eo a,
		h2.fl-node-jamtbwdv16eo,
		h2.fl-node-jamtbwdv16eo a {
	color: #113A62;
}
.fl-node-jamtbwdv16eo.fl-module-heading, .fl-node-jamtbwdv16eo.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-jamtbwdv16eo.fl-module-heading, .fl-node-jamtbwdv16eo.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-jamtbwdv16eo.fl-module-heading, .fl-node-jamtbwdv16eo.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-jamtbwdv16eo.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-jamtbwdv16eo.fl-module-heading.fl-module {
	margin-bottom:0px;
}
}
.fl-row .fl-col h2.fl-node-ye5z3bmi24h9,
		.fl-row .fl-col h2.fl-node-ye5z3bmi24h9 a,
		h2.fl-node-ye5z3bmi24h9,
		h2.fl-node-ye5z3bmi24h9 a {
	color: #113A62;
}
.fl-node-ye5z3bmi24h9.fl-module-heading, .fl-node-ye5z3bmi24h9.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 700;
	font-size: 25px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-ye5z3bmi24h9.fl-module-heading, .fl-node-ye5z3bmi24h9.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
@media(max-width: 768px) {
	.fl-node-ye5z3bmi24h9.fl-module-heading, .fl-node-ye5z3bmi24h9.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-ye5z3bmi24h9.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-ye5z3bmi24h9.fl-module-heading.fl-module {
	margin-bottom:15px;
}
}
.fl-builder-content-10921 .fl-node-hy5x286ntop0 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-builder-content-10921 .fl-node-do1b0lpgestx {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 50px;
}
:where( .fl-builder-content-10921 .fl-node-do1b0lpgestx > :not( .fl-block-overlay, .fl-drop-target ) ) {
	flex-grow: 1;
	max-width: 537px;
}
@media(max-width: 1200px) {
	:where( .fl-builder-content-10921 .fl-node-do1b0lpgestx > :not( .fl-block-overlay, .fl-drop-target ) ) {
		flex-basis: 508px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content-10921 .fl-node-do1b0lpgestx {
		gap: 25px;
	}
	:where( .fl-builder-content-10921 .fl-node-do1b0lpgestx > :not( .fl-block-overlay, .fl-drop-target ) ) {
		width: 100%;
	}
}
.fl-builder-content-10921 .fl-node-4fydvzah6ck2 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
	.fl-builder-content .fl-node-wz3e6bjsoqvm.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-wz3e6bjsoqvm.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-wz3e6bjsoqvm.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-wz3e6bjsoqvm.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
	.fl-builder-content .fl-node-hez9rqwlxcma.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-hez9rqwlxcma.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-hez9rqwlxcma.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-hez9rqwlxcma.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
	.fl-builder-content .fl-node-sf374tzminyo.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-sf374tzminyo.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-sf374tzminyo.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-sf374tzminyo.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-row .fl-col h3.fl-node-cs1xp5dga2w9,
		.fl-row .fl-col h3.fl-node-cs1xp5dga2w9 a,
		h3.fl-node-cs1xp5dga2w9,
		h3.fl-node-cs1xp5dga2w9 a {
	color: #113A62;
}
.fl-node-cs1xp5dga2w9.fl-module-heading, .fl-node-cs1xp5dga2w9.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-cs1xp5dga2w9.fl-module-heading {
	margin-bottom:10px;
}
@media (max-width: 768px) { .fl-node-cs1xp5dga2w9.fl-module-heading { margin-bottom:0px; } }.fl-row .fl-col h3.fl-node-r134skpelgh6,
		.fl-row .fl-col h3.fl-node-r134skpelgh6 a,
		h3.fl-node-r134skpelgh6,
		h3.fl-node-r134skpelgh6 a {
	color: #113A62;
}
.fl-node-r134skpelgh6.fl-module-heading, .fl-node-r134skpelgh6.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-r134skpelgh6.fl-module-heading {
	margin-bottom:10px;
}
@media (max-width: 768px) { .fl-node-r134skpelgh6.fl-module-heading { margin-bottom:0px; } }.fl-row .fl-col h3.fl-node-08otv2kp1rwc,
		.fl-row .fl-col h3.fl-node-08otv2kp1rwc a,
		h3.fl-node-08otv2kp1rwc,
		h3.fl-node-08otv2kp1rwc a {
	color: #113A62;
}
.fl-node-08otv2kp1rwc.fl-module-heading, .fl-node-08otv2kp1rwc.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-08otv2kp1rwc.fl-module-heading {
	margin-bottom:10px;
}
@media (max-width: 768px) { .fl-node-08otv2kp1rwc.fl-module-heading { margin-bottom:0px; } }.fl-row .fl-col h3.fl-node-9nrgpwyxsu0e,
		.fl-row .fl-col h3.fl-node-9nrgpwyxsu0e a,
		h3.fl-node-9nrgpwyxsu0e,
		h3.fl-node-9nrgpwyxsu0e a {
	color: #113A62;
}
.fl-node-9nrgpwyxsu0e.fl-module-heading, .fl-node-9nrgpwyxsu0e.fl-module-heading :where(a, q, p, span) {
	font-family: Inter, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
 .fl-node-9nrgpwyxsu0e.fl-module-heading {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-9nrgpwyxsu0e.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
.fl-builder-content-10921 .fl-node-mwk9qinxl5j1 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
	.fl-builder-content .fl-node-ivfrqexgm9o0.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-ivfrqexgm9o0.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-ivfrqexgm9o0.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-ivfrqexgm9o0.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
	.fl-builder-content .fl-node-zdgy43awl7p0.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-zdgy43awl7p0.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-zdgy43awl7p0.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-zdgy43awl7p0.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-builder-content-10921 .fl-node-gt7z2hp34oj9 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
	.fl-builder-content .fl-node-rb51ul7xpt23.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-rb51ul7xpt23.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-rb51ul7xpt23.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-rb51ul7xpt23.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
	.fl-builder-content .fl-node-dhrtlm4x35s1.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-dhrtlm4x35s1.fl-module-rich-text.fl-rich-text * {
		color: #1E1E1E;
	}
	.fl-builder-content .fl-node-dhrtlm4x35s1.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-dhrtlm4x35s1.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 14px;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

