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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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





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






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






.fl-node-l46dia9s0e71 > .fl-row-content-wrap {
	background-color: #f8f9f9;
}
 .fl-node-l46dia9s0e71 > .fl-row-content-wrap {
	padding-bottom:0px;
}






.fl-node-iyjmx6na31wv > .fl-row-content-wrap {
	background-color: #f8f9f9;
}
 .fl-node-iyjmx6na31wv > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:20px;
}






.fl-node-tc0zdlp34vfi > .fl-row-content-wrap {
	background-color: #fffcf6;
}






.fl-node-v5ztr2l3fbcw > .fl-row-content-wrap {
	background-color: #f8f9f9;
}
 .fl-node-v5ztr2l3fbcw > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}






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

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

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-z4nf1udmype2.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-z4nf1udmype2.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-z4nf1udmype2.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-z4nf1udmype2 > .fl-row-content-wrap {
	background-color: #f8f9f9;
}
.fl-node-z4nf1udmype2.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 500px;
}






.fl-node-a1o6qrten7cd > .fl-row-content-wrap {
	background-color: #f8f9f9;
}
 .fl-node-a1o6qrten7cd > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:20px;
}






.fl-node-2dyz0lhjvmfn > .fl-row-content-wrap {
	background-color: #fffcf6;
}






.fl-node-bq487j0o9zli > .fl-row-content-wrap {
	background-color: #f8f9f9;
}
 .fl-node-bq487j0o9zli > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}






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

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

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-69hkvzwnjyuf.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-69hkvzwnjyuf.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-69hkvzwnjyuf.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-69hkvzwnjyuf > .fl-row-content-wrap {
	background-color: #f8f9f9;
}
.fl-node-69hkvzwnjyuf.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 500px;
}






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






.fl-node-38rpotcxw67n > .fl-row-content-wrap {
	background-color: #fffcf6;
}
 .fl-node-38rpotcxw67n > .fl-row-content-wrap {
	padding-bottom:0px;
}






.fl-node-92cjmgk0fx6s > .fl-row-content-wrap {
	background-color: #fffcf6;
}
 .fl-node-92cjmgk0fx6s > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}






.fl-node-pv04ghfxcsj1 > .fl-row-content-wrap {
	background-color: #f8f9f9;
}
.fl-node-pv04ghfxcsj1 .fl-row-content {
	max-width: 800px;
}






.fl-node-yr5v4f8konqh > .fl-row-content-wrap {
	background-color: #f8f9f9;
}






.fl-node-stumgw0d71xc > .fl-row-content-wrap {
	background-color: #fffcf6;
}
 .fl-node-stumgw0d71xc > .fl-row-content-wrap {
	padding-top:35px;
	padding-bottom:35px;
}






.fl-node-gub4a0918kih > .fl-row-content-wrap {
	background-color: #fffcf6;
}






.fl-node-c85ygkufta2w > .fl-row-content-wrap {
	background-color: #f8f9f9;
}
 .fl-node-c85ygkufta2w > .fl-row-content-wrap {
	padding-top:50px;
	padding-bottom:0px;
}






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

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

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-fzuwbh0pmn27.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-fzuwbh0pmn27.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-fzuwbh0pmn27.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-fzuwbh0pmn27 > .fl-row-content-wrap {
	background-color: #fffcf6;
	background-image: url(https://traumapractice.co.uk/wp-content/uploads/2023/10/admin-ajax.jpeg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-fzuwbh0pmn27 > .fl-row-content-wrap:after {
	background-color: rgba(255, 252, 245, 0.51);
}
.fl-node-fzuwbh0pmn27.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 500px;
}
@media(max-width: 1200px) {
	.fl-node-fzuwbh0pmn27 > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 992px) {
	.fl-node-fzuwbh0pmn27 > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 768px) {
	.fl-node-fzuwbh0pmn27 > .fl-row-content-wrap {
		background-position: center center;
	}
}
 .fl-node-fzuwbh0pmn27 > .fl-row-content-wrap {
	padding-top:20px;
	padding-bottom:20px;
}






.fl-node-9nfid2sjmop4 > .fl-row-content-wrap {
	background-color: #f8f9f9;
}
 .fl-node-9nfid2sjmop4 > .fl-row-content-wrap {
	padding-top:30px;
	padding-bottom:30px;
}






.fl-node-9ry45hsw2ipb > .fl-row-content-wrap {
	background-color: #fffcf6;
}




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




.fl-node-51qyj7euir9h {
	width: 33.33%;
}




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




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




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




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




.fl-node-1s4b9jdky2en {
	width: 100%;
}




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




.fl-node-08d73fpcmwzn {
	width: 100%;
}




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




.fl-node-92fl0qzvwemn {
	width: 100%;
}




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




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




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




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




.fl-node-16gabvwh4diy {
	width: 100%;
}




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




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




.fl-node-75tfugozb63y {
	width: 100%;
}




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




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




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




.fl-node-031b5ajpgh2q {
	width: 100%;
}




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




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




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




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




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




.fl-node-1zyrj92sptv7 {
	width: 100%;
}




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




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




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




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




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




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




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




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




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




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




.fl-node-36xn9p5rtdlo {
	width: 100%;
}




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




.fl-node-v9zeyujoscal {
	width: 75%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-v9zeyujoscal {
		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-9lhk40fn1ize {
	width: 33.33%;
}




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




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




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




.fl-node-13vd9670cfrq {
	width: 100%;
}




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




.fl-node-31ms5yvfl9eg {
	width: 100%;
}




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




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




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




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




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




.fl-node-jkqog7b46st1 {
	width: 50.12%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-jkqog7b46st1 {
		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-1byrtj4f3d02 {
	width: 50%;
}




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




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




.fl-node-wg4hex7kmdyi {
	width: 25%;
}




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




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




.fl-node-mbcneiqwsvpu {
	width: 50%;
}
 .fl-node-mbcneiqwsvpu > .fl-col-content {
	padding-top:20px;
}




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




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




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




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




.fl-node-s4mu5fcw8ra7 {
	width: 25%;
}




.fl-node-5w4tgn1ezd62 {
	width: 33.34%;
}




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




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




.fl-node-9gocwd8l5sky {
	width: 49.88%;
}




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




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




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




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




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




.fl-node-dtm7c1hqezx8 {
	width: 50%;
}
 .fl-node-dtm7c1hqezx8 > .fl-col-content {
	margin-top:-75px;
}




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




.fl-node-6h7fxb2ku5oa {
	width: 33.33%;
}




.fl-node-574pq6jmw0nl {
	width: 25%;
}




.fl-node-f3jon20ce1sm {
	width: 25%;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-w7ahxk4tp8c2 h2.fl-heading a,
.fl-row .fl-col .fl-node-w7ahxk4tp8c2 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-w7ahxk4tp8c2 h2.fl-heading .fl-heading-text *,
.fl-node-w7ahxk4tp8c2 h2.fl-heading .fl-heading-text {
	color: #003366;
}
.fl-node-w7ahxk4tp8c2.fl-module-heading .fl-heading {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
	text-align: center;
}
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: 768px) { .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-ohezxbnwt7ca {
	width: 100%;
}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-ohezxbnwt7ca .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-ohezxbnwt7ca .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-ohezxbnwt7ca .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-4n9hus8biar1 .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-4n9hus8biar1 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-4n9hus8biar1 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-0x3rekcwupfl .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-0x3rekcwupfl .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-0x3rekcwupfl .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

.fl-node-67xmpjyl0h1o {
	width: 100%;
}

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

	
		/* Icon Css */
		.fl-node-67xmpjyl0h1o .uabb-icon-wrap .uabb-icon i,
		.fl-node-67xmpjyl0h1o .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 30px;
			height: auto;
			width: auto;
			
				line-height: 30px;
				height: 30px;
				width: 30px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-67xmpjyl0h1o .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-67xmpjyl0h1o .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-67xmpjyl0h1o .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-67xmpjyl0h1o .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-67xmpjyl0h1o .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-67xmpjyl0h1o .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-67xmpjyl0h1o .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-67xmpjyl0h1o .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-67xmpjyl0h1o .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-67xmpjyl0h1o .uabb-infobox {
				background: rgba(0,76,73,0.03);

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-67xmpjyl0h1o .infobox-center,
.fl-node-67xmpjyl0h1o .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-67xmpjyl0h1o .uabb-infobox-text {
	color:
	#003366;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-67xmpjyl0h1o .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-67xmpjyl0h1o .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-67xmpjyl0h1o .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 16px;
}
/* Wrappers */
body.rtl .fl-module-content-slider .bx-viewport {
	direction: ltr;
}
.fl-module-content-slider .bx-wrapper {
	margin: 0 auto 40px;
}
.fl-content-slider {
	position: relative;
}
.fl-content-slider .fl-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	visibility: hidden;
}
.fl-content-slider-wrapper .fl-slide:first-child,
.fl-content-slider-loaded .fl-slide {
	position: relative;
	visibility: visible;
}

.fl-content-slider-navigation button,
.fl-content-slider-navigation button:focus,
.fl-content-slider-navigation button:hover {
	all: unset;
	cursor: pointer;
	position: absolute;
}

/* Controls */
.bx-wrapper .bx-controls-direction a,
.bx-wrapper .bx-controls-direction button {
	z-index: 99;
}

/* Background Photo */
.fl-content-slider .fl-slide-bg-photo {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
.fl-content-slider .fl-slide-bg-photo-img {
	display: none;
}

/* Background Link */
.fl-content-slider .fl-slide-bg-link {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

/* Foreground Photo/Video */
.fl-slide-photo {
	position: relative;
	text-align: center;
	z-index: 2;
}
.fl-slide-text-left .fl-slide-photo-wrap {
	float: right;
}
.fl-slide-text-center .fl-slide-photo-wrap {
	text-align: center;
}
.fl-slide-text-center .fl-slide-photo-wrap img {
	margin: 0 auto;
}
.fl-slide-text-right .fl-slide-photo-wrap {
	float: left;
}

/* Mobile Photo/Video */
.fl-slide-mobile-photo {
	display: none;
}
.fl-slide-mobile-photo-img {
	width: 100%;
}

/* Title and Text Position */
.fl-slide-content {
	position: relative;
	z-index: 2;
}
.fl-slide-text-left .fl-slide-content-wrap {
	float: left;
	text-align: left;
}
.fl-slide-text-center .fl-slide-content-wrap {
	margin: 0 auto;
	text-align: center;
}
.fl-slide-text-right .fl-slide-content-wrap {
	float: right;
	text-align: left;
}

/* Title and Text Style */
.fl-slide-title,
.fl-slide-text > * {
	line-height: 1.4;
	margin: 0 0 20px !important;
	padding: 0 !important;
}
.fl-slide-text > *:last-child {
	margin: 0 !important;
}

/* Buttons */
.fl-slide-cta-button {
	padding-top: 24px;
}

.fl-content-slider-navigation {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 1;
	margin-top: -16px;
}
.fl-content-slider-navigation .slider-prev,
.fl-content-slider-navigation .slider-next {
	position: absolute;
	display: inline-block;
	opacity: .7;
}
.fl-content-slider-navigation .slider-prev:hover,
.fl-content-slider-navigation .slider-next:hover {
	opacity: 1;
}

.fl-module-content-slider .fl-content-slider-navigation .slider-prev { left: 5px; }
.fl-module-content-slider .fl-content-slider-navigation .slider-next { right: 5px; }

.fl-content-slider-navigation .fl-content-slider-svg-container {
	position: relative;
	width: 32px;
	height: 32px;
}
.fl-content-slider-navigation svg {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.fl-content-slider-navigation path { 
	fill: #fff;
}
.fl-content-slider-navigation a.disabled,
.fl-content-slider-navigation button.disabled,
.bx-controls a.disabled,
.bx-controls button.disabled {
	cursor: not-allowed;
	pointer-events: none;
}

.fl-content-slider-navigation button:focus {
	outline: 1px auto -webkit-focus-ring-color;
}
@media (max-width: 768px) { /* Wrapper */
.fl-content-slider,
.fl-content-slider .fl-slide {
	min-height: 0 !important;
}

/* Background Photo */
.fl-content-slider .fl-slide-bg-photo {
	background-image: none;
	position: static;
}
.fl-content-slider .fl-slide-bg-photo a {
	position: static;
}
.fl-content-slider .fl-slide-bg-photo-img {
	border: none;
	display: block;
	padding: 0;
}

/* Foreground Photo/Video */
.fl-slide-photo-wrap {
	display: none;
}

/* Mobile Photo/Video */
.fl-slide-mobile-photo {
	display: block;
}

/* Title and Text Position */
.fl-slide-text-left .fl-slide-content-wrap,
.fl-slide-text-right .fl-slide-content-wrap {
	float: none;
	text-align: center;
}
.fl-module-content-slider .fl-slide .fl-slide-content-wrap,
.fl-module-content-slider .fl-slide .fl-slide-content {
	min-height: 0;
	width: auto;
}
.fl-module-content-slider .fl-slide .fl-slide-content {
	margin: 0 !important;
	padding: 30px;
}

/* Title and Text Style */
.fl-module-content-slider .fl-slide .fl-slide-title {
	font-size: 26px;
	line-height: 38px;
}
.fl-module-content-slider .fl-slide .fl-slide-text,
.fl-module-content-slider .fl-slide .fl-slide-text * {
	font-size: 14px;
	line-height: 22px;
}

/* Buttons */
.fl-module-content-slider .fl-slide .fl-button:is(a, button) {
	padding: 10px 20px;
}
 }.fl-node-j7r3geh69b8v .fl-content-slider-wrapper {
	opacity: 0;
}
.fl-node-j7r3geh69b8v .fl-content-slider,
.fl-node-j7r3geh69b8v .fl-slide {
	min-height: 400px;
}
.fl-node-j7r3geh69b8v .fl-slide-foreground {
	margin: 0 auto;
	max-width: 1100px;
}
.fl-node-j7r3geh69b8v .fl-slide-0 .fl-slide-bg-photo{   background-image: url("https://traumapractice.co.uk/wp-content/uploads/2025/11/Counselling-therapy-session-copy.png");}.fl-node-j7r3geh69b8v .fl-slide-0 .fl-slide-content-wrap { float: none;}.fl-node-j7r3geh69b8v .fl-slide .fl-slide-title, .fl-node-j7r3geh69b8v .fl-slide .fl-slide-text, .fl-node-j7r3geh69b8v .fl-slide .fl-slide-text * {
	color: #ffffff;
}
.fl-node-j7r3geh69b8v .fl-slide-0 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
 .fl-node-j7r3geh69b8v > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
img.mfp-img {
    padding-bottom: 40px !important;
}

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

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

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-c74sgmir5aqk, .fl-node-c74sgmir5aqk .fl-photo {
	text-align: center;
}
 .fl-node-c74sgmir5aqk.fl-module-photo {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-module-map .fl-map {
	line-height: 0;
}
.fl-map iframe {
	border:0;
	width:100%;
	pointer-events: none;
}
@media (max-width: 768px) { .fl-module-map .fl-map:not(.fl-map-auto-responsive-disabled) {
	height: 0;
	overflow: hidden;
	padding-bottom: 75%;
	position: relative;
}
.fl-module-map .fl-map:not(.fl-map-auto-responsive-disabled) iframe {
	height: 100% !important;
	left: 0;
	position: absolute;
	top: 0;
	width: 100% !important;
}
 }.fl-node-bvwpsn1rfo9d .fl-map iframe {
	height: 350px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-8k1dn5q06uw9 .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-8k1dn5q06uw9 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-8k1dn5q06uw9 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
.fl-node-c1xbpwm8q4ki.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-c1xbpwm8q4ki > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-suy60m1fqwon .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-suy60m1fqwon .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-suy60m1fqwon > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-d2bmjocvnyhr.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-d2bmjocvnyhr > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-ct8h05wmqz79 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-ct8h05wmqz79 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-ct8h05wmqz79 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-avgyhsti9u5q.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-avgyhsti9u5q > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-1623y9lih8cj.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-1623y9lih8cj > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-frl35jc8yzxo .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-frl35jc8yzxo .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-frl35jc8yzxo > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-xzpn7htly9o2.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-xzpn7htly9o2 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-y1el0pgwuaxm .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-y1el0pgwuaxm .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-y1el0pgwuaxm > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-djeski6ra4um.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-djeski6ra4um > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-6pgek4ntzam3 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-6pgek4ntzam3 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-6pgek4ntzam3 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-3qz2x0vi6mh1.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-3qz2x0vi6mh1 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-afrymn7ws9ek.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-afrymn7ws9ek > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-ml2otg4hf8i5 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-ml2otg4hf8i5 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-ml2otg4hf8i5 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-uia9zmo3n4cr.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-uia9zmo3n4cr > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-j0yqhr6sf2kn .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-j0yqhr6sf2kn .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-j0yqhr6sf2kn > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-n7bjcd91vk0i.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-n7bjcd91vk0i > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-wo54muc072ip .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-wo54muc072ip .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-wo54muc072ip > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-m1cuovqzk2ei.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-m1cuovqzk2ei > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-1sf87i06jhq2.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-1sf87i06jhq2 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-ziwto07q3dbv .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-ziwto07q3dbv .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-ziwto07q3dbv > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-x8cv1960ep53.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-x8cv1960ep53 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-8uts32wrldny .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-8uts32wrldny .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-8uts32wrldny > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-8pmuzwxrh5b3.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-8pmuzwxrh5b3 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-rxkl63sdtv0w .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-rxkl63sdtv0w .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-rxkl63sdtv0w > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-ie8jk91vdgcm.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-ie8jk91vdgcm > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-ca8q204g13hz.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-ca8q204g13hz > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-7bad2wu4vne0 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-7bad2wu4vne0 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-7bad2wu4vne0 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-jyrnfxt3h1q8.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-jyrnfxt3h1q8 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-5i0thj3rsqug .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-5i0thj3rsqug .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-5i0thj3rsqug > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-nycxbdk6rvlh.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-nycxbdk6rvlh > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-izyfht8ko71a .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-izyfht8ko71a .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-izyfht8ko71a > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-ilev9kozb684.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-ilev9kozb684 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-19ojphaf8gx7.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-19ojphaf8gx7 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-jhokdlx8zipa .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-jhokdlx8zipa .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-jhokdlx8zipa > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-0saxm95bgwc2.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-0saxm95bgwc2 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-wduam8kv3srp .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-wduam8kv3srp .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-wduam8kv3srp > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-drkzvaf28wn7.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-drkzvaf28wn7 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-u4hzd3pc7xse .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-u4hzd3pc7xse .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-u4hzd3pc7xse > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-rit9sd2q7anp.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-rit9sd2q7anp > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-cldqg287r91j.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-cldqg287r91j > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-5w6bnzisokq2 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-5w6bnzisokq2 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-5w6bnzisokq2 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-x2k18zrpy3ed.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-x2k18zrpy3ed > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-0bq12pa8lozd .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-0bq12pa8lozd .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-0bq12pa8lozd > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-ipq2617yxu0o.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-ipq2617yxu0o > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-4vu7drlz3say .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-4vu7drlz3say .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-4vu7drlz3say > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-qu5ktnz4jlpy.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-qu5ktnz4jlpy > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-r6kz3qfjcbgw.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-r6kz3qfjcbgw > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-3qzgm1xure05 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-3qzgm1xure05 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-3qzgm1xure05 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-pscunb15fxa6.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-pscunb15fxa6 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-9xylhd4arf7z .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-9xylhd4arf7z .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-9xylhd4arf7z > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-yubts89d01jz.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-yubts89d01jz > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-3ivqtxcgur5s .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-3ivqtxcgur5s .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-3ivqtxcgur5s > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-6pfuxvgosty5.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-6pfuxvgosty5 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-srltgdfbpvon.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-srltgdfbpvon > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-op2rqeciusvj .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-op2rqeciusvj .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-op2rqeciusvj > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-08q6k3nypavj.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-08q6k3nypavj > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-wma5d0c1yq3r .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-wma5d0c1yq3r .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-wma5d0c1yq3r > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-omiytcsl9pzn.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-omiytcsl9pzn > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-ykh93cjn7xqo .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-ykh93cjn7xqo .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-ykh93cjn7xqo > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-u7dh3awp1oeq.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-u7dh3awp1oeq > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-z4ycoewq9ajs.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-z4ycoewq9ajs > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-m1iuyz6w824c .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-m1iuyz6w824c .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-m1iuyz6w824c > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-wa3bk40yfrhn.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-wa3bk40yfrhn > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-yzqwv3cj7eul .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-yzqwv3cj7eul .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-yzqwv3cj7eul > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-nw6o8tikvu05.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-nw6o8tikvu05 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-ke8t6anov4h1 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-ke8t6anov4h1 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-ke8t6anov4h1 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-3qpy46wfmtgb.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-3qpy46wfmtgb > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-sa93tzh76uid.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-sa93tzh76uid > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-o82l19w5z730 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-o82l19w5z730 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-o82l19w5z730 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-6nze4udsaw1x.fl-module-heading, .fl-node-6nze4udsaw1x.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-6nze4udsaw1x.fl-module-heading {
	margin-bottom:10px;
}
.fl-node-5d863gijqf7k .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-5d863gijqf7k .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-5d863gijqf7k.fl-module-separator {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-iz98flsd2gam.fl-module-heading, .fl-node-iz98flsd2gam.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-iz98flsd2gam.fl-module-heading {
	margin-bottom:10px;
}
.fl-node-u7mblk1r5vpy .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-u7mblk1r5vpy .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-u7mblk1r5vpy.fl-module-separator {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-cyoedxhtn7ur.fl-module-heading, .fl-node-cyoedxhtn7ur.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-cyoedxhtn7ur.fl-module-heading {
	margin-bottom:10px;
}
.fl-node-ou9lteh3wk2c.fl-module-heading, .fl-node-ou9lteh3wk2c.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-ou9lteh3wk2c.fl-module-heading {
	margin-bottom:10px;
}
.fl-node-flycn0r18uaw .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-flycn0r18uaw .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-flycn0r18uaw.fl-module-separator {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-tq7swvz5ixky.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-tq7swvz5ixky > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-8tyk37b4woxa .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-8tyk37b4woxa .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-8tyk37b4woxa > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-e7ph82but1i3.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-e7ph82but1i3 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-juroqpn1ebm8 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-juroqpn1ebm8 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-juroqpn1ebm8 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-691ha0optbw5.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-691ha0optbw5 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-vgrni605p93w.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-vgrni605p93w > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-1fmhavqupoc3 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-1fmhavqupoc3 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-1fmhavqupoc3 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-rke3g0mvtdjf.fl-module-heading, .fl-node-rke3g0mvtdjf.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-rke3g0mvtdjf.fl-module-heading {
	margin-bottom:10px;
}
.fl-node-aw4pxrye8tb1 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-aw4pxrye8tb1 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-aw4pxrye8tb1.fl-module-separator {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-r05ei9cx3hwo.fl-module-heading, .fl-node-r05ei9cx3hwo.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-r05ei9cx3hwo.fl-module-heading {
	margin-bottom:10px;
}
.fl-node-wh635mn1qjxu .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-wh635mn1qjxu .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-wh635mn1qjxu.fl-module-separator {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-eij9xm6dg4fn.fl-module-heading, .fl-node-eij9xm6dg4fn.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-eij9xm6dg4fn.fl-module-heading {
	margin-bottom:10px;
}
.fl-node-acgki0j1mfh3.fl-module-heading, .fl-node-acgki0j1mfh3.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-acgki0j1mfh3.fl-module-heading {
	margin-bottom:10px;
}
.fl-node-fuo1eq65ihk0 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-fuo1eq65ihk0 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-fuo1eq65ihk0.fl-module-separator {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-row .fl-col h2.fl-node-bw5dhmuz3svx,
		.fl-row .fl-col h2.fl-node-bw5dhmuz3svx a,
		h2.fl-node-bw5dhmuz3svx,
		h2.fl-node-bw5dhmuz3svx a {
	color: #003366;
}
.fl-node-bw5dhmuz3svx.fl-module-heading, .fl-node-bw5dhmuz3svx.fl-module-heading :where(a, q, p, span) {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
	text-align: center;
}
.fl-node-h2kw6blcx49t, .fl-node-h2kw6blcx49t .fl-photo {
	text-align: center;
}
.fl-node-h2kw6blcx49t .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.fl-node-739iwsp41tlc {
	width: 100%;
}

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


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-739iwsp41tlc .uabb-infobox {
				background: #fffcf6;

			padding-top:60px;padding-bottom:60px;padding-left:130px;padding-right:50px;
		}
	/* Align */
.fl-node-739iwsp41tlc .infobox-left,
.fl-node-739iwsp41tlc .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-739iwsp41tlc .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-739iwsp41tlc .uabb-infobox {
			;		}
	}

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

	

	.fl-node-739iwsp41tlc .infobox-responsive-left {
		text-align: left;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-739iwsp41tlc .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-739iwsp41tlc .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
 .fl-node-739iwsp41tlc > .fl-module-content {
	margin-left:-120px;
}
@media (max-width: 768px) { .fl-node-739iwsp41tlc > .fl-module-content { margin-left:20px; } }
.fl-node-ik8p1oquya96 {
	width: 100%;
}
.fl-builder-content .fl-node-ik8p1oquya96 .uabb-button .uabb-btn-img {
	width: 20px;
}




	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:visited {
		padding-top:8px;padding-bottom:8px;padding-left:15px;padding-right:15px;background:#0070c0;background: rgba(0, 112, 192, 1);}
		.fl-builder-content .fl-node-ik8p1oquya96 .uabb-module-content.uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-module-content.uabb-creative-button-wrap a:focus {
		border-color:;	}
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:hover {
		background:#ffffff;background: rgba(255, 255, 255, 1);	}
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a *,
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:visited,
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:visited * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:focus *,
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:hover * {
		color: #0070c0;
	}
				


.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:focus,
.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:hover {
			}


@media ( max-width: 768px ) {
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap.uabb-button-reponsive-.uabb-creative-button-reponsive- {
		text-align: ;
	}
}


	@media ( max-width: 992px ) {
	.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap.uabb-creative-button-tablet- {
		text-align: ;
	}
			.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a,
		.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}

	
	@media ( max-width: 768px ) {
			.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a,
			.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}
	
.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a,.fl-builder-content .fl-node-ik8p1oquya96 .uabb-creative-button-wrap a:visited {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 15px;
}
.fl-builder-content .fl-node-ik8p1oquya96 .uabb-module-content.uabb-creative-button-wrap a {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0070c0;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}

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

	
		/* Icon Css */
		.fl-node-ik8p1oquya96 .uabb-icon-wrap .uabb-icon i,
		.fl-node-ik8p1oquya96 .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 35px;
			height: auto;
			width: auto;
			
				line-height: 35px;
				height: 35px;
				width: 35px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-ik8p1oquya96 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-ik8p1oquya96 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-ik8p1oquya96 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-ik8p1oquya96 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-ik8p1oquya96 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-ik8p1oquya96 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-ik8p1oquya96 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-ik8p1oquya96 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-ik8p1oquya96 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-ik8p1oquya96 .uabb-infobox {
				background: #fffcf6;

			padding-top:30px;padding-bottom:30px;padding-left:30px;padding-right:30px;
		}
	/* Align */
.fl-node-ik8p1oquya96 .infobox-center,
.fl-node-ik8p1oquya96 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-ik8p1oquya96 .uabb-infobox-text {
	color:
	var(--contrast);
}

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


/* Button Margin */
.fl-builder-content .fl-node-ik8p1oquya96 .uabb-infobox-button {
	margin-top: 10px;
	margin-bottom: 0px;
}


/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-ik8p1oquya96 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-ik8p1oquya96 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-4tod3jrbngas h1.uabb-infobox-title,
.fl-node-4tod3jrbngas h1.uabb-infobox-title span a,
.fl-node-4tod3jrbngas h1.uabb-infobox-title * {
	color: #003366}


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

/* Description Color */

.fl-node-4tod3jrbngas .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-4tod3jrbngas .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 35px;
}
.fl-node-4tod3jrbngas .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
.fl-row .fl-col h2.fl-node-i8s0x1gwjf2r,
		.fl-row .fl-col h2.fl-node-i8s0x1gwjf2r a,
		h2.fl-node-i8s0x1gwjf2r,
		h2.fl-node-i8s0x1gwjf2r a {
	color: #003366;
}
.fl-node-i8s0x1gwjf2r.fl-module-heading, .fl-node-i8s0x1gwjf2r.fl-module-heading :where(a, q, p, span) {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
	text-align: center;
}
.fl-node-cj1z265mwnis.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-cj1z265mwnis > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-i87dbycvgtsu .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-i87dbycvgtsu .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-i87dbycvgtsu > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-eum92yf53rpb.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-eum92yf53rpb > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-9xadhliup1sg .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-9xadhliup1sg .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-9xadhliup1sg > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-5tpqr9cbl78v.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-5tpqr9cbl78v > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-jrwek7ianh4l.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-jrwek7ianh4l > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-exdncv2g9msr .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-exdncv2g9msr .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-exdncv2g9msr > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-7lgfu32axrpt, .fl-node-7lgfu32axrpt .fl-photo {
	text-align: center;
}
.fl-node-7lgfu32axrpt .fl-photo-img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-dgw13kmhjy4q .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-dgw13kmhjy4q .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-dgw13kmhjy4q .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-nopsil5v2tf6 .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-nopsil5v2tf6 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-nopsil5v2tf6 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
.fl-node-a1v6hlp4xqek, .fl-node-a1v6hlp4xqek .fl-photo {
	text-align: center;
}
.fl-node-a1v6hlp4xqek .fl-photo-img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-vu7elm4gfirt .uabb-infobox {
				background: #fffcf6;

			padding-top:70px;padding-bottom:70px;padding-left:50px;padding-right:130px;
		}
	/* Align */
.fl-node-vu7elm4gfirt .infobox-left,
.fl-node-vu7elm4gfirt .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-vu7elm4gfirt .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-vu7elm4gfirt .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-vu7elm4gfirt .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
 .fl-node-vu7elm4gfirt > .fl-module-content {
	margin-right:-120px;
}
@media (max-width: 768px) { .fl-node-vu7elm4gfirt > .fl-module-content { margin-right:20px; } }.fl-node-26ki1a5z8vsy, .fl-node-26ki1a5z8vsy .fl-photo {
	text-align: center;
}
.fl-node-26ki1a5z8vsy .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

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

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

	
		/* Icon Css */
		.fl-node-guarxlcv4o30 .uabb-icon-wrap .uabb-icon i,
		.fl-node-guarxlcv4o30 .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 30px;
			height: auto;
			width: auto;
			
				line-height: 30px;
				height: 30px;
				width: 30px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-guarxlcv4o30 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-guarxlcv4o30 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-guarxlcv4o30 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-guarxlcv4o30 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-guarxlcv4o30 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-guarxlcv4o30 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-guarxlcv4o30 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-guarxlcv4o30 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-guarxlcv4o30 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-guarxlcv4o30 .uabb-infobox-text {
	color:
	#003366;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-guarxlcv4o30 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-guarxlcv4o30 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
 .fl-node-guarxlcv4o30 > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
.fl-row .fl-col h2.fl-node-54bgtpk3cqsv,
		.fl-row .fl-col h2.fl-node-54bgtpk3cqsv a,
		h2.fl-node-54bgtpk3cqsv,
		h2.fl-node-54bgtpk3cqsv a {
	color: #003366;
}
.fl-node-54bgtpk3cqsv.fl-module-heading, .fl-node-54bgtpk3cqsv.fl-module-heading :where(a, q, p, span) {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 50px;
}

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

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

	
		/* Icon Css */
		.fl-node-w2arde3ou0yz .uabb-icon-wrap .uabb-icon i,
		.fl-node-w2arde3ou0yz .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 30px;
			height: auto;
			width: auto;
			
				line-height: 30px;
				height: 30px;
				width: 30px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-w2arde3ou0yz .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-w2arde3ou0yz .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-w2arde3ou0yz .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-w2arde3ou0yz .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-w2arde3ou0yz .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-w2arde3ou0yz .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-w2arde3ou0yz .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-w2arde3ou0yz .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-w2arde3ou0yz .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-w2arde3ou0yz .uabb-infobox-text {
	color:
	#003366;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-w2arde3ou0yz .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-w2arde3ou0yz .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
 .fl-node-w2arde3ou0yz > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}

.fl-node-52e6kbjo4lud {
	width: 100%;
}

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

	
		/* Icon Css */
		.fl-node-52e6kbjo4lud .uabb-icon-wrap .uabb-icon i,
		.fl-node-52e6kbjo4lud .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 30px;
			height: auto;
			width: auto;
			
				line-height: 30px;
				height: 30px;
				width: 30px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-52e6kbjo4lud .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-52e6kbjo4lud .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-52e6kbjo4lud .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-52e6kbjo4lud .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-52e6kbjo4lud .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-52e6kbjo4lud .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-52e6kbjo4lud .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-52e6kbjo4lud .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-52e6kbjo4lud .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-52e6kbjo4lud .uabb-infobox-text {
	color:
	#003366;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-52e6kbjo4lud .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-52e6kbjo4lud .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-52e6kbjo4lud .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
 .fl-node-52e6kbjo4lud > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}

.fl-node-rk9pzwmnseq3 {
	width: 100%;
}
.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-button .uabb-btn-img {
	width: 20px;
}




	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:visited {
		padding-top:;padding-bottom:;padding-left:;padding-right:;background:#0070c0;background: rgba(0, 112, 192, 1);}
		.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-module-content.uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-module-content.uabb-creative-button-wrap a:focus {
		border-color:;	}
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:hover {
		background:#ffffff;background: rgba(255, 255, 255, 1);	}
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a *,
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:visited,
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:visited * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:focus *,
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:hover * {
		color: #0070c0;
	}
				


.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:focus,
.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:hover {
			}


@media ( max-width: 768px ) {
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap.uabb-button-reponsive-.uabb-creative-button-reponsive- {
		text-align: ;
	}
}


	@media ( max-width: 992px ) {
	.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap.uabb-creative-button-tablet- {
		text-align: ;
	}
			.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a,
		.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}

	
	@media ( max-width: 768px ) {
			.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a,
			.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}
	
.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a,.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-creative-button-wrap a:visited {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-module-content.uabb-creative-button-wrap a {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0070c0;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}

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

	
		.fl-node-rk9pzwmnseq3 .uabb-image .uabb-photo-img {
							width: 150px;
								}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-rk9pzwmnseq3 .uabb-infobox-text {
	color:
	#575760;
}

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

/* Button Margin */
.fl-builder-content .fl-node-rk9pzwmnseq3 .uabb-infobox-button {
	margin-top: 10px;
	margin-bottom: 0px;
}


/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-rk9pzwmnseq3 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 36px;
}
.fl-node-rk9pzwmnseq3 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 20px;
}
.fl-node-3po821rbsz7q, .fl-node-3po821rbsz7q .fl-photo {
	text-align: center;
}
.fl-node-3po821rbsz7q .fl-photo-content, .fl-node-3po821rbsz7q .fl-photo-img {
	width: 350px;
}

.fl-node-ou2e891rxpqz {
	width: 100%;
}
.fl-builder-content .fl-node-ou2e891rxpqz .uabb-button .uabb-btn-img {
	width: 20px;
}




	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:visited {
		padding-top:;padding-bottom:;padding-left:;padding-right:;background:#ffffff;background: rgba(255, 255, 255, 1);}
		.fl-builder-content .fl-node-ou2e891rxpqz .uabb-module-content.uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-module-content.uabb-creative-button-wrap a:focus {
		border-color:;	}
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:hover {
		background:#003366;background: rgba(0, 51, 102, 1);	}
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a *,
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:visited,
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:visited * {
		color: #003366;
	}
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:focus *,
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:hover * {
		color: #ffffff;
	}
				


.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:focus,
.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:hover {
			}


@media ( max-width: 768px ) {
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap.uabb-button-reponsive-.uabb-creative-button-reponsive- {
		text-align: ;
	}
}


	@media ( max-width: 992px ) {
	.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap.uabb-creative-button-tablet- {
		text-align: ;
	}
			.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a,
		.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}

	
	@media ( max-width: 768px ) {
			.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a,
			.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}
	
.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a,.fl-builder-content .fl-node-ou2e891rxpqz .uabb-creative-button-wrap a:visited {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
.fl-builder-content .fl-node-ou2e891rxpqz .uabb-module-content.uabb-creative-button-wrap a {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #003366;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	box-shadow: 5px 5px 15px -5px rgb(191, 191, 191);
}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-ou2e891rxpqz .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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


/* Button Margin */
.fl-builder-content .fl-node-ou2e891rxpqz .uabb-infobox-button {
	margin-top: 10px;
	margin-bottom: 0px;
}


/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-ou2e891rxpqz .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 300;
	font-size: 20px;
}
.fl-node-ou2e891rxpqz .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
.fl-node-ou2e891rxpqz .uabb-infobox-title-prefix {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
 .fl-node-ou2e891rxpqz > .fl-module-content {
	margin-top:0px;
}
.fl-node-90mdf3rqcn76, .fl-node-90mdf3rqcn76 .fl-photo {
	text-align: center;
}
.fl-node-90mdf3rqcn76 .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-deo524m6l8tf .uabb-infobox {
				background: #fffcf6;

			padding-top:80px;padding-bottom:80px;padding-left:130px;padding-right:50px;
		}
	/* Align */
.fl-node-deo524m6l8tf .infobox-left,
.fl-node-deo524m6l8tf .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-deo524m6l8tf .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-deo524m6l8tf .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-deo524m6l8tf .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
 .fl-node-deo524m6l8tf > .fl-module-content {
	margin-left:-120px;
}
@media (max-width: 768px) { .fl-node-deo524m6l8tf > .fl-module-content { margin-left:20px; } }.fl-node-twnucsd8jro7, .fl-node-twnucsd8jro7 .fl-photo {
	text-align: center;
}
.fl-node-twnucsd8jro7 .fl-photo-img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-hp5m74eaol38 .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-hp5m74eaol38 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-hp5m74eaol38 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-tgv7hmn9fd15 .uabb-infobox {
				background: #fffcf6;

			padding-top:50px;padding-bottom:50px;padding-left:50px;padding-right:130px;
		}
	/* Align */
.fl-node-tgv7hmn9fd15 .infobox-left,
.fl-node-tgv7hmn9fd15 .uabb-infobox .uabb-separator {
	text-align: left;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-tgv7hmn9fd15 .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-tgv7hmn9fd15 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-tgv7hmn9fd15 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
 .fl-node-tgv7hmn9fd15 > .fl-module-content {
	margin-right:-120px;
}
@media (max-width: 768px) { .fl-node-tgv7hmn9fd15 > .fl-module-content { margin-right:20px; } }.fl-node-ie42sh5l0ag7, .fl-node-ie42sh5l0ag7 .fl-photo {
	text-align: center;
}
.fl-node-ie42sh5l0ag7 .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.fl-node-652aoi4d1kt3 {
	width: 100%;
}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-652aoi4d1kt3 .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-652aoi4d1kt3 .uabb-infobox {
			;		}
	}

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

	

	.fl-node-652aoi4d1kt3 .infobox-responsive-left {
		text-align: left;
	}

	
	
	/* Left Right Title Image */
	}
.fl-node-652aoi4d1kt3 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-652aoi4d1kt3 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
.fl-node-m47q2chgn985, .fl-node-m47q2chgn985 .fl-photo {
	text-align: center;
}
.fl-node-m47q2chgn985 .fl-photo-img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}

.fl-node-c4pr3z1ofkue {
	width: 100%;
}
.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-button .uabb-btn-img {
	width: 20px;
}




	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:visited {
		padding-top:;padding-bottom:;padding-left:;padding-right:;background:#ffffff;background: rgba(255, 255, 255, 1);}
		.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-module-content.uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-module-content.uabb-creative-button-wrap a:focus {
		border-color:;	}
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:hover {
		background:#003366;background: rgba(0, 51, 102, 1);	}
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a,
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a *,
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:visited,
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:visited * {
		color: #003366;
	}
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:focus,
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:focus *,
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:hover,
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:hover * {
		color: #ffffff;
	}
				


.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:focus,
.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:hover {
			}


@media ( max-width: 768px ) {
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap.uabb-button-reponsive-.uabb-creative-button-reponsive- {
		text-align: ;
	}
}


	@media ( max-width: 992px ) {
	.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap.uabb-creative-button-tablet- {
		text-align: ;
	}
			.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a,
		.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}

	
	@media ( max-width: 768px ) {
			.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a,
			.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}
	
.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a,.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-creative-button-wrap a:visited {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 16px;
}
.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-module-content.uabb-creative-button-wrap a {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #003366;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	box-shadow: 5px 5px 15px -5px rgb(191, 191, 191);
}

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

	
		.fl-node-c4pr3z1ofkue .uabb-image .uabb-photo-img {
							width: 150px;
								}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-c4pr3z1ofkue .uabb-infobox-text {
	color:
	#575760;
}

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

/* Button Margin */
.fl-builder-content .fl-node-c4pr3z1ofkue .uabb-infobox-button {
	margin-top: 10px;
	margin-bottom: 0px;
}


/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-c4pr3z1ofkue .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
.fl-node-c4pr3z1ofkue .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

.fl-node-86701iwqkfnx {
	width: 100%;
}

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

	
		/* Icon Css */
		.fl-node-86701iwqkfnx .uabb-icon-wrap .uabb-icon i,
		.fl-node-86701iwqkfnx .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 30px;
			height: auto;
			width: auto;
			
				line-height: 30px;
				height: 30px;
				width: 30px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-86701iwqkfnx .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-86701iwqkfnx .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-86701iwqkfnx .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-86701iwqkfnx .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-86701iwqkfnx .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-86701iwqkfnx .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-86701iwqkfnx .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-86701iwqkfnx .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-86701iwqkfnx .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-86701iwqkfnx .uabb-infobox {
				background: rgba(0,76,73,0.03);

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-86701iwqkfnx .infobox-center,
.fl-node-86701iwqkfnx .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-86701iwqkfnx .uabb-infobox-text {
	color:
	#003366;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-86701iwqkfnx .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-86701iwqkfnx .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-86701iwqkfnx .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 16px;
}

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

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

	
		/* Icon Css */
		.fl-node-gfr14olqdy6t .uabb-icon-wrap .uabb-icon i,
		.fl-node-gfr14olqdy6t .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 30px;
			height: auto;
			width: auto;
			
				line-height: 30px;
				height: 30px;
				width: 30px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-gfr14olqdy6t .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-gfr14olqdy6t .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-gfr14olqdy6t .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-gfr14olqdy6t .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-gfr14olqdy6t .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-gfr14olqdy6t .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-gfr14olqdy6t .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-gfr14olqdy6t .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-gfr14olqdy6t .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-gfr14olqdy6t .uabb-infobox {
				background: rgba(0,76,73,0.03);

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-gfr14olqdy6t .infobox-center,
.fl-node-gfr14olqdy6t .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-gfr14olqdy6t .uabb-infobox-text {
	color:
	#003366;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-gfr14olqdy6t .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-gfr14olqdy6t .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 16px;
}

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

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

	
		/* Icon Css */
		.fl-node-0ixj5twqd3k1 .uabb-icon-wrap .uabb-icon i,
		.fl-node-0ixj5twqd3k1 .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 30px;
			height: auto;
			width: auto;
			
				line-height: 30px;
				height: 30px;
				width: 30px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-0ixj5twqd3k1 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-0ixj5twqd3k1 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-0ixj5twqd3k1 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-0ixj5twqd3k1 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-0ixj5twqd3k1 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-0ixj5twqd3k1 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-0ixj5twqd3k1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-0ixj5twqd3k1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-0ixj5twqd3k1 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-0ixj5twqd3k1 .uabb-infobox {
				background: rgba(0,76,73,0.03);

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-0ixj5twqd3k1 .infobox-center,
.fl-node-0ixj5twqd3k1 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-0ixj5twqd3k1 .uabb-infobox-text {
	color:
	#003366;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-0ixj5twqd3k1 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-0ixj5twqd3k1 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 16px;
}
.fl-row .fl-col .fl-node-k8m6rxtyjqcf h2.fl-heading a,
.fl-row .fl-col .fl-node-k8m6rxtyjqcf h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-k8m6rxtyjqcf h2.fl-heading .fl-heading-text *,
.fl-node-k8m6rxtyjqcf h2.fl-heading .fl-heading-text {
	color: #003366;
}
.fl-node-k8m6rxtyjqcf.fl-module-heading .fl-heading {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-k8m6rxtyjqcf.fl-module-heading .fl-heading {
		text-align: left;
	}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-vgl1sywnt09o .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-vgl1sywnt09o .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 25px;
}
.fl-node-vgl1sywnt09o .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-ipt26qvr4gxu .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-ipt26qvr4gxu .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 25px;
}
.fl-node-ipt26qvr4gxu .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
.fl-node-f8yj4idbokmr, .fl-node-f8yj4idbokmr .fl-photo {
	text-align: center;
}
.fl-node-f8yj4idbokmr .fl-photo-content, .fl-node-f8yj4idbokmr .fl-photo-img {
	width: 400px;
}
.fl-node-f8yj4idbokmr .fl-photo-img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-f8yj4idbokmr > .fl-module-content {
	margin-top:0px;
}
.fl-row .fl-col .fl-node-wqtnsof0vj9b h2.fl-heading a,
.fl-row .fl-col .fl-node-wqtnsof0vj9b h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-wqtnsof0vj9b h2.fl-heading .fl-heading-text *,
.fl-node-wqtnsof0vj9b h2.fl-heading .fl-heading-text {
	color: #003366;
}
.fl-node-wqtnsof0vj9b.fl-module-heading .fl-heading {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
/* Wrappers */
body.rtl .fl-module-testimonials .bx-viewport {
	direction: ltr;
}
body.rtl .fl-testimonials-wrap.compact .fl-slider-next {
	left: 18px;
	right: auto;
}
body.rtl .fl-testimonials-wrap.compact .fl-slider-prev {
	right: auto !important;
	left: 0;
}
body.rtl .fl-testimonials-wrap .fl-testimonial {
	direction: rtl;
}

.fl-module-testimonials {
	flex-grow: 1;
	place-self: stretch;
}

.fl-module-testimonials .bx-wrapper {
	margin: 0 auto 35px;
}
.fl-testimonials-wrap {
	position: relative;
}
.fl-testimonials-wrap button,
.fl-testimonials-wrap button:focus,
.fl-testimonials-wrap button:hover {
	all: unset;
	cursor: pointer;
}
.fl-testimonials-wrap .fl-testimonial {
	position: absolute;
	top: 0;
	visibility: hidden;
}
.fl-testimonials-wrap .fl-testimonial > blockquote {
	margin: 0;
}
.fl-testimonials-wrap .fl-testimonial:first-child,
.fl-testimonials-loaded .fl-testimonial {
	position: relative;
	visibility: visible;
}
.fl-testimonials-wrap .fa {
	opacity: 0.8;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.fl-testimonials-wrap .fa:hover {
	opacity: 1;
}

/* Wide */
.fl-testimonials.wide {
	text-align: center;
}
.fl-testimonials-wrap.wide .fl-slider-next,
.fl-testimonials-wrap.wide .fl-slider-prev {
	position: absolute;
	top: 50%;
	margin-top:-10px;
	right: 0px;
}
.fl-testimonials-wrap.wide .fa {
	font-size: 23px;
	position: relative;
	z-index: 1;
}
.fl-testimonials-wrap.wide .fl-slider-prev {
	left: 0px !important;
}

/* Compact */
.fl-testimonials-wrap.compact h3 {
	margin: .3em 0;
}
.fl-testimonials-wrap.compact .fl-slider-next,
.fl-testimonials-wrap.compact .fl-slider-prev {
	position: absolute;
	top: 9px;
	right: 0;
}
.fl-testimonials-wrap.compact .fa {
	font-size: 17px;
}
.fl-testimonials-wrap.compact .fl-slider-prev {
	right: 18px !important;
}

/* Navigation Fixes */
.fl-testimonials-wrap .fl-slider-next a.disabled,
.fl-testimonials-wrap .fl-slider-prev a.disabled,
.fl-testimonials-wrap .bx-controls a.disabled,
.fl-testimonials-wrap .fl-slider-next button.disabled,
.fl-testimonials-wrap .fl-slider-prev button.disabled,
.fl-testimonials-wrap .bx-controls button.disabled {
	pointer-events: none;
}
.fl-testimonials-wrap .fl-slider-next button:focus,
.fl-testimonials-wrap .fl-slider-prev button:focus {
	outline: 1px auto -webkit-focus-ring-color;
}.fl-node-cz6mjkht93iu .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-cz6mjkht93iu .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-cz6mjkht93iu .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-cz6mjkht93iu .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-cz6mjkht93iu .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-cz6mjkht93iu .fl-testimonials-wrap .fas:hover,
.fl-node-cz6mjkht93iu .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-cz6mjkht93iu .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-cz6mjkht93iu > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-6xz412iemblq .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-6xz412iemblq .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-6xz412iemblq .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-6xz412iemblq .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-6xz412iemblq .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-6xz412iemblq .fl-testimonials-wrap .fas:hover,
.fl-node-6xz412iemblq .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-6xz412iemblq .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-6xz412iemblq > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-7pa6mt1gbs3j .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-7pa6mt1gbs3j .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-7pa6mt1gbs3j .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-7pa6mt1gbs3j .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-7pa6mt1gbs3j .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-7pa6mt1gbs3j .fl-testimonials-wrap .fas:hover,
.fl-node-7pa6mt1gbs3j .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-7pa6mt1gbs3j .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-7pa6mt1gbs3j > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-b2iygtpq3acv .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-b2iygtpq3acv .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-b2iygtpq3acv .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-b2iygtpq3acv .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-b2iygtpq3acv .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-b2iygtpq3acv .fl-testimonials-wrap .fas:hover,
.fl-node-b2iygtpq3acv .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-b2iygtpq3acv .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-b2iygtpq3acv > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-npwl0asdmc9y .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-npwl0asdmc9y .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-npwl0asdmc9y .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-npwl0asdmc9y .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-npwl0asdmc9y .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-npwl0asdmc9y .fl-testimonials-wrap .fas:hover,
.fl-node-npwl0asdmc9y .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-npwl0asdmc9y .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-npwl0asdmc9y > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-7febow5gpjx0 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-7febow5gpjx0 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-7febow5gpjx0 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-7febow5gpjx0 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-7febow5gpjx0 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-7febow5gpjx0 .fl-testimonials-wrap .fas:hover,
.fl-node-7febow5gpjx0 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-7febow5gpjx0 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-7febow5gpjx0 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-roh1glwjd7m2 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-roh1glwjd7m2 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-roh1glwjd7m2 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-roh1glwjd7m2 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-roh1glwjd7m2 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-roh1glwjd7m2 .fl-testimonials-wrap .fas:hover,
.fl-node-roh1glwjd7m2 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-roh1glwjd7m2 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-roh1glwjd7m2 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-ufp51xd36yko .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-ufp51xd36yko .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-ufp51xd36yko .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-ufp51xd36yko .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-ufp51xd36yko .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-ufp51xd36yko .fl-testimonials-wrap .fas:hover,
.fl-node-ufp51xd36yko .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-ufp51xd36yko .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-ufp51xd36yko > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-q83ovu64glie .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-q83ovu64glie .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-q83ovu64glie .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-q83ovu64glie .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-q83ovu64glie .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-q83ovu64glie .fl-testimonials-wrap .fas:hover,
.fl-node-q83ovu64glie .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-q83ovu64glie .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-q83ovu64glie > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-gqi1d2pt78ku .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-gqi1d2pt78ku .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-gqi1d2pt78ku .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-gqi1d2pt78ku .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-gqi1d2pt78ku .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-gqi1d2pt78ku .fl-testimonials-wrap .fas:hover,
.fl-node-gqi1d2pt78ku .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-gqi1d2pt78ku .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-gqi1d2pt78ku > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-toafk203pmid .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-toafk203pmid .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-toafk203pmid .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-toafk203pmid .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-toafk203pmid .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-toafk203pmid .fl-testimonials-wrap .fas:hover,
.fl-node-toafk203pmid .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-toafk203pmid .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-toafk203pmid > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-wlgr40cisayx .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-wlgr40cisayx .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-wlgr40cisayx .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-wlgr40cisayx .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-wlgr40cisayx .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-wlgr40cisayx .fl-testimonials-wrap .fas:hover,
.fl-node-wlgr40cisayx .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-wlgr40cisayx .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-wlgr40cisayx > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-xgt4c2kv6zpa .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-xgt4c2kv6zpa .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-xgt4c2kv6zpa .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-xgt4c2kv6zpa .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-xgt4c2kv6zpa .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-xgt4c2kv6zpa .fl-testimonials-wrap .fas:hover,
.fl-node-xgt4c2kv6zpa .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-xgt4c2kv6zpa .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-xgt4c2kv6zpa > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-tfai3c260mup .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-tfai3c260mup .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-tfai3c260mup .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-tfai3c260mup .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-tfai3c260mup .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-tfai3c260mup .fl-testimonials-wrap .fas:hover,
.fl-node-tfai3c260mup .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-tfai3c260mup .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-tfai3c260mup > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-87g5eap1mfr3 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-87g5eap1mfr3 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-87g5eap1mfr3 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-87g5eap1mfr3 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-87g5eap1mfr3 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-87g5eap1mfr3 .fl-testimonials-wrap .fas:hover,
.fl-node-87g5eap1mfr3 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-87g5eap1mfr3 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-87g5eap1mfr3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-rqmyxsk4nl17 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-rqmyxsk4nl17 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-rqmyxsk4nl17 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-rqmyxsk4nl17 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-rqmyxsk4nl17 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-rqmyxsk4nl17 .fl-testimonials-wrap .fas:hover,
.fl-node-rqmyxsk4nl17 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-rqmyxsk4nl17 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-rqmyxsk4nl17 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-xb6m2azw1gf3 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-xb6m2azw1gf3 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-xb6m2azw1gf3 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-xb6m2azw1gf3 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-xb6m2azw1gf3 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-xb6m2azw1gf3 .fl-testimonials-wrap .fas:hover,
.fl-node-xb6m2azw1gf3 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-xb6m2azw1gf3 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-xb6m2azw1gf3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-52cv46l3hesj .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-52cv46l3hesj .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-52cv46l3hesj .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-52cv46l3hesj .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-52cv46l3hesj .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-52cv46l3hesj .fl-testimonials-wrap .fas:hover,
.fl-node-52cv46l3hesj .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-52cv46l3hesj .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-52cv46l3hesj > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-wedvn6o8zksb .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-wedvn6o8zksb .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-wedvn6o8zksb .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-wedvn6o8zksb .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-wedvn6o8zksb .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-wedvn6o8zksb .fl-testimonials-wrap .fas:hover,
.fl-node-wedvn6o8zksb .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-wedvn6o8zksb .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-wedvn6o8zksb > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-0smft5oze9db .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-0smft5oze9db .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-0smft5oze9db .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-0smft5oze9db .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-0smft5oze9db .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-0smft5oze9db .fl-testimonials-wrap .fas:hover,
.fl-node-0smft5oze9db .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-0smft5oze9db .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-0smft5oze9db > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-k4tj5y7ofgs3 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-k4tj5y7ofgs3 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-k4tj5y7ofgs3 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-k4tj5y7ofgs3 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-k4tj5y7ofgs3 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-k4tj5y7ofgs3 .fl-testimonials-wrap .fas:hover,
.fl-node-k4tj5y7ofgs3 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-k4tj5y7ofgs3 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-k4tj5y7ofgs3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-vcbrjfdtwh57 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-vcbrjfdtwh57 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-vcbrjfdtwh57 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-vcbrjfdtwh57 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-vcbrjfdtwh57 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-vcbrjfdtwh57 .fl-testimonials-wrap .fas:hover,
.fl-node-vcbrjfdtwh57 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-vcbrjfdtwh57 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-vcbrjfdtwh57 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-l4aiepkc2ztu .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-l4aiepkc2ztu .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-l4aiepkc2ztu .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-l4aiepkc2ztu .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-l4aiepkc2ztu .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-l4aiepkc2ztu .fl-testimonials-wrap .fas:hover,
.fl-node-l4aiepkc2ztu .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-l4aiepkc2ztu .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-l4aiepkc2ztu > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-hay0fu57svrb .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-hay0fu57svrb .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-hay0fu57svrb .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-hay0fu57svrb .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-hay0fu57svrb .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-hay0fu57svrb .fl-testimonials-wrap .fas:hover,
.fl-node-hay0fu57svrb .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-hay0fu57svrb .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-hay0fu57svrb > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-0c6y1dtprans .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-0c6y1dtprans .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-0c6y1dtprans .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-0c6y1dtprans .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-0c6y1dtprans .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-0c6y1dtprans .fl-testimonials-wrap .fas:hover,
.fl-node-0c6y1dtprans .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-0c6y1dtprans .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-0c6y1dtprans > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-l5nbjt6gsuvf .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-l5nbjt6gsuvf .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-l5nbjt6gsuvf .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-l5nbjt6gsuvf .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-l5nbjt6gsuvf .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-l5nbjt6gsuvf .fl-testimonials-wrap .fas:hover,
.fl-node-l5nbjt6gsuvf .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-l5nbjt6gsuvf .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-l5nbjt6gsuvf > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-nf98qp2h4r3g .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-nf98qp2h4r3g .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-nf98qp2h4r3g .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-nf98qp2h4r3g .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-nf98qp2h4r3g .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-nf98qp2h4r3g .fl-testimonials-wrap .fas:hover,
.fl-node-nf98qp2h4r3g .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-nf98qp2h4r3g .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-nf98qp2h4r3g > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-yzv6ru01axpq .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-yzv6ru01axpq .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-yzv6ru01axpq .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-yzv6ru01axpq .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-yzv6ru01axpq .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-yzv6ru01axpq .fl-testimonials-wrap .fas:hover,
.fl-node-yzv6ru01axpq .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-yzv6ru01axpq .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-yzv6ru01axpq > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-j4ph8bfrn912 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-j4ph8bfrn912 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-j4ph8bfrn912 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-j4ph8bfrn912 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-j4ph8bfrn912 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-j4ph8bfrn912 .fl-testimonials-wrap .fas:hover,
.fl-node-j4ph8bfrn912 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-j4ph8bfrn912 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-j4ph8bfrn912 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-uh46dqm7y91a .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-uh46dqm7y91a .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-uh46dqm7y91a .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-uh46dqm7y91a .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-uh46dqm7y91a .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-uh46dqm7y91a .fl-testimonials-wrap .fas:hover,
.fl-node-uh46dqm7y91a .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-uh46dqm7y91a .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-uh46dqm7y91a > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-9tcwjqve3bk4 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-9tcwjqve3bk4 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-9tcwjqve3bk4 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-9tcwjqve3bk4 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-9tcwjqve3bk4 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-9tcwjqve3bk4 .fl-testimonials-wrap .fas:hover,
.fl-node-9tcwjqve3bk4 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-9tcwjqve3bk4 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-9tcwjqve3bk4 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-8k4snudbga37 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-8k4snudbga37 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-8k4snudbga37 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-8k4snudbga37 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-8k4snudbga37 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-8k4snudbga37 .fl-testimonials-wrap .fas:hover,
.fl-node-8k4snudbga37 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-8k4snudbga37 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-8k4snudbga37 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-mup06n957sy8 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-mup06n957sy8 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-mup06n957sy8 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-mup06n957sy8 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-mup06n957sy8 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-mup06n957sy8 .fl-testimonials-wrap .fas:hover,
.fl-node-mup06n957sy8 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-mup06n957sy8 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-mup06n957sy8 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-kov2dnq64g7t .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-kov2dnq64g7t .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-kov2dnq64g7t .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-kov2dnq64g7t .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-kov2dnq64g7t .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-kov2dnq64g7t .fl-testimonials-wrap .fas:hover,
.fl-node-kov2dnq64g7t .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-kov2dnq64g7t .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-kov2dnq64g7t > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-i6pr3qkjsf57 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-i6pr3qkjsf57 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-i6pr3qkjsf57 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-i6pr3qkjsf57 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-i6pr3qkjsf57 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-i6pr3qkjsf57 .fl-testimonials-wrap .fas:hover,
.fl-node-i6pr3qkjsf57 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-i6pr3qkjsf57 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-i6pr3qkjsf57 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-f8mq7vn2za6c .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-f8mq7vn2za6c .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-f8mq7vn2za6c .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-f8mq7vn2za6c .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-f8mq7vn2za6c .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-f8mq7vn2za6c .fl-testimonials-wrap .fas:hover,
.fl-node-f8mq7vn2za6c .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-f8mq7vn2za6c .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-f8mq7vn2za6c > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-ivenkzsfhuwt .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-ivenkzsfhuwt .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-ivenkzsfhuwt .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-ivenkzsfhuwt .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-ivenkzsfhuwt .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-ivenkzsfhuwt .fl-testimonials-wrap .fas:hover,
.fl-node-ivenkzsfhuwt .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-ivenkzsfhuwt .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-ivenkzsfhuwt > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-19mw8c3xy26r .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-19mw8c3xy26r .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-19mw8c3xy26r .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-19mw8c3xy26r .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-19mw8c3xy26r .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-19mw8c3xy26r .fl-testimonials-wrap .fas:hover,
.fl-node-19mw8c3xy26r .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-19mw8c3xy26r .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-19mw8c3xy26r > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-po3k1qnez6fj .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-po3k1qnez6fj .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-po3k1qnez6fj .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-po3k1qnez6fj .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-po3k1qnez6fj .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-po3k1qnez6fj .fl-testimonials-wrap .fas:hover,
.fl-node-po3k1qnez6fj .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-po3k1qnez6fj .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-po3k1qnez6fj > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-aulp14w3qnif .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-aulp14w3qnif .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-aulp14w3qnif .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-aulp14w3qnif .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-aulp14w3qnif .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-aulp14w3qnif .fl-testimonials-wrap .fas:hover,
.fl-node-aulp14w3qnif .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-aulp14w3qnif .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-aulp14w3qnif > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-zulohwej4tng .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-zulohwej4tng .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-zulohwej4tng .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-zulohwej4tng .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-zulohwej4tng .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-zulohwej4tng .fl-testimonials-wrap .fas:hover,
.fl-node-zulohwej4tng .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-zulohwej4tng .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-zulohwej4tng > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-1hjd5m0uwlr8 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-1hjd5m0uwlr8 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-1hjd5m0uwlr8 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-1hjd5m0uwlr8 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-1hjd5m0uwlr8 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-1hjd5m0uwlr8 .fl-testimonials-wrap .fas:hover,
.fl-node-1hjd5m0uwlr8 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-1hjd5m0uwlr8 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-1hjd5m0uwlr8 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-hwukycpaqb40 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-hwukycpaqb40 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-hwukycpaqb40 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-hwukycpaqb40 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-hwukycpaqb40 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-hwukycpaqb40 .fl-testimonials-wrap .fas:hover,
.fl-node-hwukycpaqb40 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-hwukycpaqb40 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-hwukycpaqb40 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-70r9wfpdt1nm .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-70r9wfpdt1nm .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-70r9wfpdt1nm .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-70r9wfpdt1nm .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-70r9wfpdt1nm .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-70r9wfpdt1nm .fl-testimonials-wrap .fas:hover,
.fl-node-70r9wfpdt1nm .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-70r9wfpdt1nm .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-70r9wfpdt1nm > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-tag3frvcu27x .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-tag3frvcu27x .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-tag3frvcu27x .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-tag3frvcu27x .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-tag3frvcu27x .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-tag3frvcu27x .fl-testimonials-wrap .fas:hover,
.fl-node-tag3frvcu27x .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-tag3frvcu27x .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-tag3frvcu27x > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-yk9fqgjli1zc .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-yk9fqgjli1zc .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-yk9fqgjli1zc .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-yk9fqgjli1zc .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-yk9fqgjli1zc .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-yk9fqgjli1zc .fl-testimonials-wrap .fas:hover,
.fl-node-yk9fqgjli1zc .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-yk9fqgjli1zc .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-yk9fqgjli1zc > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-9jpd71mwynao .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-9jpd71mwynao .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-9jpd71mwynao .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-9jpd71mwynao .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-9jpd71mwynao .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-9jpd71mwynao .fl-testimonials-wrap .fas:hover,
.fl-node-9jpd71mwynao .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-9jpd71mwynao .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-9jpd71mwynao > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-8aqheyvxfnur .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-8aqheyvxfnur .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-8aqheyvxfnur .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-8aqheyvxfnur .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-8aqheyvxfnur .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-8aqheyvxfnur .fl-testimonials-wrap .fas:hover,
.fl-node-8aqheyvxfnur .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-8aqheyvxfnur .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-8aqheyvxfnur > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

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

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

	
		.fl-node-6cbqia9w70x2 .uabb-image .uabb-photo-img {
							width: 50px;
								}

		.fl-node-6cbqia9w70x2 .uabb-image .uabb-image-content{
								}

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


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-6cbqia9w70x2 .uabb-infobox {
				background: #fffcf6;

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-6cbqia9w70x2 .infobox-center,
.fl-node-6cbqia9w70x2 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-6cbqia9w70x2 .uabb-infobox-text {
	color:
	#575760;
}

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



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */
	.fl-builder-content .fl-node-6cbqia9w70x2 .uabb-infobox {
		position: relative;
	}
	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i:before,
	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i,
	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i:before {
		color : ;
	}
	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i {
		background-color: ;

		
			}

	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img,
	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img:before,
	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img,
	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img:before {
		background-color: ;
	}
	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap .uabb-image-content,
	.fl-node-6cbqia9w70x2 .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap .uabb-image-content {
			}


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-6cbqia9w70x2 .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-6cbqia9w70x2 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-6cbqia9w70x2 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.fl-node-r021s54vfmj3 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-r021s54vfmj3 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-r021s54vfmj3 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-r021s54vfmj3 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-r021s54vfmj3 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-r021s54vfmj3 .fl-testimonials-wrap .fas:hover,
.fl-node-r021s54vfmj3 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-r021s54vfmj3 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-r021s54vfmj3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-d39204ogm7fu .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-d39204ogm7fu .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-d39204ogm7fu .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-d39204ogm7fu .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-d39204ogm7fu .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-d39204ogm7fu .fl-testimonials-wrap .fas:hover,
.fl-node-d39204ogm7fu .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-d39204ogm7fu .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-d39204ogm7fu > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-i0wk5fn6p9xd .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-i0wk5fn6p9xd .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-i0wk5fn6p9xd .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-i0wk5fn6p9xd .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-i0wk5fn6p9xd .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-i0wk5fn6p9xd .fl-testimonials-wrap .fas:hover,
.fl-node-i0wk5fn6p9xd .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-i0wk5fn6p9xd .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-i0wk5fn6p9xd > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-4zoi6qegr3m2 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-4zoi6qegr3m2 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-4zoi6qegr3m2 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-4zoi6qegr3m2 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-4zoi6qegr3m2 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-4zoi6qegr3m2 .fl-testimonials-wrap .fas:hover,
.fl-node-4zoi6qegr3m2 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-4zoi6qegr3m2 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-4zoi6qegr3m2 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-7gx61blu8hf2 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-7gx61blu8hf2 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-7gx61blu8hf2 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-7gx61blu8hf2 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-7gx61blu8hf2 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-7gx61blu8hf2 .fl-testimonials-wrap .fas:hover,
.fl-node-7gx61blu8hf2 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-7gx61blu8hf2 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-7gx61blu8hf2 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-zvi0ocges7y5 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-zvi0ocges7y5 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-zvi0ocges7y5 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-zvi0ocges7y5 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-zvi0ocges7y5 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-zvi0ocges7y5 .fl-testimonials-wrap .fas:hover,
.fl-node-zvi0ocges7y5 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-zvi0ocges7y5 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-zvi0ocges7y5 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-2ysr86lzxdp0 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-2ysr86lzxdp0 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-2ysr86lzxdp0 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-2ysr86lzxdp0 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-2ysr86lzxdp0 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-2ysr86lzxdp0 .fl-testimonials-wrap .fas:hover,
.fl-node-2ysr86lzxdp0 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-2ysr86lzxdp0 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-2ysr86lzxdp0 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-3hnl7v1oesga .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-3hnl7v1oesga .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-3hnl7v1oesga .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-3hnl7v1oesga .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-3hnl7v1oesga .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-3hnl7v1oesga .fl-testimonials-wrap .fas:hover,
.fl-node-3hnl7v1oesga .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-3hnl7v1oesga .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-3hnl7v1oesga > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }.fl-node-x5zwlaj8h6bm .fl-icon i,
.fl-node-x5zwlaj8h6bm .fl-icon i:before {
	color: #0070c0;
}




.fl-node-x5zwlaj8h6bm .fl-icon i, .fl-node-x5zwlaj8h6bm .fl-icon i:before {
	font-size: 50px;
}
.fl-node-x5zwlaj8h6bm .fl-icon-wrap .fl-icon-text {
	height: 87.5px;
}
.fl-node-x5zwlaj8h6bm.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-x5zwlaj8h6bm .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-x5zwlaj8h6bm .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-x5zwlaj8h6bm .fl-icon-wrap .fl-icon-text {
		height: 87.5px;
	}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-naoqb2fm7ycz h1.uabb-infobox-title,
.fl-node-naoqb2fm7ycz h1.uabb-infobox-title span a,
.fl-node-naoqb2fm7ycz h1.uabb-infobox-title * {
	color: #003366}


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

/* Description Color */

.fl-node-naoqb2fm7ycz .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-naoqb2fm7ycz .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 25px;
}
.fl-node-naoqb2fm7ycz .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

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

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

	
		/* Icon Css */
		.fl-node-uw9mejnsphl7 .uabb-icon-wrap .uabb-icon i,
		.fl-node-uw9mejnsphl7 .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 30px;
			height: auto;
			width: auto;
			
				line-height: 30px;
				height: 30px;
				width: 30px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-uw9mejnsphl7 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-uw9mejnsphl7 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-uw9mejnsphl7 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-uw9mejnsphl7 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-uw9mejnsphl7 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-uw9mejnsphl7 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-uw9mejnsphl7 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-uw9mejnsphl7 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-uw9mejnsphl7 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-uw9mejnsphl7 .uabb-infobox {
				background: rgba(0,76,73,0.03);

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-uw9mejnsphl7 .infobox-center,
.fl-node-uw9mejnsphl7 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-uw9mejnsphl7 .uabb-infobox-text {
	color:
	#003366;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-uw9mejnsphl7 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-uw9mejnsphl7 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 16px;
}

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

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

	
		/* Icon Css */
		.fl-node-czex68sk1l4q .uabb-icon-wrap .uabb-icon i,
		.fl-node-czex68sk1l4q .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 30px;
			height: auto;
			width: auto;
			
				line-height: 30px;
				height: 30px;
				width: 30px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-czex68sk1l4q .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-czex68sk1l4q .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-czex68sk1l4q .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-czex68sk1l4q .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-czex68sk1l4q .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-czex68sk1l4q .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-czex68sk1l4q .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-czex68sk1l4q .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-czex68sk1l4q .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-czex68sk1l4q .uabb-infobox {
				background: rgba(0,76,73,0.03);

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-czex68sk1l4q .infobox-center,
.fl-node-czex68sk1l4q .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-czex68sk1l4q .uabb-infobox-text {
	color:
	#003366;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-czex68sk1l4q .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-czex68sk1l4q .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 16px;
}

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

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

	
		/* Icon Css */
		.fl-node-kiaqpbs7vf04 .uabb-icon-wrap .uabb-icon i,
		.fl-node-kiaqpbs7vf04 .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 30px;
			height: auto;
			width: auto;
			
				line-height: 30px;
				height: 30px;
				width: 30px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-kiaqpbs7vf04 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-kiaqpbs7vf04 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-kiaqpbs7vf04 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-kiaqpbs7vf04 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-kiaqpbs7vf04 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-kiaqpbs7vf04 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-kiaqpbs7vf04 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-kiaqpbs7vf04 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-kiaqpbs7vf04 .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-kiaqpbs7vf04 .uabb-infobox {
				background: rgba(0,76,73,0.03);

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-kiaqpbs7vf04 .infobox-center,
.fl-node-kiaqpbs7vf04 .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-kiaqpbs7vf04 .uabb-infobox-text {
	color:
	#003366;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-kiaqpbs7vf04 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-kiaqpbs7vf04 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 16px;
}

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

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

	
		/* Icon Css */
		.fl-node-q9uv4ldc7z5x .uabb-icon-wrap .uabb-icon i,
		.fl-node-q9uv4ldc7z5x .uabb-icon-wrap .uabb-icon i:before {

			color: #0070c0			;
			font-size: 30px;
			height: auto;
			width: auto;
			
				line-height: 30px;
				height: 30px;
				width: 30px;
				text-align: center;
			
						
			/* Gradient Style */
					}

		.fl-node-q9uv4ldc7z5x .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-q9uv4ldc7z5x .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-q9uv4ldc7z5x .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-q9uv4ldc7z5x .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-q9uv4ldc7z5x .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
			

			color: ;

								}

		.fl-node-q9uv4ldc7z5x .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-q9uv4ldc7z5x .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-q9uv4ldc7z5x .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-q9uv4ldc7z5x .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-q9uv4ldc7z5x .uabb-infobox {
				background: rgba(0,76,73,0.03);

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-q9uv4ldc7z5x .infobox-center,
.fl-node-q9uv4ldc7z5x .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-q9uv4ldc7z5x .uabb-infobox-text {
	color:
	#003366;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-q9uv4ldc7z5x .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 20px;
}
.fl-node-q9uv4ldc7z5x .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 16px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-edivqrxjyuo5 .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-edivqrxjyuo5 .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 25px;
}
.fl-node-edivqrxjyuo5 .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-ifagxe0vszod .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-ifagxe0vszod .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 500;
	font-size: 25px;
}
.fl-node-ifagxe0vszod .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
.fl-node-3m0ewa78yhzx, .fl-node-3m0ewa78yhzx .fl-photo {
	text-align: center;
}
.fl-node-3m0ewa78yhzx .fl-photo-content, .fl-node-3m0ewa78yhzx .fl-photo-img {
	width: 1000px;
}
.fl-node-3m0ewa78yhzx .fl-photo-img {
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
}
.uabb-module-testimonials .bx-wrapper {
	margin: 0 auto 35px;
}

.uabb-testimonials-wrap {
	position: relative;
}

.uabb-testimonials-wrap .uabb-testimonial {
	position: absolute;
	top: 0;
	visibility: hidden;
}

.uabb-testimonials-wrap .uabb-testimonial:first-child,
.uabb-testimonials-loaded .uabb-testimonial {
	position: relative;
	visibility: visible;
}

.uabb-testimonials-wrap .uabb-slider-prev .fa,
.uabb-testimonials-wrap .uabb-slider-next .fa,
.uabb-testimonials-wrap .uabb-slider-prev i,
.uabb-testimonials-wrap .uabb-slider-next i {
	-webkit-transition: opacity .2s;
	-moz-transition: opacity .2s;
	-o-transition: opacity .2s;
	-ms-transition: opacity .2s;
	transition: opacity .2s;
	font-size: 14px;
	height: 25px;
	width: 25px;
	line-height: 25px;
}

.uabb-testimonials-wrap .fa:hover {
	opacity: 1;
}

.uabb-testimonials.wide {
	text-align: center;
}

.uabb-testimonials-wrap.wide .uabb-slider-next,
.uabb-testimonials-wrap.wide .uabb-slider-prev {
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right: 0;
}

.uabb-testimonials-wrap.wide .far {
	font-size: 20px;
	position: relative;
	z-index: 1;
}
.uabb-testimonials-wrap.compact-wide .far {
	font-size: 20px;
	position: relative;
	z-index: 1;
}

.uabb-testimonials-wrap.wide .uabb-slider-prev {
	left: 0!important;
}

.uabb-testimonial-author .uabb-testimonial-author-name {
	margin: 0;
	padding: 0;
}

.uabb-slider-prev {
	left: -5px;
	text-align: center;
}

.uabb-slider-next {
	right: -5px;
	text-align: center;
}

.uabb-slider-next,
.uabb-slider-prev {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.uabb-slider-prev .fa:before,
.uabb-slider-next .fa:before,
.uabb-slider-prev i:before,
.uabb-slider-next i:before {
	width: 26px;
	display: inline-block;
}

.uabb-testimonials.uabb-testimonial-left .uabb-testimonial-photo.uabb-testimonial-left .uabb-imgicon-wrap {
	margin-right: 20px;
}

.uabb-testimonials.uabb-testimonial-right .uabb-testimonial-photo.uabb-testimonial-right .uabb-imgicon-wrap {
	margin-left: 20px;
}

.uabb-testimonials.uabb-testimonial-right {
	direction: rtl;
}

.uabb-testimonials.uabb-testimonial-right .uabb-testimonial-info.uabb-testimonial-right {
	direction: ltr;
}

.uabb-testimonial-info.uabb-testimonial-right {
	text-align: right;
}

.uabb-testimonial-info.uabb-testimonial-top {
	text-align: center;
	display: block;
}

.uabb-testimonial-photo.uabb-testimonial-top {
	text-align: center;
	margin-bottom: 20px;
}

.uabb-testimonial-info {
	display: table-cell;
	vertical-align: top;
}

.uabb-testimonials .uabb-testimonial {
	display: table;
	width: 100%;
}

.uabb-testimonial .uabb-icon i {
	float: none;
}

.uabb-testimonials.slider-no,
.uabb-testimonials.box {
	display: block;
	position: relative;
}

.uabb-testimonials.slider-no .uabb-testimonial,
.uabb-testimonials.box .uabb-testimonial {
	display: table;
}

.testimonial-arrow-down {
	border-right: 26px solid transparent;
	left: 22%;
	position: absolute;
	top: 100%;
}

.uabb-testimonial .uabb-photo-content {
	overflow: hidden;
}

.uabb-testimonial-info .uabb-testimonial-author-description * {
	margin: 0 auto;
}

.uabb-testimonials-wrap .bx-prev i,
.uabb-testimonials-wrap .bx-next i {
	box-sizing: content-box;
}

/* Reset for new BB versions that use <button> instead of <a> */
.uabb-testimonials-wrap button.bx-prev,
.uabb-testimonials-wrap button.bx-next {
	background: none;
	border: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	padding: 0;
	margin: 0;
}


.uabb-testimonial-info .uabb-testimonial-author-description p {
	margin-bottom: 15px;
}

.uabb-testimonial-info .uabb-testimonial-author-description p:last-of-type {
	margin: 0 auto;
}

.uabb-testimonial .uabb-rating {
	line-height: normal;
}

.uabb-testimonial .uabb-rating__wrap {
	display: inline-block;
}

.uabb-testimonial .uabb-rating__wrap:after {
	content: "";
	display: table;
	clear: both;
}

.uabb-testimonial .uabb-rating .uabb-rating__ico {
	/* float: right; */
	padding-left: 2px;
	color: #FFB300;
}

.uabb-testimonial .uabb-rating__ico:last-child {
	padding-left: 0;
}

.uabb-testimonial .uabb-rating__input {
	display: none;
}

.uabb-testimonial .filled-star + .uabb-rating__ico:before{
	content: "\f005";
	font-weight: 900;
	font-size: 20px;
}

.uabb-rating i.uabb-rating__ico:before {
    position: relative !important;
}

.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-testimonials.uabb-testimonial-left .uabb-testimonial-photo.uabb-testimonial-left,
.uabb-testimonials.uabb-testimonial-right .uabb-testimonial-photo.uabb-testimonial-right {
	display: table-cell;
	vertical-align: top;
	text-align: center;
}
/*Testimonials Star Rating Text*/
.uabb-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Default variables */

	/* Change navigation dot color */
		.fl-node-d5kn2ycv8br6 .bx-pager.bx-default-pager .bx-pager-link,
	.fl-node-d5kn2ycv8br6 .bx-pager.bx-default-pager .bx-pager-link.active {
		background: #0070c0;
		opacity: 1;
	}
		.fl-node-d5kn2ycv8br6 .bx-pager.bx-default-pager .bx-pager-link {
		opacity: 0.2;
	}


/* Style Navigations */

	

/* When Overall position top */
	.fl-node-d5kn2ycv8br6 .uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}

	
			@media ( max-width: 992px ) {
			.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial0 .uabb-imgicon-wrap {
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial0 .uabb-imgicon-wrap {
							}
		}
			.fl-node-d5kn2ycv8br6 .uabb-testimonial0 .uabb-testimonial-info {
			width: 100%;
		}
					@media ( max-width: 768px ) {
							.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial0 .uabb-icon-wrap .uabb-icon i,
				.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial0 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
		
			@media ( max-width: 992px ) {
			.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial1 .uabb-imgicon-wrap {
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial1 .uabb-imgicon-wrap {
							}
		}
			.fl-node-d5kn2ycv8br6 .uabb-testimonial1 .uabb-testimonial-info {
			width: 100%;
		}
					@media ( max-width: 768px ) {
							.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial1 .uabb-icon-wrap .uabb-icon i,
				.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial1 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
		
			@media ( max-width: 992px ) {
			.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial2 .uabb-imgicon-wrap {
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial2 .uabb-imgicon-wrap {
							}
		}
			.fl-node-d5kn2ycv8br6 .uabb-testimonial2 .uabb-testimonial-info {
			width: 100%;
		}
					@media ( max-width: 768px ) {
							.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial2 .uabb-icon-wrap .uabb-icon i,
				.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial2 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
		
	/* Global Alignment Css */
	.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-imgicon-wrap {
					text-align: center;
			}

	
		/* Icon Css */
		.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i,
		.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i:before {

			color: #fff			;
			font-size: 0px;
			height: auto;
			width: auto;
							background: #1e73be;
								line-height:
					0px;
				height:
					0px;				width:
					0px;				text-align: center;
				display: flex;
				align-items: center;
				justify-content: center;
					
						
			/* Gradient Style */
					}

		.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
														

			color: ;

								}

		.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
				
			.fl-node-d5kn2ycv8br6 .uabb-testimonial3 .uabb-testimonial-info {
									width: 100%;
				
				width: 100%;
							}
					@media ( max-width: 768px ) {
							.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i,
				.fl-node-d5kn2ycv8br6 .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
			.fl-node-d5kn2ycv8br6 .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #1e73be;
			}


/* Box Layout starts Here */



/* Typography */
.fl-node-d5kn2ycv8br6 .uabb-testimonial-info .testimonial-author-named5kn2ycv8br6 {
			color: #003366;
			margin-bottom: 5px;
}
.fl-node-d5kn2ycv8br6 .uabb-testimonial-info .testimonial-author-designationd5kn2ycv8br6 {
			color: #575760;
		margin-top: 5px;
	}
.fl-node-d5kn2ycv8br6 .uabb-testimonial-info .testimonial-author-descriptiond5kn2ycv8br6 {
			color: #575760;
		padding-top: 10px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-d5kn2ycv8br6 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-d5kn2ycv8br6 .uabb-icon-wrap .uabb-icon i,
			.fl-node-d5kn2ycv8br6 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-d5kn2ycv8br6 .uabb-icon-wrap .uabb-icon i,
			.fl-node-d5kn2ycv8br6 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-d5kn2ycv8br6 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-d5kn2ycv8br6 .uabb-testimonial-info .testimonial-author-named5kn2ycv8br6  {
	font-family: Raleway, sans-serif;
	font-weight: 400;
	font-size: 25px;
}
.fl-node-d5kn2ycv8br6 .uabb-testimonial-info .testimonial-author-designationd5kn2ycv8br6  {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}
.fl-node-d5kn2ycv8br6 .uabb-testimonial-info .testimonial-author-descriptiond5kn2ycv8br6 {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 20px;
}
 .fl-node-d5kn2ycv8br6 > .fl-module-content {
	margin-top:0px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-8dzmga2fqjix .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-8dzmga2fqjix .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 25px;
}
.fl-node-8dzmga2fqjix .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-8u67wq49g3ea .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-8u67wq49g3ea .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 25px;
}
.fl-node-8u67wq49g3ea .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-gwlqk07x9ufs .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-gwlqk07x9ufs .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 25px;
}
.fl-node-gwlqk07x9ufs .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-ky01dslovqge .uabb-infobox-text {
	color:
	#575760;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-ky01dslovqge .uabb-infobox-title {
	font-family: Raleway, sans-serif;
	font-weight: 600;
	font-size: 25px;
}
.fl-node-ky01dslovqge .uabb-infobox-text {
	font-family: Montserrat, sans-serif;
	font-weight: 300;
	font-size: 16px;
}

/* Start Global CSS */

/* 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: 992px) {
	.uabb-js-breakpoint {
		content:"992";
	}
}

@media screen and (max-width: 768px) {
	.uabb-js-breakpoint {
		content:"768";
	}
}


																																																																																			
					
					
					
																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																									
					
					
					
																
					
					
					
																
					
					
					
																																																																	
					
					
					
																
					
					
					
																
					
					
					
																														
					
					
					
																							
					
					
					
																
					
					
					
																
					
					
					
																																					
					
					
					
																														
					
					
					
																
					
					
					
																														
					
					
					
																
					
					
					
																														
					
					
					
																
					
					
					
																							
					
					
					
																							
					
					
					
																
					
					
					
																																								