/**
 * 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-p2wxe8itqsjm > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2017/06/Depositphotos_84603020_l-2015.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
 .fl-node-p2wxe8itqsjm > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:60px;
}
@media ( max-width: 768px ) {
 .fl-node-p2wxe8itqsjm.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 414px ) {
 .fl-node-p2wxe8itqsjm.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:0px;
	padding-bottom:20px;
	padding-left:0px;
}
}










.fl-node-c8a2mzhxrkj3 > .fl-row-content-wrap:after {
	background-color: rgba(232,231,231,0.36);
}
.fl-node-c8a2mzhxrkj3 > .fl-row-content-wrap {
	background-image: url(https://mynams.com/wp-content/uploads/2022/04/blackcouplehappy.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
 .fl-node-c8a2mzhxrkj3 > .fl-row-content-wrap {
	margin-right:0px;
}
 .fl-node-c8a2mzhxrkj3 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:70px;
	padding-bottom:30px;
	padding-left:70px;
}





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










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





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










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










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










.fl-node-rtesigjv7052 > .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-rtesigjv7052 > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:160px;
}





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





.fl-node-4vptrf8idh9c > .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-4vptrf8idh9c > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:160px;
}





.fl-node-dc9jbpqori15 > .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-dc9jbpqori15 > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:60px;
}





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





.fl-node-e51gzfubip24 > .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-e51gzfubip24 > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:60px;
}





.fl-node-kml5arf237pb > .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-kml5arf237pb > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:86px;
}





.fl-node-cbej0rk5xsof > .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-cbej0rk5xsof > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:160px;
}





.fl-node-86salctkbjue > .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-86salctkbjue > .fl-row-content-wrap {
	margin-top:0px;
}
 .fl-node-86salctkbjue > .fl-row-content-wrap {
	padding-top:25px;
	padding-bottom:60px;
}










.fl-node-bjr47kx61evu > .fl-row-content-wrap:after {
	background-color: rgba(232,231,231,0.92);
}
.fl-node-bjr47kx61evu > .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-mgwqnj8kc401 > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:60px;
}
@media ( max-width: 768px ) {
 .fl-node-mgwqnj8kc401.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 414px ) {
 .fl-node-mgwqnj8kc401.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:0px;
	padding-bottom:20px;
	padding-left:0px;
}
}













































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





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





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





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





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





.fl-node-kwh4s2gxld6r > .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-udsrkfoz80mq > .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-udsrkfoz80mq > .fl-row-content-wrap {
	padding-bottom:0px;
}




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




.fl-node-h97bjzaq4pr5 {
	width: 100%;
}
.fl-node-h97bjzaq4pr5 > .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-h97bjzaq4pr5 {
		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-h97bjzaq4pr5 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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




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




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




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




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




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




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




.fl-node-n1qar7s69hk4 {
	width: 43%;
}




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




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




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




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




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




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




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




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




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




.fl-node-853xctor6az4 {
	width: 100%;
}




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




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




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




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




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




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




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




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




.fl-node-0fsnrzy1gqum {
	width: 33.33%;
}




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




.fl-node-20mestnbua6r {
	width: 100%;
}




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




.fl-node-zem9tw8onprb {
	width: 50%;
}
.fl-node-zem9tw8onprb > .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-zem9tw8onprb > .fl-col-content {
	padding-top:80px;
	padding-right:70px;
	padding-bottom:80px;
	padding-left:70px;
}




.fl-node-g0nhv5zwd8p7 {
	width: 50%;
}
.fl-node-g0nhv5zwd8p7 > .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-g0nhv5zwd8p7 {
		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-g0nhv5zwd8p7 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-utn4epaz63cv {
	width: 50%;
}
.fl-node-utn4epaz63cv > .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-utn4epaz63cv > .fl-col-content {
	padding-top:80px;
	padding-right:70px;
	padding-bottom:80px;
	padding-left:70px;
}




.fl-node-071stbz5cgkj {
	width: 50%;
}
.fl-node-071stbz5cgkj > .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-zvwdnj53oatx {
	width: 50%;
}
.fl-node-zvwdnj53oatx > .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-2hizsdxj83ne {
	width: 50%;
}
.fl-node-2hizsdxj83ne > .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-2hizsdxj83ne > .fl-col-content {
	padding-top:80px;
	padding-right:70px;
	padding-bottom:80px;
	padding-left:70px;
}




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




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




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




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




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




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




.fl-node-6vucga7erh81 {
	width: 50%;
}
.fl-node-6vucga7erh81 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #000000;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
 .fl-node-6vucga7erh81 > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}




.fl-node-9xtiwzs05jlu {
	width: 63%;
}




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




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




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




.fl-node-7emv4cahor89 {
	width: 100%;
}
.fl-node-lix9go57yfj4 {
	color: #ffffff;
}
.fl-builder-content .fl-node-lix9go57yfj4 *:not(span):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: #ffffff;
}

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

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

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

.fl-node-lix9go57yfj4 {
	width: 100%;
}
.fl-node-lix9go57yfj4 > .fl-col-content {
	background-color: #000000;
}




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




.fl-node-fq7d53abjyx2 {
	width: 50%;
}
.fl-node-fq7d53abjyx2 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #000000;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
 .fl-node-fq7d53abjyx2 > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}




.fl-node-hmatr8ni57jc {
	width: 50%;
}
.fl-node-hmatr8ni57jc > .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-hmatr8ni57jc {
		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-hmatr8ni57jc {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-ogk19a2d4m05 {
	width: 50%;
}
.fl-node-ogk19a2d4m05 > .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-ogk19a2d4m05 {
		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-ogk19a2d4m05 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-v69ydxpbl2s5 {
	width: 50%;
}
.fl-node-v69ydxpbl2s5 > .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-v69ydxpbl2s5 {
		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-v69ydxpbl2s5 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-hdgkl76txczw {
	width: 50%;
}
.fl-node-hdgkl76txczw > .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-hdgkl76txczw {
		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-hdgkl76txczw {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-62v7wuokstmz {
	width: 50%;
}
.fl-node-62v7wuokstmz > .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-62v7wuokstmz {
		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-62v7wuokstmz {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-8jugfdky0cob {
	width: 50%;
}
.fl-node-8jugfdky0cob > .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-8jugfdky0cob {
		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-8jugfdky0cob {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-sdr8mwjqcof9 {
	width: 50%;
}
.fl-node-sdr8mwjqcof9 > .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-sdr8mwjqcof9 {
		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-sdr8mwjqcof9 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-lntb2xey19pk {
	width: 50%;
}
.fl-node-lntb2xey19pk > .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-lntb2xey19pk {
		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-lntb2xey19pk {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-3kiwr8szd7o0 {
	width: 57%;
}




.fl-node-94enx5afjiu7 {
	width: 46%;
}




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




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




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




.fl-node-1e2h6uafxngm {
	width: 50%;
}




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




.fl-node-016jzyt4care {
	width: 33.33%;
}




.fl-node-bmc18ep65kxh {
	width: 50%;
}
.fl-node-bmc18ep65kxh > .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-9u2ia3fdmbtk {
	width: 50%;
}
.fl-node-9u2ia3fdmbtk > .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-ywrpmo7ihtf6 {
	width: 50%;
}
.fl-node-ywrpmo7ihtf6 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
 .fl-node-ywrpmo7ihtf6 > .fl-col-content {
	padding-top:0px;
	padding-right:70px;
	padding-bottom:0px;
	padding-left:70px;
}




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




.fl-node-5x68nbhmyl0q {
	width: 50%;
}
.fl-node-5x68nbhmyl0q > .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-fae8i9uvgroc {
	width: 50%;
}




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




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




.fl-node-qx5e1j78tni0 {
	width: 50%;
}
.fl-node-qx5e1j78tni0 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #000000;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
 .fl-node-qx5e1j78tni0 > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}




.fl-node-v8pdq249rjml {
	width: 37%;
}




.fl-node-1pfyuzmw5etg {
	width: 50%;
}




.fl-node-6j29enciwlpk {
	width: 50%;
}
.fl-node-6j29enciwlpk > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #000000;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
 .fl-node-6j29enciwlpk > .fl-col-content {
	margin-right:5px;
	margin-left:5px;
}




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




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




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




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




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




.fl-node-8ca4ows3kegb {
	width: 33.33%;
}




.fl-node-4iey7a6dcx10 {
	width: 33.33%;
}




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




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




.fl-node-cefokg06tpz2 {
	width: 50%;
}
.fl-node-cefokg06tpz2 > .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-cefokg06tpz2 {
		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-cefokg06tpz2 {
		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-4brdu0jg7sl2 {
	width: 100%;
}

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

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

		.fl-node-4brdu0jg7sl2 .uabb-image .uabb-image-content{
								}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-4brdu0jg7sl2 .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-4brdu0jg7sl2 .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-4brdu0jg7sl2 .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-4brdu0jg7sl2 .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-4brdu0jg7sl2 .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-4brdu0jg7sl2 .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-4brdu0jg7sl2 .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}

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

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

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

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-ecloh17mxdiw .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-ecloh17mxdiw .uabb-infobox {
			;		}
	}

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

	

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

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

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

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

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

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-qupxhvztgikl .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-qupxhvztgikl .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-qupxhvztgikl .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-qupxhvztgikl .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-qupxhvztgikl .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-qupxhvztgikl .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-qupxhvztgikl .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-hop08zdf362i {
	width: 100%;
}

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

	}

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

		width: 500px;
			}
.fl-node-hop08zdf362i .uabb-photo-caption {
	}

.fl-node-hop08zdf362i .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-hop08zdf362i .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-hop08zdf362i .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


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

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


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

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

	}

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

		width: 600px;
			}
.fl-node-gw2y0zu7i9hq .uabb-photo-caption {
	}

.fl-node-gw2y0zu7i9hq .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-gw2y0zu7i9hq .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-gw2y0zu7i9hq .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


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

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

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


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

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

	}

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

		width: 600px;
			}
.fl-node-pwl21fgi4z6r .uabb-photo-caption {
	}

.fl-node-pwl21fgi4z6r .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-pwl21fgi4z6r .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-pwl21fgi4z6r .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


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

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


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

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

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


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

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

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


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

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

	}

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

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

.fl-node-wr8x5lgibvqo .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-wr8x5lgibvqo .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-wr8x5lgibvqo .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


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

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


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

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

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


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

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

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


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

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

	}

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

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

.fl-node-od0yx7te39hk .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-od0yx7te39hk .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-od0yx7te39hk .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


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

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

	}

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

		width: 600px;
			}
.fl-node-ho5x87kube0p .uabb-photo-caption {
	}

.fl-node-ho5x87kube0p .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-ho5x87kube0p .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-ho5x87kube0p .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


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

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


		@media ( max-width: 768px ) {
			.fl-node-k5rtsbg13nzl.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-k5rtsbg13nzl .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-k5rtsbg13nzl.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-k5rtsbg13nzl .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 0px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-k5rtsbg13nzl > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-opeykamc32dx h2.fl-heading a,
.fl-row .fl-col .fl-node-opeykamc32dx h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-opeykamc32dx h2.fl-heading .fl-heading-text *,
.fl-node-opeykamc32dx h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-opeykamc32dx.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 34px;
	text-align: center;
}
 .fl-node-opeykamc32dx > .fl-module-content {
	margin-top:38px;
}
@media (max-width: 414px) { .fl-node-opeykamc32dx > .fl-module-content { margin-top:10px; } }.fl-node-5mqprg0o984l.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-mojb17r6nuk9 .fl-rich-text, .fl-builder-content .fl-node-mojb17r6nuk9 .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-mojb17r6nuk9.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.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-wtcg034ukdif .fl-list-item-heading-text,
	.fl-row .fl-col .fl-node-wtcg034ukdif .fl-list-item-heading-text {
		color: #000000;
	}
		.fl-node-wtcg034ukdif .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-wtcg034ukdif .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-wtcg034ukdif .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-wtcg034ukdif .fl-list-item-content-icon .fl-list-item-icon {
		color: #000000;
	}
		.fl-node-wtcg034ukdif .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-wtcg034ukdif .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-wtcg034ukdif .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-wtcg034ukdif .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 36px;
	}
	
.fl-node-wtcg034ukdif ul.fl-list,
.fl-node-wtcg034ukdif ol.fl-list {
	list-style-type: none;
}


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

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


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

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


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

.fl-node-348u9gorvkmd.fl-module-list .fl-list-item-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 24px;
}
.fl-node-348u9gorvkmd .fl-list {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-348u9gorvkmd .fl-list .fl-list-item {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-348u9gorvkmd .fl-list .fl-list-item-icon {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-348u9gorvkmd .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-348u9gorvkmd > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-fmqzh2p3na6u.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 300;
	font-size: 30px;
	text-align: left;
}
 .fl-node-fmqzh2p3na6u > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
.fl-node-8pbdmcix5hgu, .fl-node-8pbdmcix5hgu .fl-photo {
	text-align: center;
}
.fl-row .fl-col .fl-node-fvnwc9mu3p1h h2.fl-heading a,
.fl-row .fl-col .fl-node-fvnwc9mu3p1h h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-fvnwc9mu3p1h h2.fl-heading .fl-heading-text *,
.fl-node-fvnwc9mu3p1h h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-fvnwc9mu3p1h.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
}
 .fl-node-fvnwc9mu3p1h > .fl-module-content {
	margin-top:50px;
	margin-right:50px;
	margin-bottom:50px;
	margin-left:50px;
}
@media (max-width: 414px) { .fl-node-fvnwc9mu3p1h > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-node-jzg84xqbvc0d.fl-module-heading .fl-heading {
	text-align: left;
}
.fl-node-b2vhl4rcudoz, .fl-node-b2vhl4rcudoz .fl-photo {
	text-align: center;
}
.fl-row .fl-col .fl-node-pi67r0l5w1m2 h2.fl-heading a,
.fl-row .fl-col .fl-node-pi67r0l5w1m2 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-pi67r0l5w1m2 h2.fl-heading .fl-heading-text *,
.fl-node-pi67r0l5w1m2 h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-pi67r0l5w1m2.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
}
 .fl-node-pi67r0l5w1m2 > .fl-module-content {
	margin-top:50px;
	margin-right:50px;
	margin-bottom:50px;
	margin-left:50px;
}
@media (max-width: 414px) { .fl-node-pi67r0l5w1m2 > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-node-0bzkmv1lyuc3.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 200;
	font-size: 36px;
	text-align: left;
}
.fl-builder-content .fl-node-9ncfig7vkuzw .fl-rich-text, .fl-builder-content .fl-node-9ncfig7vkuzw .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-9ncfig7vkuzw.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-builder-content .fl-node-svd0xhtgji24 .fl-rich-text, .fl-builder-content .fl-node-svd0xhtgji24 .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-svd0xhtgji24.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-node-kj0ax8nmc7dq {
	width: 100%;
}

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

	}

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

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

.fl-node-kj0ax8nmc7dq .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-kj0ax8nmc7dq .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-kj0ax8nmc7dq .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


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

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


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


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

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


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

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


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

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


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

.fl-node-pi6to9jr08vn.fl-module-list .fl-list-item-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 24px;
}
.fl-node-pi6to9jr08vn .fl-list {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-pi6to9jr08vn .fl-list .fl-list-item {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-pi6to9jr08vn .fl-list .fl-list-item-icon {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-pi6to9jr08vn .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
 .fl-node-pi6to9jr08vn > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-5ynlpcjk0xrm.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 30px;
	text-align: center;
}
 .fl-node-5ynlpcjk0xrm > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:20px;
	margin-left:40px;
}
@media (max-width: 414px) { .fl-node-5ynlpcjk0xrm > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-node-zpven3ri2q9k.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-247xd6c8nshq h2.fl-heading a,
.fl-row .fl-col .fl-node-247xd6c8nshq h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-247xd6c8nshq h2.fl-heading .fl-heading-text *,
.fl-node-247xd6c8nshq h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-247xd6c8nshq.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 42px;
	text-align: center;
}
 .fl-node-247xd6c8nshq > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:20px;
	margin-left:40px;
}
@media (max-width: 414px) { .fl-node-247xd6c8nshq > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-row .fl-col .fl-node-suwgjkbqiloy h2.fl-heading a,
.fl-row .fl-col .fl-node-suwgjkbqiloy h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-suwgjkbqiloy h2.fl-heading .fl-heading-text *,
.fl-node-suwgjkbqiloy h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-suwgjkbqiloy.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 42px;
	text-align: center;
}
 .fl-node-suwgjkbqiloy > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:20px;
	margin-left:40px;
}
@media (max-width: 414px) { .fl-node-suwgjkbqiloy > .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-k6txwfh428qd .pp-heading-content .pp-heading-prefix {
	}

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

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

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


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


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


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

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

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

/** Separators */


div.fl-node-k6txwfh428qd .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-k6txwfh428qd .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-k6txwfh428qd .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-k6txwfh428qd .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

div.fl-node-k6txwfh428qd .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-k6txwfh428qd .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-k6txwfh428qd .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-k6txwfh428qd .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-k6txwfh428qd .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-k6txwfh428qd .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-k6txwfh428qd .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-k6txwfh428qd .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

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

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

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

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

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


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


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


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

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

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

/** Separators */


div.fl-node-y7z1h49ej2i3 .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-y7z1h49ej2i3 .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-y7z1h49ej2i3 .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-y7z1h49ej2i3 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

div.fl-node-y7z1h49ej2i3 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-y7z1h49ej2i3 .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-y7z1h49ej2i3 .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-y7z1h49ej2i3 .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-y7z1h49ej2i3 .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-y7z1h49ej2i3 .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-y7z1h49ej2i3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-y7z1h49ej2i3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

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

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

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

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

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


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


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


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

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

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

/** Separators */


div.fl-node-ko2gypvzrmqw .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-ko2gypvzrmqw .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-ko2gypvzrmqw .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-ko2gypvzrmqw .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

div.fl-node-ko2gypvzrmqw .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-ko2gypvzrmqw .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-ko2gypvzrmqw .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-ko2gypvzrmqw .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-ko2gypvzrmqw .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-ko2gypvzrmqw .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-ko2gypvzrmqw .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-ko2gypvzrmqw .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

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

div.fl-node-4bp9rc38y7ax .pp-heading-content .pp-heading-prefix {
	}

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

div.fl-node-4bp9rc38y7ax .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-4bp9rc38y7ax .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-4bp9rc38y7ax .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-4bp9rc38y7ax .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-4bp9rc38y7ax .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-4bp9rc38y7ax .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

div.fl-node-4bp9rc38y7ax .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-4bp9rc38y7ax .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-4bp9rc38y7ax .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-4bp9rc38y7ax .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-4bp9rc38y7ax .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-4bp9rc38y7ax .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-4bp9rc38y7ax .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-4bp9rc38y7ax .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

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

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

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

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

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


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


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


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

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

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

/** Separators */


div.fl-node-qy9p5s8w20ie .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-qy9p5s8w20ie .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-qy9p5s8w20ie .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-qy9p5s8w20ie .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

div.fl-node-qy9p5s8w20ie .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-qy9p5s8w20ie .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-qy9p5s8w20ie .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-qy9p5s8w20ie .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-qy9p5s8w20ie .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


div.fl-node-qy9p5s8w20ie .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-qy9p5s8w20ie .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-qy9p5s8w20ie .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

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

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





.fl-builder-content .fl-node-5374dybz60uc a.fl-button:hover,
.fl-builder-content .fl-node-5374dybz60uc a.fl-button:focus,
.fl-page .fl-builder-content .fl-node-5374dybz60uc a.fl-button:hover,
.fl-page .fl-builder-content .fl-node-5374dybz60uc a.fl-button:focus {

	background: #3f6bb0;

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

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







.fl-node-5374dybz60uc.fl-button-wrap, .fl-node-5374dybz60uc .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-5374dybz60uc a.fl-button {
	padding-top: 24px;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 24px;
}
.fl-builder-content .fl-node-5374dybz60uc a.fl-button, .fl-builder-content .fl-node-5374dybz60uc a.fl-button:visited, .fl-page .fl-builder-content .fl-node-5374dybz60uc a.fl-button, .fl-page .fl-builder-content .fl-node-5374dybz60uc 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-5374dybz60uc a.fl-button:hover, .fl-builder-content .fl-node-5374dybz60uc a.fl-button:focus, .fl-page .fl-builder-content .fl-node-5374dybz60uc a.fl-button:hover, .fl-page .fl-builder-content .fl-node-5374dybz60uc a.fl-button:focus {
	border: 1px solid #335fa4;
}
.fl-builder-content .fl-node-5374dybz60uc a.fl-button, .fl-builder-content .fl-node-5374dybz60uc a.fl-button:visited, .fl-builder-content .fl-node-5374dybz60uc a.fl-button:hover, .fl-builder-content .fl-node-5374dybz60uc a.fl-button:focus, .fl-page .fl-builder-content .fl-node-5374dybz60uc a.fl-button, .fl-page .fl-builder-content .fl-node-5374dybz60uc a.fl-button:visited, .fl-page .fl-builder-content .fl-node-5374dybz60uc a.fl-button:hover, .fl-page .fl-builder-content .fl-node-5374dybz60uc 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-mg271c3x0h65 {
	width: 100%;
}

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

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

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-mg271c3x0h65 .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-mg271c3x0h65 .uabb-infobox {
			;		}
	}

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

	

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

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

.fl-node-0cqnmhug4d9s {
	width: 100%;
}

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

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

		.fl-node-0cqnmhug4d9s .uabb-image .uabb-image-content{
								}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-0cqnmhug4d9s .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-0cqnmhug4d9s .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-0cqnmhug4d9s .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-0cqnmhug4d9s .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-0cqnmhug4d9s .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-0cqnmhug4d9s .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-0cqnmhug4d9s .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}

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

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

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

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-l8ykj9stq5om .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-l8ykj9stq5om .uabb-infobox {
			;		}
	}

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

	

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

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

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

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

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

		.fl-node-7ycabi1wh5ze .uabb-image .uabb-image-content{
								}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-7ycabi1wh5ze .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-7ycabi1wh5ze .uabb-infobox {
			;		}
	}

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

	

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

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

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

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

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

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-knd752tlbv61 .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-knd752tlbv61 .uabb-infobox {
			;		}
	}

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

	

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

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

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

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

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

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-qn1jy7r9aw6s .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-qn1jy7r9aw6s .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-qn1jy7r9aw6s .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1.33em;
}
.fl-node-qn1jy7r9aw6s .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-qn1jy7r9aw6s .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-qn1jy7r9aw6s .uabb-infobox-title {
		font-size: 28px;
		line-height: 1.36em;
	}
}
@media(max-width: 414px) {
	.fl-node-qn1jy7r9aw6s .uabb-infobox-title {
		font-size: 25px;
		line-height: 1.4em;
	}
}
.fl-row .fl-col .fl-node-z67tmkga9ps5 h2.fl-heading a,
.fl-row .fl-col .fl-node-z67tmkga9ps5 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-z67tmkga9ps5 h2.fl-heading .fl-heading-text *,
.fl-node-z67tmkga9ps5 h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-z67tmkga9ps5.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 42px;
	text-align: center;
}
 .fl-node-z67tmkga9ps5 > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:20px;
	margin-left:40px;
}
@media (max-width: 414px) { .fl-node-z67tmkga9ps5 > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-row .fl-col .fl-node-ay3h2ujx6trw h2.fl-heading a,
.fl-row .fl-col .fl-node-ay3h2ujx6trw h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ay3h2ujx6trw h2.fl-heading .fl-heading-text *,
.fl-node-ay3h2ujx6trw h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-ay3h2ujx6trw.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 500;
	font-size: 42px;
	text-align: center;
}
 .fl-node-ay3h2ujx6trw > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:20px;
	margin-left:40px;
}
@media (max-width: 414px) { .fl-node-ay3h2ujx6trw > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-row .fl-col .fl-node-8ens6i0zw5yk h4.fl-heading a,
.fl-row .fl-col .fl-node-8ens6i0zw5yk h4.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-8ens6i0zw5yk h4.fl-heading .fl-heading-text *,
.fl-node-8ens6i0zw5yk h4.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-8ens6i0zw5yk.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 18px;
	text-align: center;
}
.fl-node-d1e0723uomps, .fl-node-d1e0723uomps .fl-photo {
	text-align: center;
}
.fl-node-d1e0723uomps .fl-photo-content, .fl-node-d1e0723uomps .fl-photo-img {
	width: 450px;
}
.fl-node-zt2xgjnv5hs1.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 42px;
	text-align: center;
}
 .fl-node-zt2xgjnv5hs1 > .fl-module-content {
	margin-top:35px;
	margin-right:100px;
	margin-bottom:35px;
	margin-left:100px;
}
@media (max-width: 414px) { .fl-node-zt2xgjnv5hs1 > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }
.fl-node-nt2r9fgm80e5.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-nt2r9fgm80e5 {
	width: 100%;
}

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


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

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

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


	.fl-node-ayig78bcrk4s.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 900;
	font-size: 28px;
	text-align: center;
}
.fl-node-g01dkjeu83pm.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 900;
	font-size: 28px;
	text-align: center;
}
.fl-node-unbeaf30ghwv.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 900;
	font-size: 28px;
	text-align: center;
}
.fl-node-wya02ovsp7rh.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 900;
	font-size: 28px;
	text-align: center;
}

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

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


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

.fl-node-93hd2c5nkmwg .uabb-photo-content {

	}

.fl-node-93hd2c5nkmwg .uabb-photo-content img {

		width: 650px;
			}
.fl-node-93hd2c5nkmwg .uabb-photo-caption {
	}

.fl-node-93hd2c5nkmwg .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-93hd2c5nkmwg .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-93hd2c5nkmwg .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


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

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

	}

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

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

.fl-node-mekcn9wsrjxb .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-mekcn9wsrjxb .uabb-photo-content .uabb-photo-img {
		opacity: 1;
	}
	.fl-node-mekcn9wsrjxb .uabb-photo-content .uabb-photo-img:hover {
		opacity: 1;
	}


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

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

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


		@media ( max-width: 768px ) {
			.fl-node-uiyofak65ntw.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-uiyofak65ntw .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-uiyofak65ntw.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-uiyofak65ntw .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-uiyofak65ntw > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-uiyofak65ntw.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
.fl-row .fl-col .fl-node-rf6klw7ubnzg h2.fl-heading a,
.fl-row .fl-col .fl-node-rf6klw7ubnzg h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-rf6klw7ubnzg h2.fl-heading .fl-heading-text *,
.fl-node-rf6klw7ubnzg h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-rf6klw7ubnzg.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-slw268mcha3y h2.fl-heading a,
.fl-row .fl-col .fl-node-slw268mcha3y h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-slw268mcha3y h2.fl-heading .fl-heading-text *,
.fl-node-slw268mcha3y h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-slw268mcha3y.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-u46ahydc8bjf h2.fl-heading a,
.fl-row .fl-col .fl-node-u46ahydc8bjf h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-u46ahydc8bjf h2.fl-heading .fl-heading-text *,
.fl-node-u46ahydc8bjf h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-u46ahydc8bjf.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-gef987jarp1o h2.fl-heading a,
.fl-row .fl-col .fl-node-gef987jarp1o h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-gef987jarp1o h2.fl-heading .fl-heading-text *,
.fl-node-gef987jarp1o h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-gef987jarp1o.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-of26ylvkntar h2.fl-heading a,
.fl-row .fl-col .fl-node-of26ylvkntar h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-of26ylvkntar h2.fl-heading .fl-heading-text *,
.fl-node-of26ylvkntar h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-of26ylvkntar.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-0b4q8othcmgl h2.fl-heading a,
.fl-row .fl-col .fl-node-0b4q8othcmgl h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-0b4q8othcmgl h2.fl-heading .fl-heading-text *,
.fl-node-0b4q8othcmgl h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-0b4q8othcmgl.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-l1cytx2vo9mb h2.fl-heading a,
.fl-row .fl-col .fl-node-l1cytx2vo9mb h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-l1cytx2vo9mb h2.fl-heading .fl-heading-text *,
.fl-node-l1cytx2vo9mb h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-l1cytx2vo9mb.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-1bxwjnzu0o3t h2.fl-heading a,
.fl-row .fl-col .fl-node-1bxwjnzu0o3t h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-1bxwjnzu0o3t h2.fl-heading .fl-heading-text *,
.fl-node-1bxwjnzu0o3t h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-1bxwjnzu0o3t.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}
.fl-node-hqnmacefzu45.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 200;
	font-size: 42px;
	text-align: center;
}
 .fl-node-hqnmacefzu45 > .fl-module-content {
	margin-top:50px;
	margin-right:50px;
	margin-bottom:50px;
	margin-left:50px;
}
@media (max-width: 414px) { .fl-node-hqnmacefzu45 > .fl-module-content { margin-top:10px;margin-bottom:10px;margin-left:10px;margin-right:10px; } }.fl-builder-content .fl-node-w0gf483zypoj .fl-rich-text, .fl-builder-content .fl-node-w0gf483zypoj .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-w0gf483zypoj.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-builder-content .fl-node-6ipcsq2le0kg .fl-rich-text, .fl-builder-content .fl-node-6ipcsq2le0kg .fl-rich-text *:not(b, strong) {
	text-align: right;
}
@media ( max-width: 414px ) {
 .fl-node-6ipcsq2le0kg.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-builder-content .fl-node-zeumc8xf2rwv .fl-rich-text, .fl-builder-content .fl-node-zeumc8xf2rwv .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-zeumc8xf2rwv.fl-module > .fl-module-content {
	margin-top:0px;
}
}
 .fl-node-62fcbwnz8osv > .fl-module-content {
	margin-bottom:5px;
}
@media ( max-width: 414px ) {
 .fl-node-62fcbwnz8osv.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-builder-content .fl-node-eyrf8cuh4v2o .fl-rich-text, .fl-builder-content .fl-node-eyrf8cuh4v2o .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media ( max-width: 414px ) {
 .fl-node-eyrf8cuh4v2o.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-row .fl-col .fl-node-szrut8legjqf h2.fl-heading a,
.fl-row .fl-col .fl-node-szrut8legjqf h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-szrut8legjqf h2.fl-heading .fl-heading-text *,
.fl-node-szrut8legjqf h2.fl-heading .fl-heading-text {
	color: #3f6bb0;
}
.fl-node-szrut8legjqf.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 30px;
	text-transform: uppercase;
}
.fl-node-8w3qa7rfspz0.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 300;
	font-size: 29px;
	text-align: center;
}
.fl-node-m36e1fl0bnzq.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 300;
	font-size: 28px;
	text-align: center;
}
 .fl-node-m36e1fl0bnzq > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:40px;
	margin-left:10px;
}
@media (max-width: 414px) { .fl-node-m36e1fl0bnzq > .fl-module-content { margin-bottom:10px; } }.fl-node-1vmdlizbuhp3.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 300;
	font-size: 28px;
	text-align: center;
}
 .fl-node-1vmdlizbuhp3 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:40px;
	margin-left:10px;
}
@media (max-width: 414px) { .fl-node-1vmdlizbuhp3 > .fl-module-content { margin-bottom:10px; } }
.fl-node-barzepufl9tw.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-barzepufl9tw {
	width: 100%;
}

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


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

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


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

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-cy0qzhon58rl .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-cy0qzhon58rl .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-cy0qzhon58rl .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-cy0qzhon58rl .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-cy0qzhon58rl .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-cy0qzhon58rl .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-cy0qzhon58rl .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-cy0qzhon58rl .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-u9hbr6afjeoq .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-u9hbr6afjeoq .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-u9hbr6afjeoq .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-u9hbr6afjeoq .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-u9hbr6afjeoq .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-u9hbr6afjeoq .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-u9hbr6afjeoq .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-u9hbr6afjeoq .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-qnbw1dth2u6l .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-qnbw1dth2u6l .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-qnbw1dth2u6l .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-qnbw1dth2u6l .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-qnbw1dth2u6l .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-qnbw1dth2u6l .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-qnbw1dth2u6l .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-qnbw1dth2u6l .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

.fl-node-123hmuidwa6k {
	width: 100%;
}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-123hmuidwa6k .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-123hmuidwa6k .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-123hmuidwa6k .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-123hmuidwa6k .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-123hmuidwa6k .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-123hmuidwa6k .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-123hmuidwa6k .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-123hmuidwa6k .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-yx20ba46gj8s .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-yx20ba46gj8s .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-yx20ba46gj8s .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-yx20ba46gj8s .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-yx20ba46gj8s .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-yx20ba46gj8s .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-yx20ba46gj8s .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-yx20ba46gj8s .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

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


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

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-sm1yczwngjtx .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-sm1yczwngjtx .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-sm1yczwngjtx .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-sm1yczwngjtx .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-sm1yczwngjtx .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-sm1yczwngjtx .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-sm1yczwngjtx .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-sm1yczwngjtx .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

.fl-node-0lxmq381dtha {
	width: 100%;
}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-0lxmq381dtha .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-0lxmq381dtha .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-0lxmq381dtha .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-0lxmq381dtha .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-0lxmq381dtha .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-0lxmq381dtha .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-0lxmq381dtha .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-0lxmq381dtha .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-kmpo3n8uz01l .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-kmpo3n8uz01l .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-kmpo3n8uz01l .uabb-infobox {
			;		}
	}

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

	

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

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

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-u2zoxlsib3n0 .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-u2zoxlsib3n0 .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-u2zoxlsib3n0 .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-u2zoxlsib3n0 .uabb-infobox-title {
	font-family: "Playfair Display SC", serif;
	font-weight: 400;
	font-size: 60px;
	line-height: 1em;
}
.fl-node-u2zoxlsib3n0 .uabb-infobox-text {
	font-family: Roboto, sans-serif;
	font-weight: 100;
	font-size: 17px;
	line-height: 1.76em;
}
.fl-node-u2zoxlsib3n0 .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-u2zoxlsib3n0 .uabb-infobox-title {
		font-size: 45px;
		line-height: 1.33em;
	}
}
@media(max-width: 414px) {
	.fl-node-u2zoxlsib3n0 .uabb-infobox-title {
		font-size: 30px;
		line-height: 1em;
	}
}
.fl-row .fl-col .fl-node-r597yusnbgmj h2.fl-heading a,
.fl-row .fl-col .fl-node-r597yusnbgmj h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-r597yusnbgmj h2.fl-heading .fl-heading-text *,
.fl-node-r597yusnbgmj h2.fl-heading .fl-heading-text {
	color: #990000;
}
.fl-node-r597yusnbgmj.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 900;
	font-size: 60px;
	text-align: center;
}

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

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


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

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

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


		@media ( max-width: 768px ) {
			.fl-node-stqrf8g0p21a.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-stqrf8g0p21a .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-stqrf8g0p21a.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-stqrf8g0p21a .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-stqrf8g0p21a > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-stqrf8g0p21a.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
.fl-node-d05mah69egix.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
.fl-node-1e7rbagi2394.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
.fl-node-c4pbmow2qu1y.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
 .fl-node-c4pbmow2qu1y > .fl-module-content {
	margin-bottom:50px;
}
@media (max-width: 414px) { .fl-node-c4pbmow2qu1y > .fl-module-content { margin-bottom:10px; } }.fl-node-m7abrvcinwly.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
.fl-node-gx2ntseu536m.fl-module-heading .fl-heading {
	font-size: 23px;
	text-align: left;
}
.fl-node-urjoz41e5wdy.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
.fl-node-lqytuxhpwk69.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}
 .fl-node-g972xv53ckzr > .fl-module-content {
	margin-bottom:5px;
}
@media ( max-width: 414px ) {
 .fl-node-g972xv53ckzr.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-node-5r1ouwe2m076.fl-module-heading .fl-heading {
	font-family: Lato, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: left;
}

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

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


		@media ( max-width: 768px ) {
			.fl-node-hj4vuad8y760.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-hj4vuad8y760 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 20px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-hj4vuad8y760.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-hj4vuad8y760 .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 10px;
				clear: both;
				width: 100%;
			}
		}		
		.fl-node-cvyiq163ozna.fl-module-heading .fl-heading {
	font-family: Oswald, sans-serif;
	font-weight: 400;
	font-size: 46px;
	text-align: center;
}
 .fl-node-cvyiq163ozna > .fl-module-content {
	margin-top:38px;
}
@media (max-width: 414px) { .fl-node-cvyiq163ozna > .fl-module-content { margin-top:10px; } }
.fl-node-xjw7bhke3qat.uabb-desktop-spacer-height-adjustment{
	position: relative;
	height: 30px;
}
.fl-node-xjw7bhke3qat {
	width: 100%;
}

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


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

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

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


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

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

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


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

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

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


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

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

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


		@media ( max-width: 768px ) {
			.fl-node-r2ybdm5p7nat.uabb-tab-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-r2ybdm5p7nat .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 30px;
				clear: both;
				width: 100%;
			}
		}		
	
			@media ( max-width: 414px ) {
			.fl-node-r2ybdm5p7nat.uabb-mobile-spacer-height-adjustment{
				position: relative;
				height: 30px;
			}
			.fl-node-r2ybdm5p7nat .uabb-spacer-gap-preview.uabb-spacer-gap {
				height: 25px;
				clear: both;
				width: 100%;
			}
		}		
		 .fl-node-r2ybdm5p7nat > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 414px ) {
 .fl-node-r2ybdm5p7nat.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-zx185bd409vh .uabb-heading .uabb-heading-text {
	}
.fl-node-zx185bd409vh .uabb-heading .uabb-heading-text {

	}

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

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

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

	}

/* Heading's Description Color */

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

				@media ( max-width: 768px ) {

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

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

						.fl-node-zx185bd409vh .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-zx185bd409vh .uabb-responsive-mobile .uabb-side-left,
			.fl-node-zx185bd409vh .uabb-responsive-mobile .uabb-side-right,
			.fl-node-zx185bd409vh .uabb-responsive-medsmall .uabb-side-left,
			.fl-node-zx185bd409vh .uabb-responsive-medsmall .uabb-side-right {
				width: 10%;
			}

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

			.fl-node-zx185bd409vh .uabb-heading-wrapper .uabb-heading,
			.fl-node-zx185bd409vh .uabb-heading-wrapper .uabb-subheading,
			.fl-node-zx185bd409vh .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-zx185bd409vh .uabb-heading-wrapper .uabb-heading,.fl-node-zx185bd409vh .uabb-heading-wrapper .uabb-heading .uabb-heading-text {
	font-family: "Shadows Into Light Two", cursive;
	font-weight: 400;
}

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

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


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

.fl-node-267uihza0njy {
	width: 100%;
}

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

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

		.fl-node-267uihza0njy .uabb-image .uabb-image-content{
								}

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

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

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

/* Icon Margin */
		.fl-node-267uihza0njy .infobox-left .uabb-imgicon-wrap {
		margin-right: 20px;
	}
		
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-267uihza0njy .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-267uihza0njy .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */
	.fl-node-267uihza0njy .uabb-infobox {
		text-align: left;
	}
	.fl-builder-content .fl-node-267uihza0njy .infobox-photo-left .uabb-infobox-content{
		width: calc(100% - 240px);
	}

/* Responsive CSS */

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

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

			.fl-builder-content .fl-node-267uihza0njy .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			padding: 0;
			margin-bottom: 20px;
		}

		.fl-builder-content .fl-node-267uihza0njy .uabb-infobox .uabb-infobox-left-right-wrap .uabb-infobox-content,
		.fl-builder-content .fl-node-267uihza0njy .uabb-infobox .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			display: block;
			width: 100%;
			text-align: center;
		}

		.fl-builder-content .fl-node-267uihza0njy .uabb-reverse-order .uabb-infobox-left-right-wrap,
		.fl-builder-content .fl-node-267uihza0njy .uabb-reverse-order .uabb-infobox-left-right-wrap {
			display: inline-flex;
			flex-direction: column-reverse;
		}

		.fl-builder-content .fl-node-267uihza0njy .uabb-infobox.infobox-left .uabb-imgicon-wrap,
		.fl-builder-content .fl-node-267uihza0njy .uabb-infobox.infobox-right .uabb-imgicon-wrap {
			margin-left: 0;
			margin-right: 0;
		}
			

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

	
	
	/* Left Right Title Image */
			.fl-node-267uihza0njy .uabb-infobox {
			text-align: left;
		}
		.fl-builder-content .fl-node-267uihza0njy .infobox-photo-left .uabb-infobox-content{
			width: calc(100% - 240px);
		}
	}

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

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

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

		.fl-node-3n162i0p7q95 .uabb-image .uabb-image-content{
								}

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

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

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

/* Icon Margin */
		.fl-node-3n162i0p7q95 .infobox-left .uabb-imgicon-wrap {
		margin-right: 20px;
	}
		
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-3n162i0p7q95 .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-3n162i0p7q95 .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */
	.fl-node-3n162i0p7q95 .uabb-infobox {
		text-align: left;
	}
	.fl-builder-content .fl-node-3n162i0p7q95 .infobox-photo-left .uabb-infobox-content{
		width: calc(100% - 240px);
	}

/* Responsive CSS */

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

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

			.fl-builder-content .fl-node-3n162i0p7q95 .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			padding: 0;
			margin-bottom: 20px;
		}

		.fl-builder-content .fl-node-3n162i0p7q95 .uabb-infobox .uabb-infobox-left-right-wrap .uabb-infobox-content,
		.fl-builder-content .fl-node-3n162i0p7q95 .uabb-infobox .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			display: block;
			width: 100%;
			text-align: center;
		}

		.fl-builder-content .fl-node-3n162i0p7q95 .uabb-reverse-order .uabb-infobox-left-right-wrap,
		.fl-builder-content .fl-node-3n162i0p7q95 .uabb-reverse-order .uabb-infobox-left-right-wrap {
			display: inline-flex;
			flex-direction: column-reverse;
		}

		.fl-builder-content .fl-node-3n162i0p7q95 .uabb-infobox.infobox-left .uabb-imgicon-wrap,
		.fl-builder-content .fl-node-3n162i0p7q95 .uabb-infobox.infobox-right .uabb-imgicon-wrap {
			margin-left: 0;
			margin-right: 0;
		}
			

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

	
	
	/* Left Right Title Image */
			.fl-node-3n162i0p7q95 .uabb-infobox {
			text-align: left;
		}
		.fl-builder-content .fl-node-3n162i0p7q95 .infobox-photo-left .uabb-infobox-content{
			width: calc(100% - 240px);
		}
	}

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

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


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

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


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

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

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

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

		.fl-node-3sgw0m1f9e4x .uabb-image .uabb-image-content{
								}

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

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

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

/* Icon Margin */
		.fl-node-3sgw0m1f9e4x .infobox-left .uabb-imgicon-wrap {
		margin-right: 20px;
	}
		
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-3sgw0m1f9e4x .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-3sgw0m1f9e4x .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */
	.fl-node-3sgw0m1f9e4x .uabb-infobox {
		text-align: left;
	}
	.fl-builder-content .fl-node-3sgw0m1f9e4x .infobox-photo-left .uabb-infobox-content{
		width: calc(100% - 240px);
	}

/* Responsive CSS */

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

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

			.fl-builder-content .fl-node-3sgw0m1f9e4x .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			padding: 0;
			margin-bottom: 20px;
		}

		.fl-builder-content .fl-node-3sgw0m1f9e4x .uabb-infobox .uabb-infobox-left-right-wrap .uabb-infobox-content,
		.fl-builder-content .fl-node-3sgw0m1f9e4x .uabb-infobox .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			display: block;
			width: 100%;
			text-align: center;
		}

		.fl-builder-content .fl-node-3sgw0m1f9e4x .uabb-reverse-order .uabb-infobox-left-right-wrap,
		.fl-builder-content .fl-node-3sgw0m1f9e4x .uabb-reverse-order .uabb-infobox-left-right-wrap {
			display: inline-flex;
			flex-direction: column-reverse;
		}

		.fl-builder-content .fl-node-3sgw0m1f9e4x .uabb-infobox.infobox-left .uabb-imgicon-wrap,
		.fl-builder-content .fl-node-3sgw0m1f9e4x .uabb-infobox.infobox-right .uabb-imgicon-wrap {
			margin-left: 0;
			margin-right: 0;
		}
			

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

	
	
	/* Left Right Title Image */
			.fl-node-3sgw0m1f9e4x .uabb-infobox {
			text-align: left;
		}
		.fl-builder-content .fl-node-3sgw0m1f9e4x .infobox-photo-left .uabb-infobox-content{
			width: calc(100% - 240px);
		}
	}

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

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

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

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

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

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

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

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

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


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

/* Description Color */

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

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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-ryw9hmbfvg0a .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */
	.fl-node-ryw9hmbfvg0a .uabb-infobox {
		text-align: left;
	}
	.fl-builder-content .fl-node-ryw9hmbfvg0a .infobox-photo-left .uabb-infobox-content{
		width: calc(100% - 240px);
	}

/* Responsive CSS */

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

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

			.fl-builder-content .fl-node-ryw9hmbfvg0a .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			padding: 0;
			margin-bottom: 20px;
		}

		.fl-builder-content .fl-node-ryw9hmbfvg0a .uabb-infobox .uabb-infobox-left-right-wrap .uabb-infobox-content,
		.fl-builder-content .fl-node-ryw9hmbfvg0a .uabb-infobox .uabb-infobox-left-right-wrap .uabb-imgicon-wrap {
			display: block;
			width: 100%;
			text-align: center;
		}

		.fl-builder-content .fl-node-ryw9hmbfvg0a .uabb-reverse-order .uabb-infobox-left-right-wrap,
		.fl-builder-content .fl-node-ryw9hmbfvg0a .uabb-reverse-order .uabb-infobox-left-right-wrap {
			display: inline-flex;
			flex-direction: column-reverse;
		}

		.fl-builder-content .fl-node-ryw9hmbfvg0a .uabb-infobox.infobox-left .uabb-imgicon-wrap,
		.fl-builder-content .fl-node-ryw9hmbfvg0a .uabb-infobox.infobox-right .uabb-imgicon-wrap {
			margin-left: 0;
			margin-right: 0;
		}
			

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

	
	
	/* Left Right Title Image */
			.fl-node-ryw9hmbfvg0a .uabb-infobox {
			text-align: left;
		}
		.fl-builder-content .fl-node-ryw9hmbfvg0a .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-node-6vucga7erh81 > .fl-col-content.fl-node-content {
							-webkit-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							-moz-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							-o-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
													}
					
					
					
																																																			
					
					
					
																							
											.fl-node-fq7d53abjyx2 > .fl-col-content.fl-node-content {
							-webkit-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							-moz-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							-o-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
													}
					
					
					
																																																																															
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																							
					
					
					
																																					
					
					
					
																
					
					
					
																																												
											.fl-node-qx5e1j78tni0 > .fl-col-content.fl-node-content {
							-webkit-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							-moz-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							-o-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
													}
					
					
					
																
					
					
					
																							
											.fl-node-6j29enciwlpk > .fl-col-content.fl-node-content {
							-webkit-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							-moz-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							-o-box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
							box-shadow: 3px 3px 7px 3px rgba(168,168,168,0.5);
													}
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																																																													
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .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-kwh4s2gxld6r .pp-row-separator {
                position: absolute;
                left: 0;
                width: 100%;
                z-index: 1;
            }
            .pp-previewing .fl-node-kwh4s2gxld6r .pp-row-separator {
                z-index: 2001;
            }
            .fl-node-kwh4s2gxld6r .pp-row-separator svg {
                position: absolute;
                left: 0;
                width: 100%;
            }
			.fl-node-kwh4s2gxld6r .pp-row-separator-top {
				margin-top: -1px;
			}
            .fl-node-kwh4s2gxld6r .pp-row-separator-top,
            .fl-node-kwh4s2gxld6r .pp-row-separator-top svg {
                top: 0;
                bottom: auto;
            }
			.fl-node-kwh4s2gxld6r .pp-row-separator-bottom {
                margin-bottom: -1px;
			}
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom,
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg {
                top: auto;
                bottom: 0;
            }
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg.pp-big-triangle,
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg.pp-big-triangle-shadow,
            .fl-node-kwh4s2gxld6r .pp-row-separator-top svg.pp-big-triangle-left,
            .fl-node-kwh4s2gxld6r .pp-row-separator-top svg.pp-big-triangle-right,
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg.pp-small-triangle,
            .fl-node-kwh4s2gxld6r .pp-row-separator-top svg.pp-tilt-right,
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg.pp-tilt-right,
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg.pp-curve,
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg.pp-twin-curves,
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg.pp-wave,
            .fl-node-kwh4s2gxld6r .pp-row-separator-top svg.pp-cloud,
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg.pp-slit,
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg.pp-water-separator {
                transform: scaleY(-1);
            }
            
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg.pp-big-triangle-right,
            .fl-node-kwh4s2gxld6r .pp-row-separator-bottom svg.pp-tilt-right {
                transform: scaleX(-1);
            }

            .fl-node-kwh4s2gxld6r .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-kwh4s2gxld6r .pp-row-separator-top,
                .fl-node-kwh4s2gxld6r .pp-row-separator-bottom {
                    display: block;
                }
                                .fl-node-kwh4s2gxld6r .pp-row-separator-top {
                    display: none;
                }
                                                .fl-node-kwh4s2gxld6r .pp-row-separator-bottom {
                    display: none;
                }
                                                            }
            @media only screen and (max-width: 414px) {
                .fl-node-kwh4s2gxld6r .pp-row-separator-top,
                .fl-node-kwh4s2gxld6r .pp-row-separator-bottom {
                    display: block;
                }
                                .fl-node-kwh4s2gxld6r .pp-row-separator-top {
                    display: none;
                }
                                                .fl-node-kwh4s2gxld6r .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-0c2rm4p35jqd .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-w0dk81jl5ygc .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-p2wxe8itqsjm .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-68myd91v3wns .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-t96lsxiwdy27 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-eyi21qf7wagl .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-up20qdy7e1c8 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-ztsa26ynewuh .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-liorbvkytx7g .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-1l634gj9582f .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-mjdks8nvpwqz .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-jqumic9o1xwt .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-450q3hb61ryx .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-rtesigjv7052 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-foudgkezntsv .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-4vptrf8idh9c .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-dc9jbpqori15 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-qbc2x4vkl09e .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-e51gzfubip24 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-kml5arf237pb .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-cbej0rk5xsof .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-86salctkbjue .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-u5ag3l9ftsh4 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-bjr47kx61evu .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-mgwqnj8kc401 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-erhscwji8x7p .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-3sqof16ygrvu .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6s8hi5lfdtxy .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-7nk9h6ye1g4f .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-u9xt0e4bfq37 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-g4p7q3tm0v8j .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-gvim25ow3he7 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-1fogntml75s3 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-sgzbu64hv1f3 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-swufcpdvao4k .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-v091mczjqs78 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-o4ntjy2f9m6e .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-p8yr3q4nmbve .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-kwh4s2gxld6r .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-7ldhjs5b2yim .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-mu9tc1qoe325 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-udsrkfoz80mq .fl-row-content {
				min-width: 0px;
			}
		