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

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

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

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

.fl-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;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	left: 0;
}

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

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

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

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

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

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

.fl-animation {
	opacity: 0;
}
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;
	-webkit-animation-fill-mode: both;
}

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

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

.fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content a.fl-button *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 768px) { /* 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: 414px) { /* 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: 769px) 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: 415px) and (max-width: 768px) {
	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: 414px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1200px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }




.fl-node-iyaw65zgn8h0 > .fl-row-content-wrap {
	background-color: #fbf8f3;
}
 .fl-node-iyaw65zgn8h0 > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:60px;
}
@media ( max-width: 768px ) {
 .fl-node-iyaw65zgn8h0.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 414px ) {
 .fl-node-iyaw65zgn8h0.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:0px;
	padding-bottom:20px;
	padding-left:0px;
}
}
.fl-node-1u029fk7sbre {
	color: #ffffff;
}
.fl-builder-content .fl-node-1u029fk7sbre *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-1u029fk7sbre a {
	color: #ffffff;
}

.fl-builder-content .fl-node-1u029fk7sbre a:hover {
	color: #ffffff;
}

.fl-builder-content .fl-node-1u029fk7sbre h1,
.fl-builder-content .fl-node-1u029fk7sbre h2,
.fl-builder-content .fl-node-1u029fk7sbre h3,
.fl-builder-content .fl-node-1u029fk7sbre h4,
.fl-builder-content .fl-node-1u029fk7sbre h5,
.fl-builder-content .fl-node-1u029fk7sbre h6,
.fl-builder-content .fl-node-1u029fk7sbre h1 a,
.fl-builder-content .fl-node-1u029fk7sbre h2 a,
.fl-builder-content .fl-node-1u029fk7sbre h3 a,
.fl-builder-content .fl-node-1u029fk7sbre h4 a,
.fl-builder-content .fl-node-1u029fk7sbre h5 a,
.fl-builder-content .fl-node-1u029fk7sbre h6 a {
	color: #ffffff;
}


.fl-node-1u029fk7sbre > .fl-row-content-wrap {
	background-color: #000000;
}
 .fl-node-1u029fk7sbre > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:70px;
	padding-bottom:15px;
	padding-left:70px;
}





 .fl-node-s2i74runct8y > .fl-row-content-wrap {
	margin-top:55px;
	margin-bottom:25px;
}





.fl-node-t1ljh0dvuc34 > .fl-row-content-wrap {
	background-color: #fbf8f3;
}
 .fl-node-t1ljh0dvuc34 > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:60px;
}
@media ( max-width: 768px ) {
 .fl-node-t1ljh0dvuc34.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 414px ) {
 .fl-node-t1ljh0dvuc34.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:0px;
	padding-bottom:20px;
	padding-left:0px;
}
}





.fl-node-17qy4viton0h > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2022/01/BusinessDecider2000px.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
 .fl-node-17qy4viton0h > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:30px;
	padding-left:0px;
}





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










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





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










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










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










.fl-node-u4m2j03on79x > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2022/01/528-HeaderBG-free-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-u4m2j03on79x > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:60px;
}





.fl-node-e8r7fanh3dzt > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2022/01/528-HeaderBG-free-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-e8r7fanh3dzt > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-e8r7fanh3dzt > .fl-row-content-wrap {
	padding-top:24px;
	padding-bottom:60px;
}





.fl-node-rhtspy9e1j6u > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2022/01/528-HeaderBG-free-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-rhtspy9e1j6u > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:60px;
}





.fl-node-jkb35xlr8aoh > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2022/01/528-HeaderBG-free-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-jkb35xlr8aoh > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:60px;
}





.fl-node-95agd2qepsof > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2022/01/528-HeaderBG-free-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-95agd2qepsof > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-95agd2qepsof > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:60px;
}





.fl-node-x936w5uhvqgm > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2022/01/528-HeaderBG-free-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-x936w5uhvqgm > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:60px;
}





.fl-node-ik6cvnqwflpr > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2022/01/528-HeaderBG-free-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-ik6cvnqwflpr > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:86px;
}





.fl-node-w1dna43r2c50 > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2022/01/528-HeaderBG-free-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-w1dna43r2c50 > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:60px;
}





.fl-node-84qnoesidhk1 > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2022/01/528-HeaderBG-free-img.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-84qnoesidhk1 > .fl-row-content-wrap {
	margin-top:60px;
}
 .fl-node-84qnoesidhk1 > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:60px;
}










.fl-node-3toafjp1bvzs > .fl-row-content-wrap:after {
	background-color: rgba(232,231,231,0.92);
}
.fl-node-3toafjp1bvzs > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2016/12/AppointmentClockCalendar.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}





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



































.fl-node-mlhaygc6w7x0 > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}










.fl-node-7f5q6oadpe0i > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-7f5q6oadpe0i > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-xuizqcp9mn8k > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-xuizqcp9mn8k > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-tjkh6fw7i5g0 > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-tjkh6fw7i5g0 > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-nmz45a03esh9 > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-nmz45a03esh9 > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-rtse42yvnab5 > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-rtse42yvnab5 > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-d5b1ao2cpkz4 > .fl-row-content-wrap {
	background-color: #e8e7e7;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}















.fl-node-iet0sg6m4dr8 > .fl-row-content-wrap {
	background-color: #f9f8f3;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-iet0sg6m4dr8 > .fl-row-content-wrap {
	padding-bottom:0px;
}




.fl-node-9rikqjsbwef3 {
	width: 100%;
}




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




.fl-node-dghto3x2ajn4 {
	width: 50%;
}
.fl-node-dghto3x2ajn4 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-dghto3x2ajn4 {
		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: 414px) {
	.fl-builder-content .fl-node-dghto3x2ajn4 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-dghto3x2ajn4 > .fl-col-content {
	margin-bottom:-150px;
}
@media ( max-width: 768px ) {
 .fl-node-dghto3x2ajn4.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 414px ) {
 .fl-node-dghto3x2ajn4.fl-col > .fl-col-content {
	margin-bottom:-20px;
}
}




.fl-node-jry3q4mfnp91 {
	width: 100%;
}
.fl-node-jry3q4mfnp91 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-jry3q4mfnp91 {
		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: 414px) {
	.fl-builder-content .fl-node-jry3q4mfnp91 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-d7m4q5h1kz0r {
	width: 50%;
}
.fl-node-d7m4q5h1kz0r > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-d7m4q5h1kz0r {
		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: 414px) {
	.fl-builder-content .fl-node-d7m4q5h1kz0r {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-d7m4q5h1kz0r > .fl-col-content {
	margin-bottom:-150px;
}
@media ( max-width: 768px ) {
 .fl-node-d7m4q5h1kz0r.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 414px ) {
 .fl-node-d7m4q5h1kz0r.fl-col > .fl-col-content {
	margin-bottom:-20px;
}
}




.fl-node-u62n8bczt43j {
	width: 50%;
}
.fl-node-u62n8bczt43j > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-u62n8bczt43j {
		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: 414px) {
	.fl-builder-content .fl-node-u62n8bczt43j {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-u62n8bczt43j > .fl-col-content {
	margin-bottom:-150px;
}
@media ( max-width: 768px ) {
 .fl-node-u62n8bczt43j.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 414px ) {
 .fl-node-u62n8bczt43j.fl-col > .fl-col-content {
	margin-bottom:-20px;
}
}




.fl-node-stxr4q8m19zu {
	width: 50%;
}
.fl-node-stxr4q8m19zu > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-stxr4q8m19zu {
		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: 414px) {
	.fl-builder-content .fl-node-stxr4q8m19zu {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-stxr4q8m19zu > .fl-col-content {
	margin-bottom:-150px;
}
@media ( max-width: 768px ) {
 .fl-node-stxr4q8m19zu.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 414px ) {
 .fl-node-stxr4q8m19zu.fl-col > .fl-col-content {
	margin-bottom:-20px;
}
}




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




.fl-node-0mfp2lv95yi3 {
	width: 50%;
}
.fl-node-0mfp2lv95yi3 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-0mfp2lv95yi3 {
		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: 414px) {
	.fl-builder-content .fl-node-0mfp2lv95yi3 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-0mfp2lv95yi3 > .fl-col-content {
	margin-bottom:-150px;
}
@media ( max-width: 768px ) {
 .fl-node-0mfp2lv95yi3.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 414px ) {
 .fl-node-0mfp2lv95yi3.fl-col > .fl-col-content {
	margin-bottom:-20px;
}
}




.fl-node-cfty3u960r7q {
	width: 50%;
}
.fl-node-cfty3u960r7q > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-cfty3u960r7q {
		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: 414px) {
	.fl-builder-content .fl-node-cfty3u960r7q {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-cfty3u960r7q > .fl-col-content {
	margin-bottom:-150px;
}
@media ( max-width: 768px ) {
 .fl-node-cfty3u960r7q.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 414px ) {
 .fl-node-cfty3u960r7q.fl-col > .fl-col-content {
	margin-bottom:-20px;
}
}




.fl-node-rb69osi0ytvu {
	width: 50%;
}
.fl-node-rb69osi0ytvu > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-rb69osi0ytvu {
		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: 414px) {
	.fl-builder-content .fl-node-rb69osi0ytvu {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-rb69osi0ytvu > .fl-col-content {
	margin-bottom:-150px;
}
@media ( max-width: 768px ) {
 .fl-node-rb69osi0ytvu.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 414px ) {
 .fl-node-rb69osi0ytvu.fl-col > .fl-col-content {
	margin-bottom:-20px;
}
}




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




.fl-node-zxp9ofd1y682 {
	width: 62%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-zxp9ofd1y682 {
		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-wg7ejui9hqf8 {
	width: 50%;
}




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




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




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




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




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




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




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




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




.fl-node-18tolxhpv32i {
	width: 19.97%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-18tolxhpv32i {
		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-nq3wg1zb8vai {
	width: 50%;
}
.fl-node-nq3wg1zb8vai > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-nq3wg1zb8vai {
		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: 414px) {
	.fl-builder-content .fl-node-nq3wg1zb8vai {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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




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




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




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




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




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




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




.fl-node-5fuesjtgzq0h {
	width: 100%;
}




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




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




.fl-node-63dj7onmu80k {
	width: 33.33%;
}




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




.fl-node-5kbafo0j7nxw {
	width: 100%;
}




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




.fl-node-6to7sgx3eja0 {
	width: 50%;
}
.fl-node-6to7sgx3eja0 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
 .fl-node-6to7sgx3eja0 > .fl-col-content {
	padding-top:80px;
	padding-right:70px;
	padding-bottom:80px;
	padding-left:70px;
}




.fl-node-qbtfdc1r5zmi {
	width: 50%;
}
.fl-node-qbtfdc1r5zmi > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-qbtfdc1r5zmi {
		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: 414px) {
	.fl-builder-content .fl-node-qbtfdc1r5zmi {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-ya4fb3twqdvu {
	width: 50%;
}
.fl-node-ya4fb3twqdvu > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
 .fl-node-ya4fb3twqdvu > .fl-col-content {
	padding-top:80px;
	padding-right:70px;
	padding-bottom:80px;
	padding-left:70px;
}




.fl-node-4d806kqz7u3p {
	width: 50%;
}
.fl-node-4d806kqz7u3p > .fl-col-content {
	background-image: url(https://ib.wpbeaveraddons.com/wp-content/uploads/2016/07/feature5-unsplash-1024x548.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}




.fl-node-u6kgp9desc2n {
	width: 50%;
}
.fl-node-u6kgp9desc2n > .fl-col-content {
	background-image: url(https://ib.wpbeaveraddons.com/wp-content/uploads/2016/07/feature5-unsplash-1024x548.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}




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




.fl-node-t196eavclwhy {
	width: 50%;
}
.fl-node-t196eavclwhy > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
 .fl-node-t196eavclwhy > .fl-col-content {
	padding-top:80px;
	padding-right:70px;
	padding-bottom:80px;
	padding-left:70px;
}




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




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




.fl-node-i4cufxz3nsh8 {
	width: 40%;
}




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




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




.fl-node-m2r4nh5qjsuk {
	width: 33.33%;
}




.fl-node-y83c4evs9jn0 {
	width: 33.33%;
}




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




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




.fl-node-oxceq24uwskg {
	width: 50%;
}
.fl-node-oxceq24uwskg > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-oxceq24uwskg {
		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: 414px) {
	.fl-builder-content .fl-node-oxceq24uwskg {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-zd27elt0ji1q {
	width: 50%;
}
.fl-node-zd27elt0ji1q > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-zd27elt0ji1q {
		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: 414px) {
	.fl-builder-content .fl-node-zd27elt0ji1q {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-bm8wh02rcqp6 {
	width: 50%;
}
.fl-node-bm8wh02rcqp6 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-bm8wh02rcqp6 {
		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: 414px) {
	.fl-builder-content .fl-node-bm8wh02rcqp6 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-38y1mx0vksua {
	width: 50%;
}
.fl-node-38y1mx0vksua > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-38y1mx0vksua {
		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: 414px) {
	.fl-builder-content .fl-node-38y1mx0vksua {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-nbk1mr836v7a {
	width: 50%;
}
.fl-node-nbk1mr836v7a > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-nbk1mr836v7a {
		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: 414px) {
	.fl-builder-content .fl-node-nbk1mr836v7a {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-d102eufgqipk {
	width: 50%;
}
.fl-node-d102eufgqipk > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-d102eufgqipk {
		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: 414px) {
	.fl-builder-content .fl-node-d102eufgqipk {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-ijn4mv5dspr3 {
	width: 50%;
}
.fl-node-ijn4mv5dspr3 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ijn4mv5dspr3 {
		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: 414px) {
	.fl-builder-content .fl-node-ijn4mv5dspr3 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-y8ba5dqstmrn {
	width: 50%;
}
.fl-node-y8ba5dqstmrn > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-y8ba5dqstmrn {
		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: 414px) {
	.fl-builder-content .fl-node-y8ba5dqstmrn {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-8u1dt5b469gk {
	width: 38%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-8u1dt5b469gk {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




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




.fl-node-rnvywatjz0l1 {
	width: 46%;
}




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




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




.fl-node-j04gi7lhnbcd {
	width: 50%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-j04gi7lhnbcd {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-2i0ox67pl8ry {
	width: 39.97%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-2i0ox67pl8ry {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 414px) {
	.fl-builder-content .fl-node-2i0ox67pl8ry {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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




.fl-node-euwv4xkq87c9 {
	width: 33.337%;
}




.fl-node-b3zjxkthc6wd {
	width: 33.33%;
}




.fl-node-zo3ij1m2lrth {
	width: 50%;
}
.fl-node-zo3ij1m2lrth > .fl-col-content {
	background-image: url(https://ib.wpbeaveraddons.com/wp-content/uploads/2016/07/feature5-unsplash-1024x548.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}




.fl-node-8wup0na69sgi {
	width: 50%;
}
.fl-node-8wup0na69sgi > .fl-col-content {
	background-image: url(https://ib.wpbeaveraddons.com/wp-content/uploads/2016/07/feature5-unsplash-1024x548.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}




.fl-node-4e8cjhxrnkaq {
	width: 50%;
}
.fl-node-4e8cjhxrnkaq > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
 .fl-node-4e8cjhxrnkaq > .fl-col-content {
	padding-top:0px;
	padding-right:70px;
	padding-bottom:0px;
	padding-left:70px;
}




.fl-node-kw6xajqvym1o {
	width: 50%;
}
.fl-node-kw6xajqvym1o > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
 .fl-node-kw6xajqvym1o > .fl-col-content {
	padding-top:0px;
	padding-right:70px;
	padding-bottom:0px;
	padding-left:70px;
}




.fl-node-34gkpru2cf0x {
	width: 50%;
}
.fl-node-34gkpru2cf0x > .fl-col-content {
	background-image: url(https://ib.wpbeaveraddons.com/wp-content/uploads/2016/07/feature5-unsplash-1024x548.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}




.fl-node-ah2xf75nmd6w {
	width: 60%;
}




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




.fl-node-x8ldenzj47mh {
	width: 33.33%;
}




.fl-node-z9lj2avwhe51 {
	width: 33.33%;
}




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




.fl-node-q8aiwrl0p6kg {
	width: 40.06%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-q8aiwrl0p6kg {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 414px) {
	.fl-builder-content .fl-node-q8aiwrl0p6kg {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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




.fl-node-qr1wihzma3o9 {
	width: 33.33%;
}




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




.fl-node-814s92nmyq3v {
	width: 33.33%;
}




.fl-node-x5f9avmy4j6w {
	width: 33.33%;
}




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




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




.fl-node-ubw97tnqx1cz {
	width: 50%;
}
.fl-node-ubw97tnqx1cz > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ubw97tnqx1cz {
		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: 414px) {
	.fl-builder-content .fl-node-ubw97tnqx1cz {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
body a.infobox-title-link {
	text-decoration: none;
}

body h1.uabb-infobox-title,
body h2.uabb-infobox-title,
body h3.uabb-infobox-title,
body h4.uabb-infobox-title,
body h5.uabb-infobox-title,
body h6.uabb-infobox-title,
.uabb-infobox-content .uabb-infobox-title-prefix {
	margin: 0;
	padding: 0;
}

.uabb-module-content .uabb-text-editor :not(a) {
	color: inherit;
}

.uabb-module-content .uabb-text-editor :not(i) {
	font-family: inherit;
}

.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
	font-size: inherit;
	line-height: inherit;
}

.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(strong):not(b):not(i) {
	font-weight: inherit;
}

.uabb-infobox-content .uabb-infobox-text p:last-of-type {
	margin-bottom: 0;
}

.uabb-infobox-content .uabb-infobox-text p {
	padding: 0 0 10px;
}

.fl-builder-content .uabb-infobox-text h1,
.fl-builder-content .uabb-infobox-text h2,
.fl-builder-content .uabb-infobox-text h3,
.fl-builder-content .uabb-infobox-text h4,
.fl-builder-content .uabb-infobox-text h5,
.fl-builder-content .uabb-infobox-text h6 {
	margin: 0;
}

.infobox-icon-above-title .uabb-infobox-left-right-wrap,
.infobox-icon-below-title .uabb-infobox-left-right-wrap,
.infobox-photo-above-title .uabb-infobox-left-right-wrap,
.infobox-photo-below-title .uabb-infobox-left-right-wrap {
	display: block;
	min-width: 100%;
	width: 100%;
}

.infobox-icon-above-title .uabb-icon,
.infobox-icon-below-title .uabb-icon,
.infobox-photo-above-title .uabb-imgicon-wrap {
	display: block;
}

.infobox-icon-left-title .uabb-infobox-title,
.infobox-icon-right-title .uabb-infobox-title,
.infobox-icon-left-title .uabb-imgicon-wrap,
.infobox-icon-right-title .uabb-imgicon-wrap,
.infobox-photo-left-title .uabb-infobox-title,
.infobox-photo-right-title .uabb-infobox-title,
.infobox-photo-left-title .uabb-imgicon-wrap,
.infobox-photo-right-title .uabb-imgicon-wrap {
	display: inline-block;
	vertical-align: middle;
}

.infobox-icon-left-title .left-title-image,
.infobox-icon-right-title .right-title-image,
.infobox-icon-left .uabb-infobox-left-right-wrap,
.infobox-icon-right .uabb-infobox-left-right-wrap,
.infobox-photo-left .uabb-infobox-left-right-wrap,
.infobox-photo-right .uabb-infobox-left-right-wrap {
	display: inline-block;
	width: 100%;
}

.infobox-icon-left-title .uabb-imgicon-wrap,
.infobox-icon-left .uabb-imgicon-wrap,
.infobox-photo-left-title .uabb-imgicon-wrap,
.infobox-photo-left .uabb-imgicon-wrap {
	margin-right: 20px;
}

.infobox-icon-right-title .uabb-imgicon-wrap,
.infobox-icon-right .uabb-imgicon-wrap,
.infobox-photo-right-title .uabb-imgicon-wrap,
.infobox-photo-right .uabb-imgicon-wrap {
	margin-left: 20px;
}

.infobox-icon-left .uabb-imgicon-wrap,
.infobox-icon-right .uabb-imgicon-wrap,
.infobox-icon-left .uabb-infobox-content,
.infobox-icon-right .uabb-infobox-content,
.infobox-photo-left .uabb-imgicon-wrap,
.infobox-photo-right .uabb-imgicon-wrap,
.infobox-photo-left .uabb-infobox-content,
.infobox-photo-right .uabb-infobox-content {
	display: inline-block;
	vertical-align: top;
}

.infobox-photo-below-title .uabb-imgicon-wrap {
	display: block;
	margin: 10px 0 15px;
}

.infobox-photo-left-title .uabb-infobox-title-wrap,
.infobox-icon-left-title .uabb-infobox-title-wrap,
.infobox-photo-right-title .uabb-infobox-title-wrap,
.infobox-icon-right-title .uabb-infobox-title-wrap {
	vertical-align: middle;
}

.fl-module-info-box .fl-module-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
}

.fl-module-info-box .uabb-separator-parent {
	line-height: 0;
}

.fl-module-info-box .uabb-infobox-module-link {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 4;
}
@media (max-width: 414px) { .infobox-photo-left,
.infobox-photo-right {
	display: block;
}

.infobox-photo-left .infobox-photo,
.infobox-photo-left-text .infobox-photo {
	display: block;
	margin-bottom: 15px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}

.infobox-photo-right .infobox-photo,
.infobox-photo-right-text .infobox-photo {
	display: block;
	margin-top: 25px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}

.infobox-photo-left .infobox-content,
.infobox-photo-left-text .infobox-content,
.infobox-photo-right .infobox-content,
.infobox-photo-right-text .infobox-content {
	display: block;
	width: auto;
} }
.fl-node-38buecsf4zja {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-38buecsf4zja .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-38buecsf4zja .uabb-image .uabb-photo-img {
							width: 370px;
								}

		.fl-node-38buecsf4zja .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-38buecsf4zja .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-38buecsf4zja .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-38buecsf4zja .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-38buecsf4zja .uabb-infobox {
		}
	/* Align */
.fl-node-38buecsf4zja .infobox-center,
.fl-node-38buecsf4zja .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-38buecsf4zja .uabb-infobox-title {
	margin-top: 0px;
	margin-bottom: 15px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-38buecsf4zja .uabb-infobox-title-prefix {
	margin-top: 35px;
}

/* Heading Color */
.fl-node-38buecsf4zja h3.uabb-infobox-title,
.fl-node-38buecsf4zja h3.uabb-infobox-title span a,
.fl-node-38buecsf4zja h3.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-38buecsf4zja .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-38buecsf4zja .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-38buecsf4zja .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-38buecsf4zja .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-38buecsf4zja .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-38buecsf4zja .uabb-infobox {
		;	}

	

	.fl-node-38buecsf4zja .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-38buecsf4zja .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-38buecsf4zja .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-38buecsf4zja .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-38buecsf4zja .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-38buecsf4zja .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}

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

	/* Global Alignment Css */
	.fl-node-l6eda4puh9xy .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-l6eda4puh9xy .uabb-image .uabb-photo-img {
							width: 370px;
								}

		.fl-node-l6eda4puh9xy .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-l6eda4puh9xy .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-l6eda4puh9xy .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-l6eda4puh9xy .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-l6eda4puh9xy .uabb-infobox {
		}
	/* Align */
.fl-node-l6eda4puh9xy .infobox-center,
.fl-node-l6eda4puh9xy .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-l6eda4puh9xy .uabb-infobox-title {
	margin-top: 0px;
	margin-bottom: 15px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-l6eda4puh9xy .uabb-infobox-title-prefix {
	margin-top: 35px;
}

/* Heading Color */
.fl-node-l6eda4puh9xy h3.uabb-infobox-title,
.fl-node-l6eda4puh9xy h3.uabb-infobox-title span a,
.fl-node-l6eda4puh9xy h3.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-l6eda4puh9xy .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-l6eda4puh9xy .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-l6eda4puh9xy .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-l6eda4puh9xy .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-l6eda4puh9xy .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-l6eda4puh9xy .uabb-infobox {
		;	}

	

	.fl-node-l6eda4puh9xy .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-l6eda4puh9xy .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-l6eda4puh9xy .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-l6eda4puh9xy .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-l6eda4puh9xy .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-l6eda4puh9xy .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}

.fl-node-24kf0pjiv8yg {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-24kf0pjiv8yg .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-24kf0pjiv8yg .uabb-image .uabb-photo-img {
							width: 370px;
								}

		.fl-node-24kf0pjiv8yg .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-24kf0pjiv8yg .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-24kf0pjiv8yg .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-24kf0pjiv8yg .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-24kf0pjiv8yg .uabb-infobox {
		}
	/* Align */
.fl-node-24kf0pjiv8yg .infobox-center,
.fl-node-24kf0pjiv8yg .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-24kf0pjiv8yg .uabb-infobox-title {
	margin-top: 0px;
	margin-bottom: 15px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-24kf0pjiv8yg .uabb-infobox-title-prefix {
	margin-top: 35px;
}

/* Heading Color */
.fl-node-24kf0pjiv8yg h3.uabb-infobox-title,
.fl-node-24kf0pjiv8yg h3.uabb-infobox-title span a,
.fl-node-24kf0pjiv8yg h3.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-24kf0pjiv8yg .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-24kf0pjiv8yg .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-24kf0pjiv8yg .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-24kf0pjiv8yg .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-24kf0pjiv8yg .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-24kf0pjiv8yg .uabb-infobox {
		;	}

	

	.fl-node-24kf0pjiv8yg .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-24kf0pjiv8yg .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-24kf0pjiv8yg .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-24kf0pjiv8yg .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-24kf0pjiv8yg .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-24kf0pjiv8yg .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}
.uabb-photo-content.uabb-img-grayscale img {
	-webkit-filter: grayscale(100%);
	-webkit-filter: grayscale(1);
	filter: grayscale(100%);
	filter: gray;
}

.uabb-photo-content .uabb-photo-caption {
	pointer-events: none;
}

.uabb-photo-img {
	max-height: inherit;
}.fl-node-7ike4oyqlrcj {
	width: 100%;
}

.fl-node-7ike4oyqlrcj .uabb-photo-content {

	}

.fl-node-7ike4oyqlrcj .uabb-photo-content img {

			}
.fl-node-7ike4oyqlrcj .uabb-photo-caption {
	}

.fl-node-7ike4oyqlrcj .uabb-photo-content .uabb-photo-img {
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

	.fl-node-7ike4oyqlrcj .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-7ike4oyqlrcj .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


@media ( max-width: 414px ) {
	.fl-node-7ike4oyqlrcj .uabb-photo-mob-align-center {
		text-align: center;
	}
}
 .fl-node-7ike4oyqlrcj > .fl-module-content {
	margin-right:20px;
}
@media (max-width: 414px) { .fl-node-7ike4oyqlrcj > .fl-module-content { margin-right:10px; } }
.fl-node-rnpi96h8x57g.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-rnpi96h8x57g {
	width: 100%;
}

.fl-node-rnpi96h8x57g .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 85px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-rnpi96h8x57g.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-rnpi96h8x57g .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-rnpi96h8x57g.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-rnpi96h8x57g .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-rnpi96h8x57g > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-tnisac53vywk {
	width: 100%;
}

.fl-node-tnisac53vywk .uabb-photo-content {

	}

.fl-node-tnisac53vywk .uabb-photo-content img {

			}
.fl-node-tnisac53vywk .uabb-photo-caption {
	}

.fl-node-tnisac53vywk .uabb-photo-content .uabb-photo-img {
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

	.fl-node-tnisac53vywk .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-tnisac53vywk .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


@media ( max-width: 414px ) {
	.fl-node-tnisac53vywk .uabb-photo-mob-align-center {
		text-align: center;
	}
}
 .fl-node-tnisac53vywk > .fl-module-content {
	margin-right:0px;
}

.fl-node-atdzu75qkjv2.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-atdzu75qkjv2 {
	width: 100%;
}

.fl-node-atdzu75qkjv2 .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 85px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-atdzu75qkjv2.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-atdzu75qkjv2 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-atdzu75qkjv2.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-atdzu75qkjv2 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-atdzu75qkjv2 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-x6fqhwdazec2 {
	width: 100%;
}

.fl-node-x6fqhwdazec2 .uabb-photo-content {

	}

.fl-node-x6fqhwdazec2 .uabb-photo-content img {

			}
.fl-node-x6fqhwdazec2 .uabb-photo-caption {
	}

.fl-node-x6fqhwdazec2 .uabb-photo-content .uabb-photo-img {
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

	.fl-node-x6fqhwdazec2 .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-x6fqhwdazec2 .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


@media ( max-width: 414px ) {
	.fl-node-x6fqhwdazec2 .uabb-photo-mob-align-center {
		text-align: center;
	}
}
 .fl-node-x6fqhwdazec2 > .fl-module-content {
	margin-right:20px;
}
@media (max-width: 414px) { .fl-node-x6fqhwdazec2 > .fl-module-content { margin-right:10px; } }
.fl-node-ianws8jcfkgd.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-ianws8jcfkgd {
	width: 100%;
}

.fl-node-ianws8jcfkgd .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 85px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-ianws8jcfkgd.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-ianws8jcfkgd .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-ianws8jcfkgd.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-ianws8jcfkgd .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-ianws8jcfkgd > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

.fl-node-nspeo7bqz3vd.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-nspeo7bqz3vd {
	width: 100%;
}

.fl-node-nspeo7bqz3vd .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 85px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-nspeo7bqz3vd.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-nspeo7bqz3vd .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-nspeo7bqz3vd.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-nspeo7bqz3vd .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-nspeo7bqz3vd > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

.fl-node-1x0vrzbwa8d5.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-1x0vrzbwa8d5 {
	width: 100%;
}

.fl-node-1x0vrzbwa8d5 .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 0px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-1x0vrzbwa8d5.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-1x0vrzbwa8d5 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-1x0vrzbwa8d5.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-1x0vrzbwa8d5 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-1x0vrzbwa8d5 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-1x0vrzbwa8d5.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
.fl-node-h2b3avufwyjz {
	width: 100%;
}

.fl-node-h2b3avufwyjz .uabb-photo-content {

	}

.fl-node-h2b3avufwyjz .uabb-photo-content img {

			}
.fl-node-h2b3avufwyjz .uabb-photo-caption {
	}

.fl-node-h2b3avufwyjz .uabb-photo-content .uabb-photo-img {
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

	.fl-node-h2b3avufwyjz .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-h2b3avufwyjz .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


@media ( max-width: 414px ) {
	.fl-node-h2b3avufwyjz .uabb-photo-mob-align-center {
		text-align: center;
	}
}
 .fl-node-h2b3avufwyjz > .fl-module-content {
	margin-right:20px;
}
@media (max-width: 414px) { .fl-node-h2b3avufwyjz > .fl-module-content { margin-right:10px; } }
.fl-node-m2k3bp04iyz9.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-m2k3bp04iyz9 {
	width: 100%;
}

.fl-node-m2k3bp04iyz9 .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 85px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-m2k3bp04iyz9.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-m2k3bp04iyz9 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-m2k3bp04iyz9.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-m2k3bp04iyz9 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-m2k3bp04iyz9 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

.fl-node-vo1wdsiym8tk.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-vo1wdsiym8tk {
	width: 100%;
}

.fl-node-vo1wdsiym8tk .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 85px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-vo1wdsiym8tk.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-vo1wdsiym8tk .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-vo1wdsiym8tk.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-vo1wdsiym8tk .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-vo1wdsiym8tk > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-3zvx214sclab {
	width: 100%;
}

.fl-node-3zvx214sclab .uabb-photo-content {

	}

.fl-node-3zvx214sclab .uabb-photo-content img {

			}
.fl-node-3zvx214sclab .uabb-photo-caption {
	}

.fl-node-3zvx214sclab .uabb-photo-content .uabb-photo-img {
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

	.fl-node-3zvx214sclab .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-3zvx214sclab .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


@media ( max-width: 414px ) {
	.fl-node-3zvx214sclab .uabb-photo-mob-align-center {
		text-align: center;
	}
}
 .fl-node-3zvx214sclab > .fl-module-content {
	margin-right:0px;
}

.fl-node-irp1dka8e24l.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-irp1dka8e24l {
	width: 100%;
}

.fl-node-irp1dka8e24l .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 85px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-irp1dka8e24l.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-irp1dka8e24l .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-irp1dka8e24l.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-irp1dka8e24l .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-irp1dka8e24l > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-uqj38xg1za0v {
	width: 100%;
}

.fl-node-uqj38xg1za0v .uabb-photo-content {

	}

.fl-node-uqj38xg1za0v .uabb-photo-content img {

			}
.fl-node-uqj38xg1za0v .uabb-photo-caption {
	}

.fl-node-uqj38xg1za0v .uabb-photo-content .uabb-photo-img {
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

	.fl-node-uqj38xg1za0v .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-uqj38xg1za0v .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


@media ( max-width: 414px ) {
	.fl-node-uqj38xg1za0v .uabb-photo-mob-align-center {
		text-align: center;
	}
}
 .fl-node-uqj38xg1za0v > .fl-module-content {
	margin-right:0px;
}
.fl-node-85u40v1pbj9t {
	width: 100%;
}

.fl-node-85u40v1pbj9t .uabb-photo-content {

	}

.fl-node-85u40v1pbj9t .uabb-photo-content img {

			}
.fl-node-85u40v1pbj9t .uabb-photo-caption {
	}

.fl-node-85u40v1pbj9t .uabb-photo-content .uabb-photo-img {
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

	.fl-node-85u40v1pbj9t .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-85u40v1pbj9t .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


@media ( max-width: 414px ) {
	.fl-node-85u40v1pbj9t .uabb-photo-mob-align-center {
		text-align: center;
	}
}
 .fl-node-85u40v1pbj9t > .fl-module-content {
	margin-right:20px;
}
@media (max-width: 414px) { .fl-node-85u40v1pbj9t > .fl-module-content { margin-right:10px; } }
.fl-node-admfbk8q7znu.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-admfbk8q7znu {
	width: 100%;
}

.fl-node-admfbk8q7znu .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 85px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-admfbk8q7znu.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-admfbk8q7znu .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-admfbk8q7znu.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-admfbk8q7znu .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-admfbk8q7znu > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-n4fexuk15oj0.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 200;
	font-size: 42px;
	text-align: center;
}
 .fl-node-n4fexuk15oj0 > .fl-module-content {
	margin-top:50px;
	margin-right:50px;
	margin-bottom:50px;
	margin-left:50px;
}
@media (max-width: 414px) { .fl-node-n4fexuk15oj0 > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-node-mbpyt1g0u729.fl-module-heading .fl-heading {
	text-align: left;
}
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: 414px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-w4bhk9uryz5q, .fl-node-w4bhk9uryz5q .fl-photo {
	text-align: center;
}
.fl-node-w4bhk9uryz5q .fl-photo-content, .fl-node-w4bhk9uryz5q .fl-photo-img {
	width: 450px;
}
.fl-module-list .fl-list-item .fl-list-item-wrapper {
  width: 100%;
}

.fl-module-list .fl-list {
  padding-inline-start: unset;
  margin-bottom: 0px;
}

.fl-module-list .fl-list-item {
  border-bottom: none;
}

.fl-module-list .fl-list-item-heading {
  display: table;
  width: 100%;
}

.fl-module-list .fl-list-item-heading .fl-list-item-heading-icon,
.fl-module-list .fl-list-item-heading .fl-list-item-heading-icon .fl-list-item-icon {
  display: inline-block;
}

.fl-module-list .fl-list-item-heading .fl-list-item-heading-text {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.fl-module-list .fl-list-item-content {
  display: table;
  width: 100%;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-icon {
  display: table-cell; 
  vertical-align: middle;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text {
  display: table-cell;
  vertical-align: middle; 
  width: 100%;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text p:last-child {
  margin-bottom: 0px;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text b,
.fl-module-list .fl-list-item-content .fl-list-item-content-text strong {
	font-weight: bold;
}
	.fl-node-gniadthcr6wo .fl-list-item-heading-text,
	.fl-row .fl-col .fl-node-gniadthcr6wo .fl-list-item-heading-text {
		color: #3f6bb0;
	}
		.fl-node-gniadthcr6wo .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-gniadthcr6wo .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-gniadthcr6wo .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-gniadthcr6wo .fl-list-item-content-icon .fl-list-item-icon {
		color: #3f6bb0;
	}
		.fl-node-gniadthcr6wo .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-gniadthcr6wo .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-gniadthcr6wo .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-gniadthcr6wo .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 36px;
	}
	
.fl-node-gniadthcr6wo ul.fl-list,
.fl-node-gniadthcr6wo ol.fl-list {
	list-style-type: none;
}


.fl-node-gniadthcr6wo .fl-list .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-gniadthcr6wo.fl-module-list .fl-list-item-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 24px;
}
.fl-node-gniadthcr6wo .fl-list {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-gniadthcr6wo .fl-list .fl-list-item {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-gniadthcr6wo .fl-list .fl-list-item-icon {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-gniadthcr6wo .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
.fl-row .fl-col .fl-node-oyjit6rwbz5p h2.fl-heading a,
.fl-row .fl-col .fl-node-oyjit6rwbz5p h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-oyjit6rwbz5p h2.fl-heading .fl-heading-text *,
.fl-node-oyjit6rwbz5p h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-oyjit6rwbz5p.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 700;
	font-size: 53px;
	text-align: center;
}
 .fl-node-oyjit6rwbz5p > .fl-module-content {
	margin-top:50px;
	margin-right:50px;
	margin-bottom:50px;
	margin-left:50px;
}
@media (max-width: 414px) { .fl-node-oyjit6rwbz5p > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-node-l4u5d1osxeqh.fl-module-heading .fl-heading {
	text-align: right;
}
.fl-node-fla587drgx6c, .fl-node-fla587drgx6c .fl-photo {
	text-align: center;
}
.fl-node-xtia3c75u9wg.fl-module-heading .fl-heading {
	text-align: left;
}
.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-c69xhsr3dqp2 .fl-rich-text, .fl-builder-content .fl-node-c69xhsr3dqp2 .fl-rich-text *:not(b, strong) {
	font-size: 1.15em;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-c69xhsr3dqp2 .fl-rich-text, .fl-builder-content .fl-node-c69xhsr3dqp2 .fl-rich-text *:not(b, strong) {
		font-size: 1.1em;
	}
}
@media(max-width: 414px) {
	.fl-builder-content .fl-node-c69xhsr3dqp2 .fl-rich-text, .fl-builder-content .fl-node-c69xhsr3dqp2 .fl-rich-text *:not(b, strong) {
		font-size: 1.05em;
	}
}
 .fl-node-c69xhsr3dqp2 > .fl-module-content {
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-c69xhsr3dqp2.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-node-x05ah2udqwfk.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 600;
	font-size: 42px;
	text-align: center;
}
 .fl-node-x05ah2udqwfk > .fl-module-content {
	margin-top:30px;
	margin-bottom:50px;
}
@media (max-width: 414px) { .fl-node-x05ah2udqwfk > .fl-module-content { margin-top:10px;margin-bottom:10px; } }	.fl-node-v45oji6k7g3u .fl-list-item-heading-text,
	.fl-row .fl-col .fl-node-v45oji6k7g3u .fl-list-item-heading-text {
		color: #3f6bb0;
	}
		.fl-node-v45oji6k7g3u .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-v45oji6k7g3u .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-v45oji6k7g3u .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-v45oji6k7g3u .fl-list-item-content-icon .fl-list-item-icon {
		color: #3f6bb0;
	}
		.fl-node-v45oji6k7g3u .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-v45oji6k7g3u .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-v45oji6k7g3u .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-v45oji6k7g3u .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 36px;
	}
	
.fl-node-v45oji6k7g3u ul.fl-list,
.fl-node-v45oji6k7g3u ol.fl-list {
	list-style-type: none;
}


.fl-node-v45oji6k7g3u .fl-list .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-v45oji6k7g3u.fl-module-list .fl-list-item-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 24px;
}
.fl-node-v45oji6k7g3u .fl-list {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-v45oji6k7g3u .fl-list .fl-list-item {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-v45oji6k7g3u .fl-list .fl-list-item-icon {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-v45oji6k7g3u .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-v45oji6k7g3u > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
body.fl-builder {
	overflow-x: hidden;
}

.fl-animated.fl-slide-in-right {
  	animation: fl-slide-in-right 1s ease;
  	-webkit-animation: fl-slide-in-right 1s ease;
}
@-webkit-keyframes fl-slide-in-right {
  from {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-slide-in-right {
  from {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
	.fl-node-a6ou3rg1dl8e .fl-list-item-heading-text,
	.fl-row .fl-col .fl-node-a6ou3rg1dl8e .fl-list-item-heading-text {
		color: #3f6bb0;
	}
		.fl-node-a6ou3rg1dl8e .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-a6ou3rg1dl8e .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-a6ou3rg1dl8e .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-a6ou3rg1dl8e .fl-list-item-content-icon .fl-list-item-icon {
		color: #3f6bb0;
	}
		.fl-node-a6ou3rg1dl8e .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-a6ou3rg1dl8e .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-a6ou3rg1dl8e .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-a6ou3rg1dl8e .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 36px;
	}
	
.fl-node-a6ou3rg1dl8e ul.fl-list,
.fl-node-a6ou3rg1dl8e ol.fl-list {
	list-style-type: none;
}


.fl-node-a6ou3rg1dl8e .fl-list .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-a6ou3rg1dl8e.fl-module-list .fl-list-item-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 24px;
}
.fl-node-a6ou3rg1dl8e .fl-list {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-a6ou3rg1dl8e .fl-list .fl-list-item {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-a6ou3rg1dl8e .fl-list .fl-list-item-icon {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-a6ou3rg1dl8e .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-a6ou3rg1dl8e > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
body.fl-builder {
	overflow-x: hidden;
}

.fl-animated.fl-slide-in-left {
  	animation: fl-slide-in-left 1s ease;
  	-webkit-animation: fl-slide-in-left 1s ease;
}
@-webkit-keyframes fl-slide-in-left {
  from {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-slide-in-left {
  from {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fl-node-gw8ihas4r259.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 300;
	font-size: 30px;
	text-align: left;
}
 .fl-node-gw8ihas4r259 > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
.fl-node-46bf3n9shkqi, .fl-node-46bf3n9shkqi .fl-photo {
	text-align: center;
}
.fl-row .fl-col .fl-node-n5vswkuz0dag h2.fl-heading a,
.fl-row .fl-col .fl-node-n5vswkuz0dag h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-n5vswkuz0dag h2.fl-heading .fl-heading-text *,
.fl-node-n5vswkuz0dag h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-n5vswkuz0dag.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
}
 .fl-node-n5vswkuz0dag > .fl-module-content {
	margin-top:50px;
	margin-right:50px;
	margin-bottom:50px;
	margin-left:50px;
}
@media (max-width: 414px) { .fl-node-n5vswkuz0dag > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-node-fex3bma8kyds.fl-module-heading .fl-heading {
	text-align: left;
}
.fl-node-2ywzok9srpq0, .fl-node-2ywzok9srpq0 .fl-photo {
	text-align: center;
}
.fl-row .fl-col .fl-node-tr31j0vw8omf h2.fl-heading a,
.fl-row .fl-col .fl-node-tr31j0vw8omf h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-tr31j0vw8omf h2.fl-heading .fl-heading-text *,
.fl-node-tr31j0vw8omf h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-tr31j0vw8omf.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
}
 .fl-node-tr31j0vw8omf > .fl-module-content {
	margin-top:50px;
	margin-right:50px;
	margin-bottom:50px;
	margin-left:50px;
}
@media (max-width: 414px) { .fl-node-tr31j0vw8omf > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-node-ikmps0q3j5xv.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 200;
	font-size: 36px;
	text-align: left;
}
.fl-builder-content .fl-node-hjaed0cvi32x .fl-rich-text, .fl-builder-content .fl-node-hjaed0cvi32x .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-hjaed0cvi32x.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-builder-content .fl-node-7pajk98ylv06 .fl-rich-text, .fl-builder-content .fl-node-7pajk98ylv06 .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-7pajk98ylv06.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-node-uksj0mhpgtwf {
	width: 100%;
}

.fl-node-uksj0mhpgtwf .uabb-photo-content {

	}

.fl-node-uksj0mhpgtwf .uabb-photo-content img {

			}
.fl-node-uksj0mhpgtwf .uabb-photo-caption {
	}

.fl-node-uksj0mhpgtwf .uabb-photo-content .uabb-photo-img {
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

	.fl-node-uksj0mhpgtwf .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-uksj0mhpgtwf .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


@media ( max-width: 414px ) {
	.fl-node-uksj0mhpgtwf .uabb-photo-mob-align-center {
		text-align: center;
	}
}
 .fl-node-uksj0mhpgtwf > .fl-module-content {
	margin-right:20px;
}
@media (max-width: 414px) { .fl-node-uksj0mhpgtwf > .fl-module-content { margin-right:10px; } }
.fl-node-cnb6ya0fsk5r.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-cnb6ya0fsk5r {
	width: 100%;
}

.fl-node-cnb6ya0fsk5r .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 85px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-cnb6ya0fsk5r.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-cnb6ya0fsk5r .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-cnb6ya0fsk5r.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-cnb6ya0fsk5r .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-cnb6ya0fsk5r > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-la7xst3iofc9.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
}
 .fl-node-la7xst3iofc9 > .fl-module-content {
	margin-top:50px;
	margin-right:50px;
	margin-bottom:50px;
	margin-left:50px;
}
@media (max-width: 414px) { .fl-node-la7xst3iofc9 > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }	.fl-node-gmko69t8v0qe .fl-list-item-heading-text,
	.fl-row .fl-col .fl-node-gmko69t8v0qe .fl-list-item-heading-text {
		color: #3f6bb0;
	}
		.fl-node-gmko69t8v0qe .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-gmko69t8v0qe .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-gmko69t8v0qe .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-gmko69t8v0qe .fl-list-item-content-icon .fl-list-item-icon {
		color: #3f6bb0;
	}
		.fl-node-gmko69t8v0qe .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-gmko69t8v0qe .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-gmko69t8v0qe .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-gmko69t8v0qe .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 36px;
	}
	
.fl-node-gmko69t8v0qe ul.fl-list,
.fl-node-gmko69t8v0qe ol.fl-list {
	list-style-type: none;
}


.fl-node-gmko69t8v0qe .fl-list .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-gmko69t8v0qe.fl-module-list .fl-list-item-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 24px;
}
.fl-node-gmko69t8v0qe .fl-list {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-gmko69t8v0qe .fl-list .fl-list-item {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-gmko69t8v0qe .fl-list .fl-list-item-icon {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-gmko69t8v0qe .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-gmko69t8v0qe > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
	.fl-node-nrkupitqgx1y .fl-list-item-heading-text,
	.fl-row .fl-col .fl-node-nrkupitqgx1y .fl-list-item-heading-text {
		color: #3f6bb0;
	}
		.fl-node-nrkupitqgx1y .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-nrkupitqgx1y .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-nrkupitqgx1y .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-nrkupitqgx1y .fl-list-item-content-icon .fl-list-item-icon {
		color: #3f6bb0;
	}
		.fl-node-nrkupitqgx1y .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-nrkupitqgx1y .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-nrkupitqgx1y .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-nrkupitqgx1y .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 36px;
	}
	
.fl-node-nrkupitqgx1y ul.fl-list,
.fl-node-nrkupitqgx1y ol.fl-list {
	list-style-type: none;
}


.fl-node-nrkupitqgx1y .fl-list .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-nrkupitqgx1y.fl-module-list .fl-list-item-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 24px;
}
.fl-node-nrkupitqgx1y .fl-list {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-nrkupitqgx1y .fl-list .fl-list-item {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-nrkupitqgx1y .fl-list .fl-list-item-icon {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-nrkupitqgx1y .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-nrkupitqgx1y > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-sfh29acwyxjr, .fl-node-sfh29acwyxjr .fl-photo {
	text-align: center;
}
.fl-row .fl-col .fl-node-d60j4xtzwk83 h2.fl-heading a,
.fl-row .fl-col .fl-node-d60j4xtzwk83 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-d60j4xtzwk83 h2.fl-heading .fl-heading-text *,
.fl-node-d60j4xtzwk83 h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-d60j4xtzwk83.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 700;
	font-size: 55px;
	text-align: center;
}
 .fl-node-d60j4xtzwk83 > .fl-module-content {
	margin-top:0px;
	margin-bottom:37px;
}
@media (max-width: 414px) { .fl-node-d60j4xtzwk83 > .fl-module-content { margin-bottom:10px; } }.fl-row .fl-col .fl-node-nt1kdaogp5ry h2.fl-heading a,
.fl-row .fl-col .fl-node-nt1kdaogp5ry h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-nt1kdaogp5ry h2.fl-heading .fl-heading-text *,
.fl-node-nt1kdaogp5ry h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-nt1kdaogp5ry.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
}
 .fl-node-nt1kdaogp5ry > .fl-module-content {
	margin-top:50px;
	margin-right:50px;
	margin-bottom:50px;
	margin-left:50px;
}
@media (max-width: 414px) { .fl-node-nt1kdaogp5ry > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-node-2yq6r8guxacj.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 30px;
	text-align: center;
}
 .fl-node-2yq6r8guxacj > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:20px;
	margin-left:40px;
}
@media (max-width: 414px) { .fl-node-2yq6r8guxacj > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }	.fl-node-so18kn6cjwr7 .fl-list-item-heading-text,
	.fl-row .fl-col .fl-node-so18kn6cjwr7 .fl-list-item-heading-text {
		color: #3f6bb0;
	}
		.fl-node-so18kn6cjwr7 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-so18kn6cjwr7 .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-so18kn6cjwr7 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-so18kn6cjwr7 .fl-list-item-content-icon .fl-list-item-icon {
		color: #3f6bb0;
	}
		.fl-node-so18kn6cjwr7 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-so18kn6cjwr7 .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-so18kn6cjwr7 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-so18kn6cjwr7 .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 36px;
	}
	
.fl-node-so18kn6cjwr7 ul.fl-list,
.fl-node-so18kn6cjwr7 ol.fl-list {
	list-style-type: none;
}


.fl-node-so18kn6cjwr7 .fl-list .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-so18kn6cjwr7.fl-module-list .fl-list-item-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 24px;
}
.fl-node-so18kn6cjwr7 .fl-list {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-so18kn6cjwr7 .fl-list .fl-list-item {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-so18kn6cjwr7 .fl-list .fl-list-item-icon {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-so18kn6cjwr7 .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-so18kn6cjwr7 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
	.fl-node-5s36a942p87j .fl-list-item-heading-text,
	.fl-row .fl-col .fl-node-5s36a942p87j .fl-list-item-heading-text {
		color: #3f6bb0;
	}
		.fl-node-5s36a942p87j .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-5s36a942p87j .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5s36a942p87j .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5s36a942p87j .fl-list-item-content-icon .fl-list-item-icon {
		color: #3f6bb0;
	}
		.fl-node-5s36a942p87j .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-5s36a942p87j .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5s36a942p87j .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-5s36a942p87j .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 36px;
	}
	
.fl-node-5s36a942p87j ul.fl-list,
.fl-node-5s36a942p87j ol.fl-list {
	list-style-type: none;
}


.fl-node-5s36a942p87j .fl-list .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-5s36a942p87j.fl-module-list .fl-list-item-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 24px;
}
.fl-node-5s36a942p87j .fl-list {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-5s36a942p87j .fl-list .fl-list-item {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-5s36a942p87j .fl-list .fl-list-item-icon {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-5s36a942p87j .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-5s36a942p87j > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-t8jis6pqmgun.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 30px;
	text-align: center;
}
 .fl-node-t8jis6pqmgun > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:20px;
	margin-left:40px;
}
@media (max-width: 414px) { .fl-node-t8jis6pqmgun > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-node-4yvkhzdc6gw8.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 300;
	font-size: 24px;
	line-height: 1.3;
	text-align: center;
}
.fl-row .fl-col .fl-node-hajnk8mztc2o h2.fl-heading a,
.fl-row .fl-col .fl-node-hajnk8mztc2o h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-hajnk8mztc2o h2.fl-heading .fl-heading-text *,
.fl-node-hajnk8mztc2o h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-hajnk8mztc2o.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 42px;
	text-align: center;
}
 .fl-node-hajnk8mztc2o > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:20px;
	margin-left:40px;
}
@media (max-width: 414px) { .fl-node-hajnk8mztc2o > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-row .fl-col .fl-node-r4a0lbwzux1d h2.fl-heading a,
.fl-row .fl-col .fl-node-r4a0lbwzux1d h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-r4a0lbwzux1d h2.fl-heading .fl-heading-text *,
.fl-node-r4a0lbwzux1d h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-r4a0lbwzux1d.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 42px;
	text-align: center;
}
 .fl-node-r4a0lbwzux1d > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:20px;
	margin-left:40px;
}
@media (max-width: 414px) { .fl-node-r4a0lbwzux1d > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-row .fl-col .fl-node-csx3izjqo7a5 h2.fl-heading a,
.fl-row .fl-col .fl-node-csx3izjqo7a5 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-csx3izjqo7a5 h2.fl-heading .fl-heading-text *,
.fl-node-csx3izjqo7a5 h2.fl-heading .fl-heading-text {
	color: #990000;
}
.fl-node-csx3izjqo7a5.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 700;
	font-size: 36px;
	text-align: center;
}
 .fl-node-csx3izjqo7a5 > .fl-module-content {
	margin-top:15px;
	margin-right:80px;
	margin-bottom:35px;
	margin-left:80px;
}
@media (max-width: 414px) { .fl-node-csx3izjqo7a5 > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.bb-heading-input.input-small {
	width: 46px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #222222;
									display: inline;
	}
div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 30px;
			border-bottom-style: solid;
			border-bottom-color: #03a9f4;
			border-bottom-width: 2px;
	}

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


div.fl-node-bi0hr6twnycl .pp-heading-content .pp-sub-heading,
div.fl-node-bi0hr6twnycl .pp-heading-content .pp-sub-heading p {
		color: #6d6d6d;
	}

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

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

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

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

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

div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

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

div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 2px;
			border-bottom-color: #03a9f4;
			width: 30px;
			float: left;
	}

div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


@media only screen and (max-width: 768px) {
	div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-bi0hr6twnycl .pp-heading-content {
				text-align: center;
			}
	div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 414px) {
	div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-bi0hr6twnycl .pp-heading-content {
				text-align: center;
			}
	div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading .heading-title {
	line-height: 1.4;
}
div.fl-node-bi0hr6twnycl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-bi0hr6twnycl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-bi0hr6twnycl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-bi0hr6twnycl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-bi0hr6twnycl .pp-heading-content .pp-sub-heading, div.fl-node-bi0hr6twnycl .pp-heading-content .pp-sub-heading p {
	line-height: 1.6;
}
div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 20px;
	margin-bottom: 20px;
}
div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-bi0hr6twnycl .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-4xmt96h75pa3, .fl-node-4xmt96h75pa3 .fl-photo {
	text-align: center;
}

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

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

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

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


div.fl-node-i821069mdy7z .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #222222;
									display: inline;
	}
div.fl-node-i821069mdy7z .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-i821069mdy7z .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-i821069mdy7z .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-i821069mdy7z .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-i821069mdy7z .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

div.fl-node-i821069mdy7z .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

div.fl-node-i821069mdy7z .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 30px;
			border-bottom-style: solid;
			border-bottom-color: #03a9f4;
			border-bottom-width: 2px;
	}

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


div.fl-node-i821069mdy7z .pp-heading-content .pp-sub-heading,
div.fl-node-i821069mdy7z .pp-heading-content .pp-sub-heading p {
		color: #6d6d6d;
	}

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

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

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

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

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

div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

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

div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 2px;
			border-bottom-color: #03a9f4;
			width: 30px;
			float: left;
	}

div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


@media only screen and (max-width: 768px) {
	div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-i821069mdy7z .pp-heading-content {
				text-align: center;
			}
	div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 414px) {
	div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-i821069mdy7z .pp-heading-content {
				text-align: center;
			}
	div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-i821069mdy7z .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-i821069mdy7z .pp-heading-content .pp-heading .heading-title {
	line-height: 1.4;
}
div.fl-node-i821069mdy7z div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-i821069mdy7z div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-i821069mdy7z div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-i821069mdy7z div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-i821069mdy7z .pp-heading-content .pp-sub-heading, div.fl-node-i821069mdy7z .pp-heading-content .pp-sub-heading p {
	line-height: 1.6;
}
div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 20px;
	margin-bottom: 20px;
}
div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-i821069mdy7z .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-fp21d49octbi, .fl-node-fp21d49octbi .fl-photo {
	text-align: center;
}

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

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

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

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


div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #222222;
									display: inline;
	}
div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 30px;
			border-bottom-style: solid;
			border-bottom-color: #03a9f4;
			border-bottom-width: 2px;
	}

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


div.fl-node-k48whx3fe7la .pp-heading-content .pp-sub-heading,
div.fl-node-k48whx3fe7la .pp-heading-content .pp-sub-heading p {
		color: #6d6d6d;
	}

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

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

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

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

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

div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

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

div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 2px;
			border-bottom-color: #03a9f4;
			width: 30px;
			float: left;
	}

div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


@media only screen and (max-width: 768px) {
	div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-k48whx3fe7la .pp-heading-content {
				text-align: center;
			}
	div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 414px) {
	div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-k48whx3fe7la .pp-heading-content {
				text-align: center;
			}
	div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading .heading-title {
	line-height: 1.4;
}
div.fl-node-k48whx3fe7la div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-k48whx3fe7la div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-k48whx3fe7la div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-k48whx3fe7la div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-k48whx3fe7la .pp-heading-content .pp-sub-heading, div.fl-node-k48whx3fe7la .pp-heading-content .pp-sub-heading p {
	line-height: 1.6;
}
div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 20px;
	margin-bottom: 20px;
}
div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-k48whx3fe7la .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-ul672nmo9jca, .fl-node-ul672nmo9jca .fl-photo {
	text-align: center;
}
.fl-node-ul672nmo9jca .fl-photo-content, .fl-node-ul672nmo9jca .fl-photo-img {
	width: 300px;
}

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

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

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

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


div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #222222;
									display: inline;
	}
div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 30px;
			border-bottom-style: solid;
			border-bottom-color: #03a9f4;
			border-bottom-width: 2px;
	}

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


div.fl-node-imdhfsnut7cj .pp-heading-content .pp-sub-heading,
div.fl-node-imdhfsnut7cj .pp-heading-content .pp-sub-heading p {
		color: #6d6d6d;
	}

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

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

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

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

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

div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

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

div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 2px;
			border-bottom-color: #03a9f4;
			width: 30px;
			float: left;
	}

div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


@media only screen and (max-width: 768px) {
	div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-imdhfsnut7cj .pp-heading-content {
				text-align: center;
			}
	div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 414px) {
	div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-imdhfsnut7cj .pp-heading-content {
				text-align: center;
			}
	div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading .heading-title {
	line-height: 1.4;
}
div.fl-node-imdhfsnut7cj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-imdhfsnut7cj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-imdhfsnut7cj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-imdhfsnut7cj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-imdhfsnut7cj .pp-heading-content .pp-sub-heading, div.fl-node-imdhfsnut7cj .pp-heading-content .pp-sub-heading p {
	line-height: 1.6;
}
div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 20px;
	margin-bottom: 20px;
}
div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-imdhfsnut7cj .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-hl4zjq1y7mo6, .fl-node-hl4zjq1y7mo6 .fl-photo {
	text-align: center;
}
.fl-node-hl4zjq1y7mo6 .fl-photo-content, .fl-node-hl4zjq1y7mo6 .fl-photo-img {
	width: 550px;
}

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

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

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

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


div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #222222;
									display: inline;
	}
div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 30px;
			border-bottom-style: solid;
			border-bottom-color: #03a9f4;
			border-bottom-width: 2px;
	}

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


div.fl-node-bloazyvw06dj .pp-heading-content .pp-sub-heading,
div.fl-node-bloazyvw06dj .pp-heading-content .pp-sub-heading p {
		color: #6d6d6d;
	}

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

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

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

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

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

div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 30px;
			border-style: solid;
			border-color: #03a9f4;
			border-bottom-width: 2px;
	}

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

div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 2px;
			border-bottom-color: #03a9f4;
			width: 30px;
			float: left;
	}

div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


@media only screen and (max-width: 768px) {
	div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-bloazyvw06dj .pp-heading-content {
				text-align: center;
			}
	div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 414px) {
	div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-bloazyvw06dj .pp-heading-content {
				text-align: center;
			}
	div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading .heading-title {
	line-height: 1.4;
}
div.fl-node-bloazyvw06dj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-bloazyvw06dj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-bloazyvw06dj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-bloazyvw06dj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-bloazyvw06dj .pp-heading-content .pp-sub-heading, div.fl-node-bloazyvw06dj .pp-heading-content .pp-sub-heading p {
	line-height: 1.6;
}
div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 20px;
	margin-bottom: 20px;
}
div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-bloazyvw06dj .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-yelfxwph7z8r, .fl-node-yelfxwph7z8r .fl-photo {
	text-align: center;
}
.fl-node-yelfxwph7z8r .fl-photo-content, .fl-node-yelfxwph7z8r .fl-photo-img {
	width: 550px;
}
.fl-row .fl-col .fl-node-qpsne0jl4hgo h2.fl-heading a,
.fl-row .fl-col .fl-node-qpsne0jl4hgo h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-qpsne0jl4hgo h2.fl-heading .fl-heading-text *,
.fl-node-qpsne0jl4hgo h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-qpsne0jl4hgo.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 40px;
	text-align: center;
}
 .fl-node-qpsne0jl4hgo > .fl-module-content {
	margin-top:45px;
	margin-right:45px;
	margin-bottom:45px;
	margin-left:45px;
}
@media (max-width: 414px) { .fl-node-qpsne0jl4hgo > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-row .fl-col .fl-node-go04t8qk7z6i h2.fl-heading a,
.fl-row .fl-col .fl-node-go04t8qk7z6i h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-go04t8qk7z6i h2.fl-heading .fl-heading-text *,
.fl-node-go04t8qk7z6i h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-go04t8qk7z6i.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 40px;
	text-align: center;
}
 .fl-node-go04t8qk7z6i > .fl-module-content {
	margin-top:45px;
	margin-right:45px;
	margin-bottom:45px;
	margin-left:45px;
}
@media (max-width: 414px) { .fl-node-go04t8qk7z6i > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button,
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover,
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:visited,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:visited {
	background: linear-gradient(to bottom,  #ffba5e 0%, #ff9c40 100%);
}

.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button,
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:visited,
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button *,
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:visited *,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:visited,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button *,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:visited * {
	color: #e8e7e7;
}





.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover,
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:focus,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:focus {

	background: #3f6bb0;

		background: linear-gradient(to bottom,  #5d89ce 0%, #3f6bb0 100%);
	}

.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover,
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover span.fl-button-text,
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover *,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover span.fl-button-text,
.fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover * {
	color: #f4a460;
}







.fl-node-7wsdfy3x9moz.fl-button-wrap, .fl-node-7wsdfy3x9moz .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button {
	padding-top: 24px;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 24px;
}
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button, .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:visited, .fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button, .fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:visited {
	font-family: Oswald, sans-serif;
	font-weight: 600;
	font-size: 28px;
	text-align: center;
	border: 1px solid #f39034;
}
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover, .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:focus, .fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover, .fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:focus {
	border: 1px solid #335fa4;
}
.fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button, .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:visited, .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover, .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:focus, .fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button, .fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:visited, .fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:hover, .fl-page .fl-builder-content .fl-node-7wsdfy3x9moz a.fl-button:focus {
	border-top-left-radius: 13px;
	border-top-right-radius: 13px;
	border-bottom-left-radius: 13px;
	border-bottom-right-radius: 13px;
}

.fl-node-2sl9m3kun8i0 {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-2sl9m3kun8i0 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-2sl9m3kun8i0 .uabb-image .uabb-photo-img {
							width: 370px;
								}

		.fl-node-2sl9m3kun8i0 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-2sl9m3kun8i0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-2sl9m3kun8i0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-2sl9m3kun8i0 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-2sl9m3kun8i0 .uabb-infobox {
		}
	/* Align */
.fl-node-2sl9m3kun8i0 .infobox-center,
.fl-node-2sl9m3kun8i0 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-2sl9m3kun8i0 .uabb-infobox-title {
	margin-top: 0px;
	margin-bottom: 15px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-2sl9m3kun8i0 .uabb-infobox-title-prefix {
	margin-top: 35px;
}

/* Heading Color */
.fl-node-2sl9m3kun8i0 h3.uabb-infobox-title,
.fl-node-2sl9m3kun8i0 h3.uabb-infobox-title span a,
.fl-node-2sl9m3kun8i0 h3.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-2sl9m3kun8i0 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-2sl9m3kun8i0 .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-2sl9m3kun8i0 .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-2sl9m3kun8i0 .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-2sl9m3kun8i0 .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-2sl9m3kun8i0 .uabb-infobox {
		;	}

	

	.fl-node-2sl9m3kun8i0 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-2sl9m3kun8i0 .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-2sl9m3kun8i0 .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-2sl9m3kun8i0 .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-2sl9m3kun8i0 .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-2sl9m3kun8i0 .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}

.fl-node-58f2hc0bem3t {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-58f2hc0bem3t .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-58f2hc0bem3t .uabb-image .uabb-photo-img {
							width: 370px;
								}

		.fl-node-58f2hc0bem3t .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-58f2hc0bem3t .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-58f2hc0bem3t .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-58f2hc0bem3t .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-58f2hc0bem3t .uabb-infobox {
		}
	/* Align */
.fl-node-58f2hc0bem3t .infobox-center,
.fl-node-58f2hc0bem3t .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-58f2hc0bem3t .uabb-infobox-title {
	margin-top: 0px;
	margin-bottom: 15px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-58f2hc0bem3t .uabb-infobox-title-prefix {
	margin-top: 35px;
}

/* Heading Color */
.fl-node-58f2hc0bem3t h3.uabb-infobox-title,
.fl-node-58f2hc0bem3t h3.uabb-infobox-title span a,
.fl-node-58f2hc0bem3t h3.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-58f2hc0bem3t .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-58f2hc0bem3t .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-58f2hc0bem3t .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-58f2hc0bem3t .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-58f2hc0bem3t .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-58f2hc0bem3t .uabb-infobox {
		;	}

	

	.fl-node-58f2hc0bem3t .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-58f2hc0bem3t .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-58f2hc0bem3t .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-58f2hc0bem3t .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-58f2hc0bem3t .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-58f2hc0bem3t .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}

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

	/* Global Alignment Css */
	.fl-node-8rlw7btehgaj .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-8rlw7btehgaj .uabb-image .uabb-photo-img {
							width: 370px;
								}

		.fl-node-8rlw7btehgaj .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-8rlw7btehgaj .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-8rlw7btehgaj .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-8rlw7btehgaj .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-8rlw7btehgaj .uabb-infobox {
		}
	/* Align */
.fl-node-8rlw7btehgaj .infobox-center,
.fl-node-8rlw7btehgaj .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-8rlw7btehgaj .uabb-infobox-title {
	margin-top: 0px;
	margin-bottom: 15px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-8rlw7btehgaj .uabb-infobox-title-prefix {
	margin-top: 35px;
}

/* Heading Color */
.fl-node-8rlw7btehgaj h3.uabb-infobox-title,
.fl-node-8rlw7btehgaj h3.uabb-infobox-title span a,
.fl-node-8rlw7btehgaj h3.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-8rlw7btehgaj .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-8rlw7btehgaj .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-8rlw7btehgaj .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-8rlw7btehgaj .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-8rlw7btehgaj .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-8rlw7btehgaj .uabb-infobox {
		;	}

	

	.fl-node-8rlw7btehgaj .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-8rlw7btehgaj .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-8rlw7btehgaj .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-8rlw7btehgaj .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-8rlw7btehgaj .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-8rlw7btehgaj .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}

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

	/* Global Alignment Css */
	.fl-node-pvaiu8crx3es .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-pvaiu8crx3es .uabb-image .uabb-photo-img {
							width: 370px;
								}

		.fl-node-pvaiu8crx3es .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-pvaiu8crx3es .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-pvaiu8crx3es .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-pvaiu8crx3es .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-pvaiu8crx3es .uabb-infobox {
		}
	/* Align */
.fl-node-pvaiu8crx3es .infobox-center,
.fl-node-pvaiu8crx3es .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-pvaiu8crx3es .uabb-infobox-title {
	margin-top: 0px;
	margin-bottom: 15px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-pvaiu8crx3es .uabb-infobox-title-prefix {
	margin-top: 35px;
}

/* Heading Color */
.fl-node-pvaiu8crx3es h3.uabb-infobox-title,
.fl-node-pvaiu8crx3es h3.uabb-infobox-title span a,
.fl-node-pvaiu8crx3es h3.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-pvaiu8crx3es .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-pvaiu8crx3es .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-pvaiu8crx3es .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-pvaiu8crx3es .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-pvaiu8crx3es .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-pvaiu8crx3es .uabb-infobox {
		;	}

	

	.fl-node-pvaiu8crx3es .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-pvaiu8crx3es .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-pvaiu8crx3es .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-pvaiu8crx3es .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-pvaiu8crx3es .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-pvaiu8crx3es .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}

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

	/* Global Alignment Css */
	.fl-node-cbk5duezqnj3 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-cbk5duezqnj3 .uabb-image .uabb-photo-img {
							width: 370px;
								}

		.fl-node-cbk5duezqnj3 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-cbk5duezqnj3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-cbk5duezqnj3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-cbk5duezqnj3 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-cbk5duezqnj3 .uabb-infobox {
		}
	/* Align */
.fl-node-cbk5duezqnj3 .infobox-center,
.fl-node-cbk5duezqnj3 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-cbk5duezqnj3 .uabb-infobox-title {
	margin-top: 0px;
	margin-bottom: 15px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-cbk5duezqnj3 .uabb-infobox-title-prefix {
	margin-top: 35px;
}

/* Heading Color */
.fl-node-cbk5duezqnj3 h3.uabb-infobox-title,
.fl-node-cbk5duezqnj3 h3.uabb-infobox-title span a,
.fl-node-cbk5duezqnj3 h3.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-cbk5duezqnj3 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-cbk5duezqnj3 .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-cbk5duezqnj3 .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-cbk5duezqnj3 .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-cbk5duezqnj3 .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-cbk5duezqnj3 .uabb-infobox {
		;	}

	

	.fl-node-cbk5duezqnj3 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-cbk5duezqnj3 .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-cbk5duezqnj3 .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-cbk5duezqnj3 .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-cbk5duezqnj3 .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-cbk5duezqnj3 .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}

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

	/* Global Alignment Css */
	.fl-node-o1sg75bifjh8 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-o1sg75bifjh8 .uabb-image .uabb-photo-img {
							width: 370px;
								}

		.fl-node-o1sg75bifjh8 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-o1sg75bifjh8 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-o1sg75bifjh8 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-o1sg75bifjh8 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-o1sg75bifjh8 .uabb-infobox {
		}
	/* Align */
.fl-node-o1sg75bifjh8 .infobox-center,
.fl-node-o1sg75bifjh8 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-o1sg75bifjh8 .uabb-infobox-title {
	margin-top: 0px;
	margin-bottom: 15px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-o1sg75bifjh8 .uabb-infobox-title-prefix {
	margin-top: 35px;
}

/* Heading Color */
.fl-node-o1sg75bifjh8 h3.uabb-infobox-title,
.fl-node-o1sg75bifjh8 h3.uabb-infobox-title span a,
.fl-node-o1sg75bifjh8 h3.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-o1sg75bifjh8 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-o1sg75bifjh8 .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-o1sg75bifjh8 .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-o1sg75bifjh8 .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-o1sg75bifjh8 .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-o1sg75bifjh8 .uabb-infobox {
		;	}

	

	.fl-node-o1sg75bifjh8 .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-o1sg75bifjh8 .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-o1sg75bifjh8 .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-o1sg75bifjh8 .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-o1sg75bifjh8 .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-o1sg75bifjh8 .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}
.fl-row .fl-col .fl-node-6sry475mnvut h2.fl-heading a,
.fl-row .fl-col .fl-node-6sry475mnvut h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-6sry475mnvut h2.fl-heading .fl-heading-text *,
.fl-node-6sry475mnvut h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-6sry475mnvut.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 42px;
	text-align: center;
}
 .fl-node-6sry475mnvut > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:20px;
	margin-left:40px;
}
@media (max-width: 414px) { .fl-node-6sry475mnvut > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-row .fl-col .fl-node-tzvxwg1o2suc h2.fl-heading a,
.fl-row .fl-col .fl-node-tzvxwg1o2suc h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-tzvxwg1o2suc h2.fl-heading .fl-heading-text *,
.fl-node-tzvxwg1o2suc h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-tzvxwg1o2suc.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 42px;
	text-align: center;
}
 .fl-node-tzvxwg1o2suc > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:20px;
	margin-left:40px;
}
@media (max-width: 414px) { .fl-node-tzvxwg1o2suc > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }
.fl-node-qalb6i4nw92p.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-qalb6i4nw92p {
	width: 100%;
}

.fl-node-qalb6i4nw92p .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 21px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-qalb6i4nw92p.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-qalb6i4nw92p .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 40px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-qalb6i4nw92p.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-qalb6i4nw92p .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 15px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-qalb6i4nw92p > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

.fl-node-u32oxjwzp61m.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-u32oxjwzp61m {
	width: 100%;
}

.fl-node-u32oxjwzp61m .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 0px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-u32oxjwzp61m.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-u32oxjwzp61m .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-u32oxjwzp61m.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-u32oxjwzp61m .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-u32oxjwzp61m > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-u32oxjwzp61m.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
.fl-node-8w3dmkhryv1e {
	width: 100%;
}

.fl-node-8w3dmkhryv1e .uabb-photo-content {

	}

.fl-node-8w3dmkhryv1e .uabb-photo-content img {

			}
.fl-node-8w3dmkhryv1e .uabb-photo-caption {
	}

.fl-node-8w3dmkhryv1e .uabb-photo-content .uabb-photo-img {
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

	.fl-node-8w3dmkhryv1e .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-8w3dmkhryv1e .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


@media ( max-width: 414px ) {
	.fl-node-8w3dmkhryv1e .uabb-photo-mob-align-center {
		text-align: center;
	}
}
 .fl-node-8w3dmkhryv1e > .fl-module-content {
	margin-right:0px;
}

.fl-node-am3dvnwrphjf.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-am3dvnwrphjf {
	width: 100%;
}

.fl-node-am3dvnwrphjf .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 0px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-am3dvnwrphjf.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-am3dvnwrphjf .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-am3dvnwrphjf.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-am3dvnwrphjf .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-am3dvnwrphjf > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-am3dvnwrphjf.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}

.fl-node-6sdi0wvaex1y.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-6sdi0wvaex1y {
	width: 100%;
}

.fl-node-6sdi0wvaex1y .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 0px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-6sdi0wvaex1y.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-6sdi0wvaex1y .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-6sdi0wvaex1y.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-6sdi0wvaex1y .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-6sdi0wvaex1y > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-6sdi0wvaex1y.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
.fl-row .fl-col .fl-node-te15j6vbf2kx h2.fl-heading a,
.fl-row .fl-col .fl-node-te15j6vbf2kx h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-te15j6vbf2kx h2.fl-heading .fl-heading-text *,
.fl-node-te15j6vbf2kx h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-te15j6vbf2kx.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}
.fl-row .fl-col .fl-node-rci3ewlk7hgx h2.fl-heading a,
.fl-row .fl-col .fl-node-rci3ewlk7hgx h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-rci3ewlk7hgx h2.fl-heading .fl-heading-text *,
.fl-node-rci3ewlk7hgx h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-rci3ewlk7hgx.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}
.fl-row .fl-col .fl-node-m3845sxc16hz h2.fl-heading a,
.fl-row .fl-col .fl-node-m3845sxc16hz h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-m3845sxc16hz h2.fl-heading .fl-heading-text *,
.fl-node-m3845sxc16hz h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-m3845sxc16hz.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}
.fl-row .fl-col .fl-node-1mi5ygu86d4v h2.fl-heading a,
.fl-row .fl-col .fl-node-1mi5ygu86d4v h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-1mi5ygu86d4v h2.fl-heading .fl-heading-text *,
.fl-node-1mi5ygu86d4v h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-1mi5ygu86d4v.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}
.fl-row .fl-col .fl-node-xco917bvnmig h2.fl-heading a,
.fl-row .fl-col .fl-node-xco917bvnmig h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-xco917bvnmig h2.fl-heading .fl-heading-text *,
.fl-node-xco917bvnmig h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-xco917bvnmig.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}
.fl-row .fl-col .fl-node-spka9xoemu56 h2.fl-heading a,
.fl-row .fl-col .fl-node-spka9xoemu56 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-spka9xoemu56 h2.fl-heading .fl-heading-text *,
.fl-node-spka9xoemu56 h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-spka9xoemu56.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}
.fl-row .fl-col .fl-node-ditk16fja543 h2.fl-heading a,
.fl-row .fl-col .fl-node-ditk16fja543 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ditk16fja543 h2.fl-heading .fl-heading-text *,
.fl-node-ditk16fja543 h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-ditk16fja543.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}
.fl-row .fl-col .fl-node-inxzaw78mc61 h2.fl-heading a,
.fl-row .fl-col .fl-node-inxzaw78mc61 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-inxzaw78mc61 h2.fl-heading .fl-heading-text *,
.fl-node-inxzaw78mc61 h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-inxzaw78mc61.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}
.fl-node-icshml5z61n4.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 600;
	font-size: 48px;
	text-align: center;
}
 .fl-node-icshml5z61n4 > .fl-module-content {
	margin-top:38px;
}
@media (max-width: 414px) { .fl-node-icshml5z61n4 > .fl-module-content { margin-top:10px; } }.fl-builder-content .fl-node-ijx8k32td0y4 .fl-rich-text, .fl-builder-content .fl-node-ijx8k32td0y4 .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-ijx8k32td0y4.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-builder-content .fl-node-a2kqyl0zho3v .fl-rich-text, .fl-builder-content .fl-node-a2kqyl0zho3v .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-a2kqyl0zho3v.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-builder-content .fl-node-dzoag6lntx3j .fl-rich-text, .fl-builder-content .fl-node-dzoag6lntx3j .fl-rich-text *:not(b, strong) {
	text-align: right;
}
@media ( max-width: 414px ) {
 .fl-node-dzoag6lntx3j.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-builder-content .fl-node-8znskae7uxqy .fl-rich-text, .fl-builder-content .fl-node-8znskae7uxqy .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-8znskae7uxqy.fl-module > .fl-module-content {
	margin-top:0px;
}
}
 .fl-node-rz8dk1ij9e2l > .fl-module-content {
	margin-bottom:5px;
}
@media ( max-width: 414px ) {
 .fl-node-rz8dk1ij9e2l.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-builder-content .fl-node-fpoeat0m45hb .fl-rich-text, .fl-builder-content .fl-node-fpoeat0m45hb .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-fpoeat0m45hb.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-row .fl-col .fl-node-q4ktnbyax7s2 h2.fl-heading a,
.fl-row .fl-col .fl-node-q4ktnbyax7s2 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-q4ktnbyax7s2 h2.fl-heading .fl-heading-text *,
.fl-node-q4ktnbyax7s2 h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-q4ktnbyax7s2.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}
.fl-node-jxteld0w5ir1.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 300;
	font-size: 29px;
	text-align: center;
}
.fl-node-s8nlu61v3yiz.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 300;
	font-size: 28px;
	text-align: center;
}
 .fl-node-s8nlu61v3yiz > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:40px;
	margin-left:10px;
}
@media (max-width: 414px) { .fl-node-s8nlu61v3yiz > .fl-module-content { margin-bottom:10px; } }.fl-node-yv8j0gcrde47.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 300;
	font-size: 28px;
	text-align: center;
}
 .fl-node-yv8j0gcrde47 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:40px;
	margin-left:10px;
}
@media (max-width: 414px) { .fl-node-yv8j0gcrde47 > .fl-module-content { margin-bottom:10px; } }
.fl-node-fmhktu3lqnyv.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-fmhktu3lqnyv {
	width: 100%;
}

.fl-node-fmhktu3lqnyv .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 15px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-fmhktu3lqnyv.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-fmhktu3lqnyv .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 10px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-fmhktu3lqnyv.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-fmhktu3lqnyv .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 10px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-fmhktu3lqnyv > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-qkgin3pvj7y9 h2.fl-heading a,
.fl-row .fl-col .fl-node-qkgin3pvj7y9 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-qkgin3pvj7y9 h2.fl-heading .fl-heading-text *,
.fl-node-qkgin3pvj7y9 h2.fl-heading .fl-heading-text {
	color: #990000;
}
.fl-node-qkgin3pvj7y9.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 700;
	font-size: 36px;
	text-align: center;
}
 .fl-node-qkgin3pvj7y9 > .fl-module-content {
	margin-top:15px;
	margin-right:80px;
	margin-bottom:35px;
	margin-left:80px;
}
@media (max-width: 414px) { .fl-node-qkgin3pvj7y9 > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }
.fl-node-3fncg56aibsp.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-3fncg56aibsp {
	width: 100%;
}

.fl-node-3fncg56aibsp .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 30px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-3fncg56aibsp.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-3fncg56aibsp .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 40px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-3fncg56aibsp.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-3fncg56aibsp .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 20px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-3fncg56aibsp > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-3fncg56aibsp.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}

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

	.fl-node-4fkxbtu0eqyv .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-4fkxbtu0eqyv .uabb-infobox {
		}
	/* Align */
.fl-node-4fkxbtu0eqyv .infobox-left,
.fl-node-4fkxbtu0eqyv .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-4fkxbtu0eqyv .uabb-infobox-title {
	margin-top: 3px;
	margin-bottom: 45px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-4fkxbtu0eqyv h2.uabb-infobox-title,
.fl-node-4fkxbtu0eqyv h2.uabb-infobox-title span a,
.fl-node-4fkxbtu0eqyv h2.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-4fkxbtu0eqyv .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 28px;
}

/* Description Color */

.fl-node-4fkxbtu0eqyv .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-4fkxbtu0eqyv .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-4fkxbtu0eqyv .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-4fkxbtu0eqyv .uabb-infobox {
		;	}

	

	.fl-node-4fkxbtu0eqyv .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-4fkxbtu0eqyv .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-4fkxbtu0eqyv .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-4fkxbtu0eqyv .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-4fkxbtu0eqyv .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-4fkxbtu0eqyv .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

	.fl-node-s5n39hv1ot28 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-s5n39hv1ot28 .uabb-infobox {
		}
	/* Align */
.fl-node-s5n39hv1ot28 .infobox-left,
.fl-node-s5n39hv1ot28 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-s5n39hv1ot28 .uabb-infobox-title {
	margin-top: 3px;
	margin-bottom: 45px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-s5n39hv1ot28 h2.uabb-infobox-title,
.fl-node-s5n39hv1ot28 h2.uabb-infobox-title span a,
.fl-node-s5n39hv1ot28 h2.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-s5n39hv1ot28 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 28px;
}

/* Description Color */

.fl-node-s5n39hv1ot28 .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-s5n39hv1ot28 .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-s5n39hv1ot28 .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-s5n39hv1ot28 .uabb-infobox {
		;	}

	

	.fl-node-s5n39hv1ot28 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-s5n39hv1ot28 .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-s5n39hv1ot28 .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-s5n39hv1ot28 .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-s5n39hv1ot28 .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-s5n39hv1ot28 .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

	.fl-node-movfg7x014uz .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-movfg7x014uz .uabb-infobox {
		}
	/* Align */
.fl-node-movfg7x014uz .infobox-left,
.fl-node-movfg7x014uz .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-movfg7x014uz .uabb-infobox-title {
	margin-top: 3px;
	margin-bottom: 45px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-movfg7x014uz h2.uabb-infobox-title,
.fl-node-movfg7x014uz h2.uabb-infobox-title span a,
.fl-node-movfg7x014uz h2.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-movfg7x014uz .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 28px;
}

/* Description Color */

.fl-node-movfg7x014uz .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-movfg7x014uz .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-movfg7x014uz .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-movfg7x014uz .uabb-infobox {
		;	}

	

	.fl-node-movfg7x014uz .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-movfg7x014uz .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-movfg7x014uz .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-movfg7x014uz .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-movfg7x014uz .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-movfg7x014uz .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

	.fl-node-pdvih3l92b1t .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-pdvih3l92b1t .uabb-infobox {
		}
	/* Align */
.fl-node-pdvih3l92b1t .infobox-left,
.fl-node-pdvih3l92b1t .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-pdvih3l92b1t .uabb-infobox-title {
	margin-top: 3px;
	margin-bottom: 45px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-pdvih3l92b1t h2.uabb-infobox-title,
.fl-node-pdvih3l92b1t h2.uabb-infobox-title span a,
.fl-node-pdvih3l92b1t h2.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-pdvih3l92b1t .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 28px;
}

/* Description Color */

.fl-node-pdvih3l92b1t .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-pdvih3l92b1t .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-pdvih3l92b1t .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-pdvih3l92b1t .uabb-infobox {
		;	}

	

	.fl-node-pdvih3l92b1t .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-pdvih3l92b1t .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-pdvih3l92b1t .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-pdvih3l92b1t .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-pdvih3l92b1t .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-pdvih3l92b1t .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

	.fl-node-wb0dhze17oiy .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-wb0dhze17oiy .uabb-infobox {
		}
	/* Align */
.fl-node-wb0dhze17oiy .infobox-left,
.fl-node-wb0dhze17oiy .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-wb0dhze17oiy .uabb-infobox-title {
	margin-top: 3px;
	margin-bottom: 45px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-wb0dhze17oiy h2.uabb-infobox-title,
.fl-node-wb0dhze17oiy h2.uabb-infobox-title span a,
.fl-node-wb0dhze17oiy h2.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-wb0dhze17oiy .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 28px;
}

/* Description Color */

.fl-node-wb0dhze17oiy .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-wb0dhze17oiy .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-wb0dhze17oiy .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-wb0dhze17oiy .uabb-infobox {
		;	}

	

	.fl-node-wb0dhze17oiy .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-wb0dhze17oiy .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-wb0dhze17oiy .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-wb0dhze17oiy .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-wb0dhze17oiy .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-wb0dhze17oiy .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

	.fl-node-djy61onkwcba .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-djy61onkwcba .uabb-infobox {
		}
	/* Align */
.fl-node-djy61onkwcba .infobox-left,
.fl-node-djy61onkwcba .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-djy61onkwcba .uabb-infobox-title {
	margin-top: 3px;
	margin-bottom: 45px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-djy61onkwcba h2.uabb-infobox-title,
.fl-node-djy61onkwcba h2.uabb-infobox-title span a,
.fl-node-djy61onkwcba h2.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-djy61onkwcba .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 28px;
}

/* Description Color */

.fl-node-djy61onkwcba .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-djy61onkwcba .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-djy61onkwcba .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-djy61onkwcba .uabb-infobox {
		;	}

	

	.fl-node-djy61onkwcba .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-djy61onkwcba .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-djy61onkwcba .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-djy61onkwcba .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-djy61onkwcba .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-djy61onkwcba .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

	.fl-node-c2nif4zd1ptv .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-c2nif4zd1ptv .uabb-infobox {
		}
	/* Align */
.fl-node-c2nif4zd1ptv .infobox-left,
.fl-node-c2nif4zd1ptv .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-c2nif4zd1ptv .uabb-infobox-title {
	margin-top: 3px;
	margin-bottom: 45px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-c2nif4zd1ptv h2.uabb-infobox-title,
.fl-node-c2nif4zd1ptv h2.uabb-infobox-title span a,
.fl-node-c2nif4zd1ptv h2.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-c2nif4zd1ptv .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 28px;
}

/* Description Color */

.fl-node-c2nif4zd1ptv .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-c2nif4zd1ptv .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-c2nif4zd1ptv .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-c2nif4zd1ptv .uabb-infobox {
		;	}

	

	.fl-node-c2nif4zd1ptv .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-c2nif4zd1ptv .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-c2nif4zd1ptv .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-c2nif4zd1ptv .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-c2nif4zd1ptv .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-c2nif4zd1ptv .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

	.fl-node-getfd20qlr58 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-getfd20qlr58 .uabb-infobox {
		}
	/* Align */
.fl-node-getfd20qlr58 .infobox-left,
.fl-node-getfd20qlr58 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-getfd20qlr58 .uabb-infobox-title {
	margin-top: 3px;
	margin-bottom: 45px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-getfd20qlr58 h2.uabb-infobox-title,
.fl-node-getfd20qlr58 h2.uabb-infobox-title span a,
.fl-node-getfd20qlr58 h2.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-getfd20qlr58 .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 28px;
}

/* Description Color */

.fl-node-getfd20qlr58 .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-getfd20qlr58 .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-getfd20qlr58 .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-getfd20qlr58 .uabb-infobox {
		;	}

	

	.fl-node-getfd20qlr58 .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-getfd20qlr58 .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-getfd20qlr58 .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-getfd20qlr58 .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-getfd20qlr58 .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-getfd20qlr58 .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}
.fl-node-lih1r0p74sj5.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 300;
	font-size: 30px;
	text-align: left;
}
 .fl-node-lih1r0p74sj5 > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}

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

	.fl-node-sr1fhxotnp9d .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-sr1fhxotnp9d .uabb-infobox {
		}
	/* Align */
.fl-node-sr1fhxotnp9d .infobox-left,
.fl-node-sr1fhxotnp9d .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-sr1fhxotnp9d .uabb-infobox-title {
	margin-top: 3px;
	margin-bottom: 45px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-sr1fhxotnp9d h2.uabb-infobox-title,
.fl-node-sr1fhxotnp9d h2.uabb-infobox-title span a,
.fl-node-sr1fhxotnp9d h2.uabb-infobox-title * {
	color: #000000}


.fl-builder-content .fl-node-sr1fhxotnp9d .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 28px;
}

/* Description Color */

.fl-node-sr1fhxotnp9d .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */

/* Icon Margin */
/* Image Margin */




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-sr1fhxotnp9d .uabb-infobox-title-prefix {
			color: #808285;
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-sr1fhxotnp9d .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-sr1fhxotnp9d .uabb-infobox {
		;	}

	

	.fl-node-sr1fhxotnp9d .infobox-responsive-center {
		text-align: center;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-sr1fhxotnp9d .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-sr1fhxotnp9d .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-sr1fhxotnp9d .uabb-infobox-title-prefix {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.33em;
}
@media(max-width: 768px) {
	.fl-node-sr1fhxotnp9d .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-sr1fhxotnp9d .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

.fl-node-kcjl1qhfgz5e.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-kcjl1qhfgz5e {
	width: 100%;
}

.fl-node-kcjl1qhfgz5e .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 45px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-kcjl1qhfgz5e.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-kcjl1qhfgz5e .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 60px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-kcjl1qhfgz5e.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-kcjl1qhfgz5e .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 40px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-kcjl1qhfgz5e > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

.fl-node-okq2sij6zpam.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-okq2sij6zpam {
	width: 100%;
}

.fl-node-okq2sij6zpam .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 0px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-okq2sij6zpam.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-okq2sij6zpam .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-okq2sij6zpam.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-okq2sij6zpam .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-okq2sij6zpam > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-okq2sij6zpam.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
.fl-node-bxzkda80cf6u.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
.fl-node-86fdbxzvm9hl.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
.fl-node-7lji0khfr3e6.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
.fl-node-0gnjlam68c9d.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
.fl-node-j981egb4ryvs.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
.fl-node-dgk7lvxpeu2m.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
.fl-node-c4gdarhfnw9m.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
 .fl-node-g38hbspmaenz > .fl-module-content {
	margin-bottom:5px;
}
@media ( max-width: 414px ) {
 .fl-node-g38hbspmaenz.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-node-bofcny6kja5x.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}

.fl-node-dhslcbqie1mo.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-dhslcbqie1mo {
	width: 100%;
}

.fl-node-dhslcbqie1mo .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 40px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-dhslcbqie1mo.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-dhslcbqie1mo .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 20px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-dhslcbqie1mo.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-dhslcbqie1mo .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 10px;
				clear: both;
				width: 100%;
			}
		}		
		
.fl-node-n560wp98v1kc.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-n560wp98v1kc {
	width: 100%;
}

.fl-node-n560wp98v1kc .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 0px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-n560wp98v1kc.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-n560wp98v1kc .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-n560wp98v1kc.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-n560wp98v1kc .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-n560wp98v1kc > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-n560wp98v1kc.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}

.fl-node-klbrh1e6jxsf.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-klbrh1e6jxsf {
	width: 100%;
}

.fl-node-klbrh1e6jxsf .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 0px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-klbrh1e6jxsf.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-klbrh1e6jxsf .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-klbrh1e6jxsf.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-klbrh1e6jxsf .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-klbrh1e6jxsf > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-klbrh1e6jxsf.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}

.fl-node-hrl4f0at2w69.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-hrl4f0at2w69 {
	width: 100%;
}

.fl-node-hrl4f0at2w69 .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 0px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-hrl4f0at2w69.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-hrl4f0at2w69 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-hrl4f0at2w69.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-hrl4f0at2w69 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-hrl4f0at2w69 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-hrl4f0at2w69.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
.fl-node-r7x5z4ygeach.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}

.fl-node-zm25acq1fw6o.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-zm25acq1fw6o {
	width: 100%;
}

.fl-node-zm25acq1fw6o .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 85px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-zm25acq1fw6o.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-zm25acq1fw6o .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-zm25acq1fw6o.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-zm25acq1fw6o .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-zm25acq1fw6o > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

.fl-node-60yrf5utnk8s.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-60yrf5utnk8s {
	width: 100%;
}

.fl-node-60yrf5utnk8s .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 0px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-60yrf5utnk8s.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-60yrf5utnk8s .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-60yrf5utnk8s.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-60yrf5utnk8s .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-60yrf5utnk8s > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-60yrf5utnk8s.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
.uabb-heading-wrapper .uabb-heading {
	padding: 0;
	margin: 0;
}

.uabb-module-content.uabb-heading-wrapper {
	position: relative;
}

.uabb-module-content .uabb-text-editor :not(a) {
	color: inherit;
}

.uabb-module-content .uabb-text-editor :not(i) {
	font-family: inherit;
}

.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
	font-size: inherit;
	line-height: inherit;
}

.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(strong):not(b):not(i) {
	font-weight: inherit;
}

.uabb-background-heading-wrap {
	z-index: 2;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

.uabb-background-heading-wrap::before {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 0;
	display: block;
	color: rgba(0, 0, 0, 0.09);
	content: attr(data-background-text);
	font-size: 100px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.uabb-module-content.uabb-heading-wrapper.uabb-heading-align-center .uabb-background-heading-wrap:before {
	top: 40%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.uabb-module-content.uabb-heading-wrapper.uabb-heading-align-right .uabb-background-heading-wrap:before {
	right: 0;
	left: auto;
}

.uabb-heading-wrapper .uabb-heading a,
.uabb-heading a,
.uabb-heading a:hover,
.uabb-heading a:focus,
.uabb-heading a:active {
	text-decoration: none;
}

.uabb-heading-align-left .uabb-heading,
.uabb-heading-align-left .uabb-subheading,
.uabb-heading-align-left .uabb-subheading *,
.uabb-module-content.uabb-heading-wrapper.uabb-heading-align-left .uabb-background-heading-wrap {
	text-align: left;
}

.uabb-heading-align-center .uabb-heading,
.uabb-heading-align-center .uabb-subheading,
.uabb-heading-align-center .uabb-subheading *,
.uabb-module-content.uabb-heading-wrapper.uabb-heading-align-center .uabb-background-heading-wrap {
	text-align: center;
}

.uabb-heading-align-right .uabb-heading,
.uabb-heading-align-right .uabb-subheading,
.uabb-heading-align-right .uabb-subheading *,
.uabb-module-content.uabb-heading-wrapper.uabb-heading-align-right .uabb-background-heading-wrap {
	text-align: right;
}	.uabb-heading-wrapper .uabb-subheading * {
		margin: 0;
	}
	
.fl-node-dgkq0ti4usf5 .uabb-heading .uabb-heading-text {
	}
.fl-node-dgkq0ti4usf5 .uabb-heading .uabb-heading-text {

	}

.fl-node-dgkq0ti4usf5 .uabb-heading-wrapper .uabb-heading {
	margin-top: 0px;
	margin-bottom: 15px;
}

.fl-node-dgkq0ti4usf5 .uabb-subheading {
	margin-top: 15px;
	margin-bottom: 0px;
}

/* Heading Color */
.fl-node-dgkq0ti4usf5 .fl-module-content.fl-node-content .uabb-heading,
.fl-node-dgkq0ti4usf5 .fl-module-content.fl-node-content .uabb-heading .uabb-heading-text,
.fl-node-dgkq0ti4usf5 .fl-module-content.fl-node-content .uabb-heading * {

	}

/* Heading's Description Color */

/* Heading's Description Typography */
/* Background text styling */
.fl-node-dgkq0ti4usf5 .uabb-module-content.uabb-heading-wrapper .uabb-background-heading-wrap::before {
	color: ;
	
}

				@media ( max-width: 768px ) {

			/* For Medium Device */
			.fl-node-dgkq0ti4usf5 .uabb-responsive-medsmall .uabb-side-left,
			.fl-node-dgkq0ti4usf5 .uabb-responsive-medsmall .uabb-side-right {
				width: 20%;
			}

			.fl-node-dgkq0ti4usf5 .uabb-responsive-medsmall .uabb-divider-content h3 {
				white-space: normal;
			}

						.fl-node-dgkq0ti4usf5 .uabb-heading .uabb-heading-text {
							}
			.uabb-background-heading-wrap::before {
				-webkit-transform: translateY(-50%);
				-ms-transform: translateY(-50%);
				transform: translateY(-50%);
			}
		}

				@media ( max-width: 414px ) {

			/* For Small Device */
			.fl-node-dgkq0ti4usf5 .uabb-responsive-mobile .uabb-side-left,
			.fl-node-dgkq0ti4usf5 .uabb-responsive-mobile .uabb-side-right,
			.fl-node-dgkq0ti4usf5 .uabb-responsive-medsmall .uabb-side-left,
			.fl-node-dgkq0ti4usf5 .uabb-responsive-medsmall .uabb-side-right {
				width: 10%;
			}

			.fl-node-dgkq0ti4usf5 .uabb-responsive-mobile .uabb-divider-content h3 {
				white-space: normal;
			}
						.fl-node-dgkq0ti4usf5 .uabb-heading .uabb-heading-text {
							}

			.fl-node-dgkq0ti4usf5 .uabb-heading-wrapper .uabb-heading,
			.fl-node-dgkq0ti4usf5 .uabb-heading-wrapper .uabb-subheading,
			.fl-node-dgkq0ti4usf5 .uabb-heading-wrapper .uabb-subheading * {
				text-align: center;
			}
			.uabb-background-heading-wrap::before {
				-webkit-transform: translateY(-50%);
				-ms-transform: translateY(-50%);
				transform: translateY(-50%);
			}

					}
	.fl-node-dgkq0ti4usf5 .uabb-heading-wrapper .uabb-heading,.fl-node-dgkq0ti4usf5 .uabb-heading-wrapper .uabb-heading .uabb-heading-text {
	font-family: "Shadows Into Light Two", cursive;
	font-weight: 400;
}

.fl-node-iwr98zdu4hbl.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-iwr98zdu4hbl {
	width: 100%;
}

.fl-node-iwr98zdu4hbl .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 15px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-iwr98zdu4hbl.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-iwr98zdu4hbl .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 10px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-iwr98zdu4hbl.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-iwr98zdu4hbl .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 10px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-iwr98zdu4hbl > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

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

	/* Global Alignment Css */
	.fl-node-kr4mtwhlja8g .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-kr4mtwhlja8g .uabb-image .uabb-photo-img {
							width: 220px;
								}

		.fl-node-kr4mtwhlja8g .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-kr4mtwhlja8g .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-kr4mtwhlja8g .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-kr4mtwhlja8g .uabb-icon-wrap .uabb-icon i {
					}

.fl-node-kr4mtwhlja8g .infobox-icon-left-title .uabb-imgicon-wrap,
.fl-node-kr4mtwhlja8g .infobox-icon-right-title .uabb-imgicon-wrap,
.fl-node-kr4mtwhlja8g .infobox-photo-left-title .uabb-imgicon-wrap,
.fl-node-kr4mtwhlja8g .infobox-photo-right-title .uabb-imgicon-wrap {
	vertical-align: top;
}
			
/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-kr4mtwhlja8g .uabb-infobox {
		}
	/* Align */
.fl-node-kr4mtwhlja8g .infobox-left,
.fl-node-kr4mtwhlja8g .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-infobox-title {
	margin-top: 20px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-infobox-title-prefix {
	margin-top: 0px;
}

/* Heading Color */
.fl-node-kr4mtwhlja8g h3.uabb-infobox-title,
.fl-node-kr4mtwhlja8g h3.uabb-infobox-title span a,
.fl-node-kr4mtwhlja8g h3.uabb-infobox-title * {
	color: #808285}


.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-kr4mtwhlja8g .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
		.fl-node-kr4mtwhlja8g .infobox-left .uabb-imgicon-wrap {
		margin-right: 20px;
	}
		
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */
	.fl-node-kr4mtwhlja8g .uabb-infobox {
		text-align: left;
	}
	.fl-builder-content .fl-node-kr4mtwhlja8g .infobox-photo-left .uabb-infobox-content{
		width: calc(100% - 240px);
	}

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-infobox {
		;	}

			.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			padding: 0;
			margin-bottom: 20px;
		}

		.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-infobox .uabb-infobox-left-right-wrap .uabb-infobox-content,
		.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-infobox .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			display: block;
			width: 100%;
			text-align: center;
		}

		.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-reverse-order .uabb-infobox-left-right-wrap,
		.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-reverse-order .uabb-infobox-left-right-wrap {
			display: inline-flex;
			flex-direction: column-reverse;
		}

		.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-infobox.infobox-left .uabb-imgicon-wrap,
		.fl-builder-content .fl-node-kr4mtwhlja8g .uabb-infobox.infobox-right .uabb-imgicon-wrap {
			margin-left: 0;
			margin-right: 0;
		}
			

	.fl-node-kr4mtwhlja8g .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
			.fl-node-kr4mtwhlja8g .uabb-infobox {
			text-align: left;
		}
		.fl-builder-content .fl-node-kr4mtwhlja8g .infobox-photo-left .uabb-infobox-content{
			width: calc(100% - 240px);
		}
	}

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

	/* Global Alignment Css */
	.fl-node-c7w501hpxdvq .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-c7w501hpxdvq .uabb-image .uabb-photo-img {
							width: 220px;
								}

		.fl-node-c7w501hpxdvq .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-c7w501hpxdvq .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-c7w501hpxdvq .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-c7w501hpxdvq .uabb-icon-wrap .uabb-icon i {
					}

.fl-node-c7w501hpxdvq .infobox-icon-left-title .uabb-imgicon-wrap,
.fl-node-c7w501hpxdvq .infobox-icon-right-title .uabb-imgicon-wrap,
.fl-node-c7w501hpxdvq .infobox-photo-left-title .uabb-imgicon-wrap,
.fl-node-c7w501hpxdvq .infobox-photo-right-title .uabb-imgicon-wrap {
	vertical-align: top;
}
			
/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-c7w501hpxdvq .uabb-infobox {
		}
	/* Align */
.fl-node-c7w501hpxdvq .infobox-left,
.fl-node-c7w501hpxdvq .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-c7w501hpxdvq .uabb-infobox-title {
	margin-top: 20px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-c7w501hpxdvq .uabb-infobox-title-prefix {
	margin-top: 0px;
}

/* Heading Color */
.fl-node-c7w501hpxdvq h3.uabb-infobox-title,
.fl-node-c7w501hpxdvq h3.uabb-infobox-title span a,
.fl-node-c7w501hpxdvq h3.uabb-infobox-title * {
	color: #808285}


.fl-builder-content .fl-node-c7w501hpxdvq .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-c7w501hpxdvq .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
		.fl-node-c7w501hpxdvq .infobox-left .uabb-imgicon-wrap {
		margin-right: 20px;
	}
		
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-c7w501hpxdvq .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-c7w501hpxdvq .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */
	.fl-node-c7w501hpxdvq .uabb-infobox {
		text-align: left;
	}
	.fl-builder-content .fl-node-c7w501hpxdvq .infobox-photo-left .uabb-infobox-content{
		width: calc(100% - 240px);
	}

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-c7w501hpxdvq .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-c7w501hpxdvq .uabb-infobox {
		;	}

			.fl-builder-content .fl-node-c7w501hpxdvq .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			padding: 0;
			margin-bottom: 20px;
		}

		.fl-builder-content .fl-node-c7w501hpxdvq .uabb-infobox .uabb-infobox-left-right-wrap .uabb-infobox-content,
		.fl-builder-content .fl-node-c7w501hpxdvq .uabb-infobox .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			display: block;
			width: 100%;
			text-align: center;
		}

		.fl-builder-content .fl-node-c7w501hpxdvq .uabb-reverse-order .uabb-infobox-left-right-wrap,
		.fl-builder-content .fl-node-c7w501hpxdvq .uabb-reverse-order .uabb-infobox-left-right-wrap {
			display: inline-flex;
			flex-direction: column-reverse;
		}

		.fl-builder-content .fl-node-c7w501hpxdvq .uabb-infobox.infobox-left .uabb-imgicon-wrap,
		.fl-builder-content .fl-node-c7w501hpxdvq .uabb-infobox.infobox-right .uabb-imgicon-wrap {
			margin-left: 0;
			margin-right: 0;
		}
			

	.fl-node-c7w501hpxdvq .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
			.fl-node-c7w501hpxdvq .uabb-infobox {
			text-align: left;
		}
		.fl-builder-content .fl-node-c7w501hpxdvq .infobox-photo-left .uabb-infobox-content{
			width: calc(100% - 240px);
		}
	}

.fl-node-kb6719ylhu4o.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-kb6719ylhu4o {
	width: 100%;
}

.fl-node-kb6719ylhu4o .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 40px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-kb6719ylhu4o.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-kb6719ylhu4o .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 20px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-kb6719ylhu4o.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-kb6719ylhu4o .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 10px;
				clear: both;
				width: 100%;
			}
		}		
		
.fl-node-bpadw5yz0l8x.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-bpadw5yz0l8x {
	width: 100%;
}

.fl-node-bpadw5yz0l8x .uabb-spacer-gap-preview.uabb-spacer-gap {
	height: 20px;
	clear: both;
	width: 100%;
} 


		@media ( max-width: 768px ) {
			.fl-node-bpadw5yz0l8x.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-bpadw5yz0l8x .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 10px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-bpadw5yz0l8x.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-bpadw5yz0l8x .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 10px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-bpadw5yz0l8x > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

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

	/* Global Alignment Css */
	.fl-node-muf1xvdb9jit .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-muf1xvdb9jit .uabb-image .uabb-photo-img {
							width: 220px;
								}

		.fl-node-muf1xvdb9jit .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-muf1xvdb9jit .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-muf1xvdb9jit .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-muf1xvdb9jit .uabb-icon-wrap .uabb-icon i {
					}

.fl-node-muf1xvdb9jit .infobox-icon-left-title .uabb-imgicon-wrap,
.fl-node-muf1xvdb9jit .infobox-icon-right-title .uabb-imgicon-wrap,
.fl-node-muf1xvdb9jit .infobox-photo-left-title .uabb-imgicon-wrap,
.fl-node-muf1xvdb9jit .infobox-photo-right-title .uabb-imgicon-wrap {
	vertical-align: top;
}
			
/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-muf1xvdb9jit .uabb-infobox {
		}
	/* Align */
.fl-node-muf1xvdb9jit .infobox-left,
.fl-node-muf1xvdb9jit .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-muf1xvdb9jit .uabb-infobox-title {
	margin-top: 20px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-muf1xvdb9jit .uabb-infobox-title-prefix {
	margin-top: 0px;
}

/* Heading Color */
.fl-node-muf1xvdb9jit h3.uabb-infobox-title,
.fl-node-muf1xvdb9jit h3.uabb-infobox-title span a,
.fl-node-muf1xvdb9jit h3.uabb-infobox-title * {
	color: #808285}


.fl-builder-content .fl-node-muf1xvdb9jit .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-muf1xvdb9jit .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
		.fl-node-muf1xvdb9jit .infobox-left .uabb-imgicon-wrap {
		margin-right: 20px;
	}
		
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-muf1xvdb9jit .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-muf1xvdb9jit .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */
	.fl-node-muf1xvdb9jit .uabb-infobox {
		text-align: left;
	}
	.fl-builder-content .fl-node-muf1xvdb9jit .infobox-photo-left .uabb-infobox-content{
		width: calc(100% - 240px);
	}

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-muf1xvdb9jit .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-muf1xvdb9jit .uabb-infobox {
		;	}

			.fl-builder-content .fl-node-muf1xvdb9jit .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			padding: 0;
			margin-bottom: 20px;
		}

		.fl-builder-content .fl-node-muf1xvdb9jit .uabb-infobox .uabb-infobox-left-right-wrap .uabb-infobox-content,
		.fl-builder-content .fl-node-muf1xvdb9jit .uabb-infobox .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			display: block;
			width: 100%;
			text-align: center;
		}

		.fl-builder-content .fl-node-muf1xvdb9jit .uabb-reverse-order .uabb-infobox-left-right-wrap,
		.fl-builder-content .fl-node-muf1xvdb9jit .uabb-reverse-order .uabb-infobox-left-right-wrap {
			display: inline-flex;
			flex-direction: column-reverse;
		}

		.fl-builder-content .fl-node-muf1xvdb9jit .uabb-infobox.infobox-left .uabb-imgicon-wrap,
		.fl-builder-content .fl-node-muf1xvdb9jit .uabb-infobox.infobox-right .uabb-imgicon-wrap {
			margin-left: 0;
			margin-right: 0;
		}
			

	.fl-node-muf1xvdb9jit .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
			.fl-node-muf1xvdb9jit .uabb-infobox {
			text-align: left;
		}
		.fl-builder-content .fl-node-muf1xvdb9jit .infobox-photo-left .uabb-infobox-content{
			width: calc(100% - 240px);
		}
	}

.fl-node-37om0x1whpsz {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-37om0x1whpsz .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-37om0x1whpsz .uabb-image .uabb-photo-img {
							width: 220px;
								}

		.fl-node-37om0x1whpsz .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 768px ) {
			.fl-node-37om0x1whpsz .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 414px ) {
			.fl-node-37om0x1whpsz .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-37om0x1whpsz .uabb-icon-wrap .uabb-icon i {
					}

.fl-node-37om0x1whpsz .infobox-icon-left-title .uabb-imgicon-wrap,
.fl-node-37om0x1whpsz .infobox-icon-right-title .uabb-imgicon-wrap,
.fl-node-37om0x1whpsz .infobox-photo-left-title .uabb-imgicon-wrap,
.fl-node-37om0x1whpsz .infobox-photo-right-title .uabb-imgicon-wrap {
	vertical-align: top;
}
			
/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-37om0x1whpsz .uabb-infobox {
		}
	/* Align */
.fl-node-37om0x1whpsz .infobox-left,
.fl-node-37om0x1whpsz .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-37om0x1whpsz .uabb-infobox-title {
	margin-top: 20px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */
.fl-builder-content .fl-node-37om0x1whpsz .uabb-infobox-title-prefix {
	margin-top: 0px;
}

/* Heading Color */
.fl-node-37om0x1whpsz h3.uabb-infobox-title,
.fl-node-37om0x1whpsz h3.uabb-infobox-title span a,
.fl-node-37om0x1whpsz h3.uabb-infobox-title * {
	color: #808285}


.fl-builder-content .fl-node-37om0x1whpsz .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-37om0x1whpsz .uabb-infobox-text {
	color:
	;
}

/* Icon Margin */
		.fl-node-37om0x1whpsz .infobox-left .uabb-imgicon-wrap {
		margin-right: 20px;
	}
		
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-37om0x1whpsz .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-37om0x1whpsz .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */
	.fl-node-37om0x1whpsz .uabb-infobox {
		text-align: left;
	}
	.fl-builder-content .fl-node-37om0x1whpsz .infobox-photo-left .uabb-infobox-content{
		width: calc(100% - 240px);
	}

/* Responsive CSS */

	
	@media (max-width: 768px) { 
		.fl-builder-content .fl-node-37om0x1whpsz .uabb-infobox {
			;		}
	}

	@media (max-width: 414px) { 
	.fl-builder-content .fl-node-37om0x1whpsz .uabb-infobox {
		;	}

			.fl-builder-content .fl-node-37om0x1whpsz .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			padding: 0;
			margin-bottom: 20px;
		}

		.fl-builder-content .fl-node-37om0x1whpsz .uabb-infobox .uabb-infobox-left-right-wrap .uabb-infobox-content,
		.fl-builder-content .fl-node-37om0x1whpsz .uabb-infobox .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			display: block;
			width: 100%;
			text-align: center;
		}

		.fl-builder-content .fl-node-37om0x1whpsz .uabb-reverse-order .uabb-infobox-left-right-wrap,
		.fl-builder-content .fl-node-37om0x1whpsz .uabb-reverse-order .uabb-infobox-left-right-wrap {
			display: inline-flex;
			flex-direction: column-reverse;
		}

		.fl-builder-content .fl-node-37om0x1whpsz .uabb-infobox.infobox-left .uabb-imgicon-wrap,
		.fl-builder-content .fl-node-37om0x1whpsz .uabb-infobox.infobox-right .uabb-imgicon-wrap {
			margin-left: 0;
			margin-right: 0;
		}
			

	.fl-node-37om0x1whpsz .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
			.fl-node-37om0x1whpsz .uabb-infobox {
			text-align: left;
		}
		.fl-builder-content .fl-node-37om0x1whpsz .infobox-photo-left .uabb-infobox-content{
			width: calc(100% - 240px);
		}
	}

/* Start Global CSS */
/* Zoom in on hover */
.hover-zoom-in .fl-photo-content {
  overflow: hidden;
}
.hover-zoom-in .fl-photo-content .fl-photo-img {
  -webkit-transition: 0.3s ease-in-out;
          transition: 0.3s ease-in-out;
  will-change: transform;
}
.hover-zoom-in .fl-photo-content .fl-photo-img:hover {
  -webkit-transition: 0.3s ease-in-out;
          transition: 0.3s ease-in-out;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

/* Equal height Column Bottom Alignment */
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
          -webkit-box-align: end;
           -webkit-box-pack: end;
              -ms-flex-pack: end;
}

/* H1-H6 Margin Reset in all Modules */
.uabb-module-content h1,
.uabb-module-content h2,
.uabb-module-content h3,
.uabb-module-content h4,
.uabb-module-content h5,
.uabb-module-content h6 {
    margin: 0;
    clear: both;
}

/* Anchor Tag Css */

.fl-module-content a,
.fl-module-content a:hover,
.fl-module-content a:focus {
    text-decoration: none;
}

/* Row Separator CSS */

.uabb-row-separator {
    position: absolute;
    width: 100%;
    left: 0;
}

.uabb-top-row-separator {
    top: 0;
    bottom: auto
}

.uabb-bottom-row-separator {
    top: auto;
    bottom: 0;
}

.fl-builder-content-editing .fl-visible-medium.uabb-row,
.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
.fl-builder-content-editing .fl-visible-mobile.uabb-row {
    display: none !important;
}

@media (max-width: 992px) {

    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: block !important;
    }
}

.fl-responsive-preview-content .fl-builder-content-editing {
    overflow-x: hidden;
    overflow-y: visible;
}

.uabb-row-separator svg {
    width: 100%;
}

.uabb-top-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    top: -1px;
    bottom: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    bottom: -1px;
    top: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {
    bottom: 0;
}
.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {
    top: 0;
}

/**
 *
 *  Svg Triangle Separator
 *  Big Triangle Separator
 *  Big Triangle Left Separator
 *  Svg Half Circle Separator
 *  Curve Center Separator
 *  Waves Separator
 *  Stamp
 *  Grass
 *  Slime
 *  Grass Bend
 *  Wave Slide
 *  Muliple Triangles
 *  Pine Tree
 *  Pine Tree Bend
 *
 ***************************************/
.uabb-bottom-row-separator.uabb-svg-triangle svg,
.uabb-bottom-row-separator.uabb-xlarge-triangle svg,
.uabb-top-row-separator.uabb-xlarge-triangle-left svg,
.uabb-bottom-row-separator.uabb-svg-circle svg,
.uabb-top-row-separator.uabb-slime-separator svg,
.uabb-top-row-separator.uabb-grass-separator svg,
.uabb-top-row-separator.uabb-grass-bend-separator svg,
.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,
.uabb-top-row-separator.uabb-wave-slide-separator svg,
.uabb-top-row-separator.uabb-pine-tree-separator svg,
.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,
.uabb-bottom-row-separator.uabb-stamp-separator svg,
.uabb-bottom-row-separator.uabb-xlarge-circle svg,
.uabb-top-row-separator.uabb-wave-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

/*
 *  Big Triangle
*/
.uabb-bottom-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: scale(1) scaleY(-1) translateX(-50%);
       -moz-transform: scale(1) scaleY(-1) translateX(-50%);
        -ms-transform: scale(1) scaleY(-1) translateX(-50%);
         -o-transform: scale(1) scaleY(-1) translateX(-50%);
            transform: scale(1) scaleY(-1) translateX(-50%);
}

.uabb-top-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
       -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
         -o-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
}

/**
 *
 *  Big Triangle Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

/**
 *
 *  Curve Left Separator
 *  Curve Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-curve-up-separator svg {
    left: 50%;
     -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-top-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}


/**
 *
 *  Tilt Left Separator
 *  Tilt Right Separator
 *
 ***************************************/

.uabb-top-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-top-row-separator.uabb-tilt-right-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-tilt-right-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

.uabb-top-row-separator.uabb-tilt-left-separator,
.uabb-top-row-separator.uabb-tilt-right-separator {
    top: 0;
}

.uabb-bottom-row-separator.uabb-tilt-left-separator,
.uabb-bottom-row-separator.uabb-tilt-right-separator {
    bottom: 0;
}

/**
 *
 *  Clouds Separator
 *  Multi Triangle
 *  Arrow Inward
 *  Arrow Outward
 *
 ***************************************/

.uabb-top-row-separator.uabb-arrow-outward-separator svg,
.uabb-top-row-separator.uabb-arrow-inward-separator svg,
.uabb-top-row-separator.uabb-cloud-separator svg,
.uabb-top-row-separator.uabb-multi-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-multi-triangle svg {
    bottom: -2px;
}

.uabb-row-separator.uabb-round-split:after,
.uabb-row-separator.uabb-round-split:before {
    left: 0;
    width: 50%;
    background: inherit inherit/inherit inherit inherit inherit;
    content: '';
    position: absolute
}


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

.uabb-button-wrap a,
.uabb-button-wrap a:visited {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    text-shadow: none;
}

.fl-builder-content .uabb-button:hover {
    text-decoration: none;
}

.fl-builder-content .uabb-button-width-full .uabb-button {
    display: block;
    text-align: center;
}

.uabb-button-width-custom .uabb-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.fl-builder-content .uabb-button-left {
    text-align: left;
}
.fl-builder-content .uabb-button-center {
    text-align: center;
}
.fl-builder-content .uabb-infobox .uabb-button-center,
.fl-builder-content .uabb-modal-action-wrap .uabb-button-center,
.fl-builder-content .uabb-ultb3-box .uabb-button-center,
.fl-builder-content .uabb-slide-down .uabb-button-center,
.fl-builder-content .uabb-blog-post-content .uabb-button-center,
.fl-builder-content .uabb-cta-wrap .uabb-button-center,
.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center{ 
     text-align: inherit;
}

.fl-builder-content .uabb-button-right {
    text-align: right;
}

.fl-builder-content .uabb-button i,
.fl-builder-content .uabb-button i:before {
    font-size: 1em;
    height: 1em;
    line-height: 1em;
    width: 1em;
}

.uabb-button .uabb-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-button .uabb-button-icon-before {
    margin-left: 0;
    margin-right: 8px;
}
.uabb-button .uabb-button-icon-no-text {
    margin: 0;
}
.uabb-button-has-icon .uabb-button-text {
    vertical-align: middle;
}

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

.uabb-icon-wrap {
    display: inline-block;
}
.uabb-icon a {
    text-decoration: none;
}
.uabb-icon i {
    display: block;
}
.uabb-icon i:before {
    border: none !important;
    background: none !important;
}
.uabb-icon-text {
    display: table-cell;
    text-align: left;
    padding-left: 15px;
    vertical-align: middle;
}
.uabb-icon-text *:last-child {
    margin: 0 !important;
    padding: 0 !important;
}
.uabb-icon-text a {
    text-decoration: none;
}

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

.uabb-photo {
    line-height: 0;
    position: relative;
    z-index: 2;
}
.uabb-photo-align-left {
    text-align: left;
}
.uabb-photo-align-center {
    text-align: center;
}
.uabb-photo-align-right {
    text-align: right;
}
.uabb-photo-content {
    border-radius: 0;
    display: inline-block;
    line-height: 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.uabb-photo-content img {
    border-radius: inherit;
    display: inline;
    height: auto;
    max-width: 100%;
    width: auto;
}
.fl-builder-content .uabb-photo-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-photo-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.uabb-photo-caption {
    font-size: 13px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.uabb-photo-caption-below {
    padding-bottom: 20px;
    padding-top: 10px;
}
.uabb-photo-caption-hover {
    background: rgba(0,0,0,0.7);
    bottom: 0;
    color: #fff;
    left: 0;
    opacity: 0;
    visibility: hidden;
    filter: alpha(opacity = 0);
    padding: 10px 15px;
    position: absolute;
    right: 0;
    -webkit-transition:visibility 200ms linear;
    -moz-transition:visibility 200ms linear;
    transition:visibility 200ms linear;
}
.uabb-photo-content:hover .uabb-photo-caption-hover {
    opacity: 100;
    visibility: visible;
}

/* Panel & Buttons
------------------------------------------------------ */
.uabb-active-btn {
    background: #1e8cbe;
    border-color: #0074a2;
    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    color: white;
}
.fl-builder-bar .fl-builder-add-content-button {
    display: block !important;
    opacity: 1 !important;
}

/* Image Icon Object */
.uabb-imgicon-wrap .uabb-icon {
    display: block;
}
.uabb-imgicon-wrap .uabb-icon i{
    float: none;
}

/* Photo */
.uabb-imgicon-wrap .uabb-image {
    line-height: 0;
    position: relative;
}
.uabb-imgicon-wrap .uabb-image-align-left {
    text-align: left;
}
.uabb-imgicon-wrap .uabb-image-align-center {
    text-align: center;
}
.uabb-imgicon-wrap .uabb-image-align-right {
    text-align: right;
}
.uabb-imgicon-wrap .uabb-image-content {
    display: inline-block;
    border-radius: 0;
    line-height: 0;
    position: relative;
    max-width: 100%;
}
.uabb-imgicon-wrap .uabb-image-content img {
    display: inline;
    height: auto !important;
    max-width: 100%;
    width: auto;
    border-radius: inherit;
    box-shadow: none;
    box-sizing: content-box;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}


/* Creative Button
___________________________________________________________________________*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    background: #fafafa;
    border: 1px solid #ccc;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;

}

.uabb-creative-button-wrap a:focus {
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
}

.uabb-creative-button-wrap a .uabb-creative-button-text,
.uabb-creative-button-wrap a .uabb-creative-button-icon,
.uabb-creative-button-wrap a:visited .uabb-creative-button-text,
.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button-wrap a:hover {
    text-decoration: none;
}

.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {
    display: block;
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.uabb-creative-button-wrap .uabb-creative-button-left {
    text-align: left;
}
.uabb-creative-button-wrap .uabb-creative-button-center {
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-right {
    text-align: right;
}
.uabb-creative-button-wrap .uabb-creative-button i {
    font-size: 1.3em;
    height: auto;
    vertical-align: middle;
    width: auto;
}

.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {
    margin-right: 8px;
    margin-left: 0;
}
.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {
    margin: 0;
}

.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {
    vertical-align: middle;
}
.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    padding: 12px 24px;
}

/*  Translate Button styles */

.uabb-creative-button.uabb-creative-transparent-btn {
    background: transparent;
}
.uabb-creative-button.uabb-creative-transparent-btn:after {
    content: '';
    position: absolute;
    z-index: 1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

/* transparent-fill-top, transparent-fill-bottom  */
.uabb-transparent-fill-top-btn:after,
.uabb-transparent-fill-bottom-btn:after {
    width: 100%;
    height: 0;
    left: 0;
}

/* transparent-fill-top */
.uabb-transparent-fill-top-btn:after {
    top: 0;
}
/* transparent-fill-bottom */
.uabb-transparent-fill-bottom-btn:after {
    bottom: 0;
}

/* transparent-fill-left, transparent-fill-right */
.uabb-transparent-fill-left-btn:after,
.uabb-transparent-fill-right-btn:after {
    width: 0;
    height: 100%;
    top: 0;
}

/* transparent-fill-left */
.uabb-transparent-fill-left-btn:after {
    left: 0;
}
/* transparent-fill-right */
.uabb-transparent-fill-right-btn:after {
    right: 0;
}


/* transparent-fill-center */
.uabb-transparent-fill-center-btn:after{
    width: 0;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

/*  transparent-fill-diagonal, transparent-fill-horizontal  */
.uabb-transparent-fill-diagonal-btn:after,
.uabb-transparent-fill-horizontal-btn:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
}

/*  transparent-fill-diagonal */
.uabb-transparent-fill-diagonal-btn{
    overflow: hidden;
}
.uabb-transparent-fill-diagonal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
       -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
        -ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
         -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
            transform: translateX(-50%) translateY(-50%) rotate( 45deg );
}
/* transparent-fill-horizontal */
.uabb-transparent-fill-horizontal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}


/*  3D Button styles */
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}

.perspective {
    -webkit-perspective: 800px;
       -moz-perspective: 800px;
            perspective: 800px;
            margin: 0;
}
.uabb-creative-button.uabb-creative-threed-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button.uabb-creative-threed-btn {
    outline: 1px solid transparent;
    -webkit-transform-style: preserve-3d;
       -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/*  3D Button styles --- Animate to top */
.uabb-creative-threed-btn.uabb-animate_top-btn:after {
    height: 40%;
    left: 0;
    top: -40%;
    width: 100%;
    -webkit-transform-origin: 0% 100%;
       -moz-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: rotateX(90deg);
       -moz-transform: rotateX(90deg);
            transform: rotateX(90deg);
}

/*  3D Button styles --- Animate to bottom */
.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {
    width: 100%;
    height: 40%;
    left: 0;
    top: 100%;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateX(-90deg);
       -moz-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
}

/*  3D Button styles --- Animate to Left */
.uabb-creative-threed-btn.uabb-animate_left-btn:after {
    width: 20%;
    height: 100%;
    left: -20%;
    top: 0;
    -webkit-transform-origin: 100% 0%;
       -moz-transform-origin: 100% 0%;
        -ms-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-transform: rotateY(-60deg);
       -moz-transform: rotateY(-60deg);
        -ms-transform: rotateY(-60deg);
            transform: rotateY(-60deg);
}

/*  3D Button styles --- Animate to Right */
.uabb-creative-threed-btn.uabb-animate_right-btn:after {
    width: 20%;
    height: 100%;
    left: 104%;
    top: 0;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateY(120deg);
       -moz-transform: rotateY(120deg);
        -ms-transform: rotateY(120deg);
            transform: rotateY(120deg);
}


/* Animate Top */
.uabb-animate_top-btn:hover{
    -webkit-transform: rotateX(-15deg);
       -moz-transform: rotateX(-15deg);
        -ms-transform: rotateX(-15deg);
         -o-transform: rotateX(-15deg);
            transform: rotateX(-15deg);

}

/* Animate Bottom */
.uabb-animate_bottom-btn:hover{
    -webkit-transform: rotateX(15deg);
       -moz-transform: rotateX(15deg);
        -ms-transform: rotateX(15deg);
         -o-transform: rotateX(15deg);
            transform: rotateX(15deg);

}

/* Animate Left */
.uabb-animate_left-btn:hover{
    -webkit-transform: rotateY(6deg);
       -moz-transform: rotateY(6deg);
        -ms-transform: rotateY(6deg);
         -o-transform: rotateY(6deg);
            transform: rotateY(6deg);
}

/* Animate Right */
.uabb-animate_right-btn:hover{
    -webkit-transform: rotateY(-6deg);
       -moz-transform: rotateY(-6deg);
        -ms-transform: rotateY(-6deg);
         -o-transform: rotateY(-6deg);
            transform: rotateY(-6deg);

}

/*  Flat Button styles  */

/*  Common Classes  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn,
.uabb-creative-flat-btn.uabb-animate_to_left-btn,
.uabb-creative-flat-btn.uabb-animate_from_top-btn,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {
    overflow: hidden;
    position: relative;
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    bottom: 0;
    height: 100%;
    margin: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    width: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*  Making Icon position center  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/*  Common Hover Classes */
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {
    left: 0;
}
.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {
    top: 0;
}

/*  Animate Icon to the right */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i {
    top: 0;
    left: -100%;
}
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {
    -webkit-transform: translateX(200%);
       -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
         -o-transform: translateX(200%);
            transform: translateX(200%);
}

/*  Animate Icon to the left */
.uabb-creative-flat-btn.uabb-animate_to_left-btn i {
    top: 0;
    left: 100%;
}

.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {
    -webkit-transform: translateX(-200%);
       -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
         -o-transform: translateX(-200%);
            transform: translateX(-200%);
}


/*  Animate Icon From the Top */
.uabb-creative-flat-btn.uabb-animate_from_top-btn i {
    top: -100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {
    -webkit-transform: translateY(400px);
       -moz-transform: translateY(400px);
        -ms-transform: translateY(400px);
         -o-transform: translateY(400px);
            transform: translateY(400px);
}

/*  Animate Icon From the Bottom */
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    top: 100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {
    -webkit-transform: translateY(-400px);
       -moz-transform: translateY(-400px);
        -ms-transform: translateY(-400px);
         -o-transform: translateY(-400px);
            transform: translateY(-400px);
}

/* Media/Video CSS */
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode, 
.uabb-tab-acc-content .mejs-container:not(.mejs-audio), 
.uabb-tab-acc-content .mejs-overlay.load,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode, 
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio), 
.uabb-adv-accordion-content .mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio),
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {
    padding-top: 56.25%;
}
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode {
    max-width: 100% !important;
}
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content video.wp-video-shortcode {
    position: relative;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.uabb-tab-acc-content .mejs-overlay-play,
.uabb-adv-accordion-content .mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}
.fl-row-content-wrap .uabb-row-particles-background,
.uabb-col-particles-background {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
/* Theme Button
------------------------------------------------------ */
/*.fl-builder-content a.uabb-button,
.fl-builder-content a.uabb-button:visited,
.fl-builder-content a.uabb-creative-button,
.fl-builder-content a.uabb-creative-button:visited*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
		
	
	
	
	}

.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
			
	
	
	}


/* Responsive Js Breakpoint Css */

.uabb-js-breakpoint {
	content:"default";
	display:none;
}
@media screen and (max-width: 768px) {
	.uabb-js-breakpoint {
		content:"768";
	}
}

@media screen and (max-width: 414px) {
	.uabb-js-breakpoint {
		content:"414";
	}
}


																																																																																																																																																																														
					
					
					
																														
					
					
					
																
					
					
					
																														
					
					
					
																							
					
					
					
																							
					
					
					
																																																			
					
					
					
																																																																																																																																														
					
					
					
																																																																																																																		
					
					
					
																							
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																							
					
					
					
																																					
					
					
					
																
					
					
					
																																																			
					
					
					
																
					
					
					
																
					
					
					
																																																													
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
            .fl-node-d5b1ao2cpkz4 .pp-row-separator {
                position: absolute;
                left: 0;
                width: 100%;
                z-index: 1;
            }
            .pp-previewing .fl-node-d5b1ao2cpkz4 .pp-row-separator {
                z-index: 2001;
            }
            .fl-node-d5b1ao2cpkz4 .pp-row-separator svg {
                position: absolute;
                left: 0;
                width: 100%;
            }
			.fl-node-d5b1ao2cpkz4 .pp-row-separator-top {
				margin-top: -1px;
			}
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-top,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-top svg {
                top: 0;
                bottom: auto;
            }
			.fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom {
                margin-bottom: -1px;
			}
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg {
                top: auto;
                bottom: 0;
            }
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg.pp-big-triangle,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg.pp-big-triangle-shadow,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-top svg.pp-big-triangle-left,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-top svg.pp-big-triangle-right,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg.pp-small-triangle,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-top svg.pp-tilt-right,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg.pp-tilt-right,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg.pp-curve,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg.pp-twin-curves,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg.pp-wave,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-top svg.pp-cloud,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg.pp-slit,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg.pp-water-separator {
                transform: scaleY(-1);
            }
            
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg.pp-big-triangle-right,
            .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom svg.pp-tilt-right {
                transform: scaleX(-1);
            }

            .fl-node-d5b1ao2cpkz4 .pp-row-separator-top svg.pp-tilt-left {
                transform: scale(-1);
            }

            
			
			
                        @media only screen and (max-width: 1200px) {
                                                                            }
                        @media only screen and (max-width: 768px) {
                .fl-node-d5b1ao2cpkz4 .pp-row-separator-top,
                .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom {
                    display: block;
                }
                                .fl-node-d5b1ao2cpkz4 .pp-row-separator-top {
                    display: none;
                }
                                                .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom {
                    display: none;
                }
                                                            }
            @media only screen and (max-width: 414px) {
                .fl-node-d5b1ao2cpkz4 .pp-row-separator-top,
                .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom {
                    display: block;
                }
                                .fl-node-d5b1ao2cpkz4 .pp-row-separator-top {
                    display: none;
                }
                                                .fl-node-d5b1ao2cpkz4 .pp-row-separator-bottom {
                    display: none;
                }
                                                            }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-iyaw65zgn8h0 .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-s2i74runct8y .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-t1ljh0dvuc34 .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-0fq8lp469r31 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-b8jtlasymhnk .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-dv8o2ekjqsmc .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-n1ajozrs62wp .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-cfx7pbkljm86 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-fvz9lhmxsjab .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-kpgwsor8i4al .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-en4m76xz1fvy .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-gdeom7ips9q2 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-u4m2j03on79x .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-e8r7fanh3dzt .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-rhtspy9e1j6u .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-jkb35xlr8aoh .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-95agd2qepsof .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-x936w5uhvqgm .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-ik6cvnqwflpr .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-w1dna43r2c50 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-84qnoesidhk1 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-hvg9d3nqftp0 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-3toafjp1bvzs .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-3gz0rv7lmtxs .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-9lk6af38ucbo .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-d3kofpui1j2a .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-u3g0h9l2zc6x .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-wztr7p34gclb .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-0paeqylkjuz1 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-mcurzqpltn07 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-mlhaygc6w7x0 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-lfjt3kni8qv9 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-7f5q6oadpe0i .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-xuizqcp9mn8k .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-tjkh6fw7i5g0 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-nmz45a03esh9 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-rtse42yvnab5 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-d5b1ao2cpkz4 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-ryvu02azof97 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-giwy19baxdjh .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-iet0sg6m4dr8 .fl-row-content {
				min-width: 0px;
			}
		