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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.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-zugpsrv3be28 > .fl-row-content-wrap {
	background-color: #5c7064;
}
.fl-node-zugpsrv3be28 .fl-row-content {
	max-width: 1480px;
}






.fl-node-a1s9ybmdlh8u .fl-row-content {
	max-width: 1240px;
}
@media ( max-width: 768px ) {
 .fl-node-a1s9ybmdlh8u.fl-row > .fl-row-content-wrap {
	margin-right:30px;
	margin-left:30px;
}
}
 .fl-node-a1s9ybmdlh8u > .fl-row-content-wrap {
	padding-top:80px;
	padding-bottom:80px;
}
@media ( max-width: 1200px ) {
 .fl-node-a1s9ybmdlh8u.fl-row > .fl-row-content-wrap {
	padding-right:60px;
	padding-left:60px;
}
}
@media ( max-width: 992px ) {
 .fl-node-a1s9ybmdlh8u.fl-row > .fl-row-content-wrap {
	padding-top:60px;
	padding-right:60px;
	padding-bottom:60px;
	padding-left:60px;
}
}
@media ( max-width: 768px ) {
 .fl-node-a1s9ybmdlh8u.fl-row > .fl-row-content-wrap {
	padding-top:60px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}






@media ( max-width: 768px ) {
 .fl-node-g3bq85vzxscy.fl-row > .fl-row-content-wrap {
	padding-bottom:40px;
}
}






.fl-node-c61uost24h5v .fl-row-content {
	max-width: 1480px;
}
 .fl-node-c61uost24h5v > .fl-row-content-wrap {
	padding-bottom:80px;
}
@media ( max-width: 1200px ) {
 .fl-node-c61uost24h5v.fl-row > .fl-row-content-wrap {
	padding-right:40px;
	padding-left:40px;
}
}
@media ( max-width: 992px ) {
 .fl-node-c61uost24h5v.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:80px;
}
}
@media ( max-width: 768px ) {
 .fl-node-c61uost24h5v.fl-row > .fl-row-content-wrap {
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}






.fl-node-1nm4jvxw8yog > .fl-row-content-wrap {
	background-color: #5c7064;
}
 .fl-node-1nm4jvxw8yog > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-7rdu0hn3xopc > .fl-row-content-wrap {
	background-color: #5c7064;
}
 .fl-node-7rdu0hn3xopc > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-zp5tgjmrueiv .fl-row-content {
	max-width: 1480px;
}
 .fl-node-zp5tgjmrueiv > .fl-row-content-wrap {
	padding-top:100px;
	padding-bottom:80px;
}
@media ( max-width: 1200px ) {
 .fl-node-zp5tgjmrueiv.fl-row > .fl-row-content-wrap {
	padding-top:60px;
	padding-right:40px;
	padding-bottom:60px;
	padding-left:40px;
}
}
@media ( max-width: 992px ) {
 .fl-node-zp5tgjmrueiv.fl-row > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-zp5tgjmrueiv.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}






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




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




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




.fl-node-ruov8d6qs0zx {
	width: 50%;
}
.fl-node-ruov8d6qs0zx > .fl-col-content:after {
	background-color: rgba(38,45,38,0.7);
}
.fl-node-ruov8d6qs0zx > .fl-col-content {
	background-image: url(https://dental.dev/sqdental/wp-content/uploads/sites/166/2025/05/cosmetic-1.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: scroll;
	background-size: cover;
}
.fl-builder-content .fl-node-ruov8d6qs0zx > .fl-col-content {
	min-height: 860px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-ruov8d6qs0zx {
		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-builder-content .fl-node-ruov8d6qs0zx > .fl-col-content {
		min-height: 550px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ruov8d6qs0zx > .fl-col-content {
		min-height: 300px;
	}
}




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




.fl-node-30csv6ud2gea {
	width: 33.33%;
}
.fl-node-30csv6ud2gea > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #262d26;
	border-left-width: 3px;
}
@media(max-width: 768px) {
	.fl-node-30csv6ud2gea > .fl-col-content {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
}
@media ( max-width: 768px ) {
 .fl-node-30csv6ud2gea.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:30px;
	margin-bottom:30px;
	margin-left:30px;
}
}
 .fl-node-30csv6ud2gea > .fl-col-content {
	padding-right:30px;
	padding-left:10px;
}
.fl-animated.fl-fade-up {
	animation: fl-fade-up 1s ease;
	-webkit-animation: fl-fade-up 1s ease;
}
@-webkit-keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}




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




.fl-node-0ykapeznx8f6 {
	width: 100%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-0ykapeznx8f6 {
		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-mn91o6akbg2t {
	width: 50%;
}
.fl-node-mn91o6akbg2t > .fl-col-content:after {
	background-color: rgba(38,45,38,0.7);
}
.fl-node-mn91o6akbg2t > .fl-col-content {
	background-image: url(https://dental.dev/sqdental/wp-content/uploads/sites/166/2025/05/smile-quest-rock-reception.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-mn91o6akbg2t {
		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-builder-content .fl-node-mn91o6akbg2t > .fl-col-content {
		min-height: 550px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-mn91o6akbg2t > .fl-col-content {
		min-height: 300px;
	}
}




.fl-node-ubfokg3c4vyl {
	width: 70%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-ubfokg3c4vyl {
		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-fzthq2r4o9lu {
	width: 100%;
}




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




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




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




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




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




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




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




.fl-node-79gypqeiw6mf {
	width: 100%;
}




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




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




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




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




.fl-node-17kjfxwnoar9 {
	width: 100%;
}




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




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




.fl-node-1qze8ln5hwyx {
	width: 50%;
}
.fl-node-1qze8ln5hwyx > .fl-col-content:after {
	background-color: rgba(38,45,38,0.7);
}
.fl-node-1qze8ln5hwyx > .fl-col-content {
	background-image: url(https://dental.dev/sqdental/wp-content/uploads/sites/166/2025/05/cosmetic-2.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: scroll;
	background-size: cover;
}
.fl-builder-content .fl-node-1qze8ln5hwyx > .fl-col-content {
	min-height: 850px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-1qze8ln5hwyx {
		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-builder-content .fl-node-1qze8ln5hwyx > .fl-col-content {
		min-height: 550px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-1qze8ln5hwyx > .fl-col-content {
		min-height: 300px;
	}
}




.fl-node-t5pu1b7q3l4c {
	width: 33.34%;
}
.fl-node-t5pu1b7q3l4c > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #262d26;
	border-left-width: 3px;
}
@media(max-width: 768px) {
	.fl-node-t5pu1b7q3l4c > .fl-col-content {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
}
@media ( max-width: 768px ) {
 .fl-node-t5pu1b7q3l4c.fl-col > .fl-col-content {
	margin-top:10px;
	margin-right:30px;
	margin-bottom:30px;
	margin-left:30px;
}
}
 .fl-node-t5pu1b7q3l4c > .fl-col-content {
	padding-right:30px;
	padding-left:10px;
}




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




.fl-node-41dk8f0uroie {
	width: 30%;
}
.fl-node-41dk8f0uroie > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #683a3d;
	border-top-width: 20px;
	border-right-width: 20px;
	border-bottom-width: 20px;
	border-left-width: 20px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-41dk8f0uroie {
		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-41dk8f0uroie > .fl-col-content {
	margin-top:30px;
	margin-right:20px;
	margin-left:30px;
}
@media ( max-width: 992px ) {
 .fl-node-41dk8f0uroie.fl-col > .fl-col-content {
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-41dk8f0uroie.fl-col > .fl-col-content {
	margin-right:20px;
	margin-bottom:41px;
	margin-left:20px;
}
}
 .fl-node-41dk8f0uroie > .fl-col-content {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}
@media ( max-width: 992px ) {
 .fl-node-41dk8f0uroie.fl-col > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-41dk8f0uroie.fl-col > .fl-col-content {
	padding-bottom:0px;
}
}
.fl-animated.fl-fade-right {
	animation: fl-fade-right 1s ease;
	-webkit-animation: fl-fade-right 1s ease;
}
@-webkit-keyframes fl-fade-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}




.fl-node-wl52ybp69aqn {
	width: 33.33%;
}
.fl-node-wl52ybp69aqn > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #262d26;
	border-left-width: 3px;
}
@media(max-width: 768px) {
	.fl-node-wl52ybp69aqn > .fl-col-content {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
}
@media ( max-width: 768px ) {
 .fl-node-wl52ybp69aqn.fl-col > .fl-col-content {
	margin-top:10px;
	margin-right:30px;
	margin-bottom:30px;
	margin-left:30px;
}
}
 .fl-node-wl52ybp69aqn > .fl-col-content {
	padding-right:30px;
	padding-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-wl52ybp69aqn.fl-col > .fl-col-content {
	padding-right:0px;
}
}
.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;
}
	.fl-node-c1sfauov2iph .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-c1sfauov2iph .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-c1sfauov2iph .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-c1sfauov2iph .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-c1sfauov2iph .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-c1sfauov2iph .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-c1sfauov2iph .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-c1sfauov2iph .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-c1sfauov2iph .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-c1sfauov2iph .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-c1sfauov2iph .uabb-testimonial-info .testimonial-author-namec1sfauov2iph {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-c1sfauov2iph .uabb-testimonial-info .testimonial-author-designationc1sfauov2iph {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-c1sfauov2iph .uabb-testimonial-info .testimonial-author-descriptionc1sfauov2iph {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-c1sfauov2iph .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-c1sfauov2iph .uabb-icon-wrap .uabb-icon i,
			.fl-node-c1sfauov2iph .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-c1sfauov2iph .uabb-icon-wrap .uabb-icon i,
			.fl-node-c1sfauov2iph .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-c1sfauov2iph .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-c1sfauov2iph .uabb-testimonial-info .testimonial-author-namec1sfauov2iph  {
	font-weight: 700;
}
.fl-node-c1sfauov2iph .uabb-testimonial-info .testimonial-author-designationc1sfauov2iph  {
	font-style: italic;
}
.fl-node-c1sfauov2iph .uabb-testimonial-info .testimonial-author-descriptionc1sfauov2iph {
	font-style: italic;
}
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-sg2ubzx1to6r {
	width: 100%;
}

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

	
		.fl-node-sg2ubzx1to6r .uabb-image .uabb-photo-img {
							width: 60px;
								}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

/* Heading Color */


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

/* Description Color */

.fl-node-sg2ubzx1to6r .uabb-infobox-text {
	color:
	#000000;
}

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



/* Link Color */
.fl-builder-content .fl-node-sg2ubzx1to6r a,
.fl-builder-content .fl-node-sg2ubzx1to6r a *,
.fl-builder-content .fl-node-sg2ubzx1to6r a:visited {
	color:
	#1b7d8e;
}
.fl-builder-content .fl-node-sg2ubzx1to6r a:hover,
.fl-builder-content .fl-node-sg2ubzx1to6r a *:hover{
	color:
	#187143;
}

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-sg2ubzx1to6r .uabb-infobox-title {
	font-family: "Work Sans", sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.1;
	text-transform: uppercase;
}
.fl-node-sg2ubzx1to6r .uabb-infobox-title-prefix {
	font-family: "Work Sans", sans-serif;
	font-weight: 600;
	text-transform: none;
}
.fl-node-sg2ubzx1to6r .uabb-infobox-cta-link {
	font-family: Lato, sans-serif;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: underline;
}
@media(max-width: 992px) {
	.fl-node-sg2ubzx1to6r .uabb-infobox-title {
		font-size: 16px;
	}
}
 .fl-node-sg2ubzx1to6r > .fl-module-content {
	margin-top:12px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-sg2ubzx1to6r.fl-module > .fl-module-content {
	margin-right:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-sg2ubzx1to6r.fl-module > .fl-module-content {
	margin-bottom:0px;
	margin-left:0px;
}
}

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

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

	
		.fl-node-d8hyr60afq3k .uabb-image .uabb-photo-img {
							width: 70px;
								}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

/* Heading Color */


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

/* Description Color */

.fl-node-d8hyr60afq3k .uabb-infobox-text {
	color:
	#000000;
}

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



/* Link Color */
.fl-builder-content .fl-node-d8hyr60afq3k a,
.fl-builder-content .fl-node-d8hyr60afq3k a *,
.fl-builder-content .fl-node-d8hyr60afq3k a:visited {
	color:
	#1b7d8e;
}
.fl-builder-content .fl-node-d8hyr60afq3k a:hover,
.fl-builder-content .fl-node-d8hyr60afq3k a *:hover{
	color:
	#187143;
}

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-d8hyr60afq3k .uabb-infobox-title {
	font-family: "Work Sans", sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.1;
	text-transform: uppercase;
}
.fl-node-d8hyr60afq3k .uabb-infobox-title-prefix {
	font-family: "Work Sans", sans-serif;
	font-weight: 600;
}
.fl-node-d8hyr60afq3k .uabb-infobox-cta-link {
	font-family: Lato, sans-serif;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: underline;
}
@media(max-width: 992px) {
	.fl-node-d8hyr60afq3k .uabb-infobox-title {
		font-size: 16px;
	}
}
 .fl-node-d8hyr60afq3k > .fl-module-content {
	margin-top:12px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-d8hyr60afq3k.fl-module > .fl-module-content {
	margin-right:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-d8hyr60afq3k.fl-module > .fl-module-content {
	margin-top:0px;
	margin-left:0px;
}
}

.fl-node-184x3y6sj9p0 {
	width: 100%;
}

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

	
		.fl-node-184x3y6sj9p0 .uabb-image .uabb-photo-img {
							width: 50px;
								}

		.fl-node-184x3y6sj9p0 .uabb-image .uabb-image-content{
								}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

/* Heading Color */


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

/* Description Color */

.fl-node-184x3y6sj9p0 .uabb-infobox-text {
	color:
	#000000;
}

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



/* Link Color */
.fl-builder-content .fl-node-184x3y6sj9p0 a,
.fl-builder-content .fl-node-184x3y6sj9p0 a *,
.fl-builder-content .fl-node-184x3y6sj9p0 a:visited {
	color:
	#1b7d8e;
}
.fl-builder-content .fl-node-184x3y6sj9p0 a:hover,
.fl-builder-content .fl-node-184x3y6sj9p0 a *:hover{
	color:
	#187143;
}

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-184x3y6sj9p0 .uabb-infobox-title {
	font-family: "Work Sans", sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.1;
	text-transform: uppercase;
}
.fl-node-184x3y6sj9p0 .uabb-infobox-title-prefix {
	font-family: "Work Sans", sans-serif;
	font-weight: 600;
}
.fl-node-184x3y6sj9p0 .uabb-infobox-cta-link {
	font-family: Lato, sans-serif;
	font-weight: 900;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: underline;
}
@media(max-width: 992px) {
	.fl-node-184x3y6sj9p0 .uabb-infobox-title {
		font-size: 16px;
	}
}
 .fl-node-184x3y6sj9p0 > .fl-module-content {
	margin-top:12px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-184x3y6sj9p0.fl-module > .fl-module-content {
	margin-right:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-184x3y6sj9p0.fl-module > .fl-module-content {
	margin-left:0px;
}
}
	.fl-node-y73sejkn4lcd .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-y73sejkn4lcd .uabb-image .uabb-photo-img {
							width: 100px;
										padding: 0px;
					}

		.fl-node-y73sejkn4lcd .uabb-image .uabb-image-content{
						
				
				background:
				rgba(21,194,190,0);

				border-width: 1px;


				
				border-radius: 0px;
					}

		/* Responsive Photo Size */
		
				.fl-node-y73sejkn4lcd .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-y73sejkn4lcd .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-y73sejkn4lcd .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-y73sejkn4lcd .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-y73sejkn4lcd .uabb-testimonial {
		background:#2b7bb9;background: rgba(43, 123, 185, 0.001);		padding: 20px 40px;
	}

	.fl-node-y73sejkn4lcd .testimonial-arrow-down{
				border-top: 40px solid #2b7bb9;
		
				border-top: 40px solid rgba(43, 123, 185, 0.001);
			}
	.fl-node-y73sejkn4lcd .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-namey73sejkn4lcd {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-designationy73sejkn4lcd {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-descriptiony73sejkn4lcd {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-y73sejkn4lcd .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-y73sejkn4lcd .uabb-icon-wrap .uabb-icon i,
			.fl-node-y73sejkn4lcd .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-y73sejkn4lcd .uabb-icon-wrap .uabb-icon i,
			.fl-node-y73sejkn4lcd .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-y73sejkn4lcd .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-namey73sejkn4lcd  {
	font-weight: 700;
	text-transform: uppercase;
}
.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-designationy73sejkn4lcd  {
	font-weight: 400;
	text-transform: uppercase;
	font-style: italic;
}
.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-descriptiony73sejkn4lcd {
	font-weight: 400;
	font-size: 15px;
	font-style: italic;
}
@media(max-width: 992px) {
	.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-namey73sejkn4lcd  {
		font-size: 16px;
	}
	.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-designationy73sejkn4lcd  {
		font-size: 16px;
	}
	.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-descriptiony73sejkn4lcd {
		font-size: 16px;
	}
}
@media(max-width: 768px) {
	.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-namey73sejkn4lcd  {
		font-size: 14px;
	}
	.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-designationy73sejkn4lcd  {
		font-size: 14px;
	}
	.fl-node-y73sejkn4lcd .uabb-testimonial-info .testimonial-author-descriptiony73sejkn4lcd {
		font-size: 14px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-y73sejkn4lcd.fl-module > .fl-module-content {
	margin-right:10px;
	margin-left:10px;
}
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-1l5db3649egh h2.fl-heading a,
.fl-row .fl-col .fl-node-1l5db3649egh h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-1l5db3649egh h2.fl-heading .fl-heading-text *,
.fl-node-1l5db3649egh h2.fl-heading .fl-heading-text {
	color: #5E6163;
}
.fl-node-1l5db3649egh.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 36px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-node-1l5db3649egh.fl-module-heading .fl-heading {
		text-align: left;
	}
}
 .fl-node-1l5db3649egh > .fl-module-content {
	margin-bottom:30px;
}
@media ( max-width: 992px ) {
 .fl-node-1l5db3649egh.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media (max-width: 768px) { .fl-node-1l5db3649egh > .fl-module-content { margin-bottom:20px; } }	.fl-node-qgwcb2kmrnlx .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-qgwcb2kmrnlx .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-qgwcb2kmrnlx .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-qgwcb2kmrnlx .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-qgwcb2kmrnlx .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-qgwcb2kmrnlx .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-qgwcb2kmrnlx .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-qgwcb2kmrnlx .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-qgwcb2kmrnlx .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-qgwcb2kmrnlx .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-qgwcb2kmrnlx .uabb-testimonial-info .testimonial-author-nameqgwcb2kmrnlx {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-qgwcb2kmrnlx .uabb-testimonial-info .testimonial-author-designationqgwcb2kmrnlx {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-qgwcb2kmrnlx .uabb-testimonial-info .testimonial-author-descriptionqgwcb2kmrnlx {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-qgwcb2kmrnlx .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-qgwcb2kmrnlx .uabb-icon-wrap .uabb-icon i,
			.fl-node-qgwcb2kmrnlx .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-qgwcb2kmrnlx .uabb-icon-wrap .uabb-icon i,
			.fl-node-qgwcb2kmrnlx .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-qgwcb2kmrnlx .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-qgwcb2kmrnlx .uabb-testimonial-info .testimonial-author-nameqgwcb2kmrnlx  {
	font-weight: 700;
}
.fl-node-qgwcb2kmrnlx .uabb-testimonial-info .testimonial-author-designationqgwcb2kmrnlx  {
	font-style: italic;
}
.fl-node-qgwcb2kmrnlx .uabb-testimonial-info .testimonial-author-descriptionqgwcb2kmrnlx {
	font-style: italic;
}
	.fl-node-itom2w10hlsz .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-itom2w10hlsz .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-itom2w10hlsz .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-itom2w10hlsz .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-itom2w10hlsz .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-itom2w10hlsz .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-itom2w10hlsz .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-itom2w10hlsz .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-itom2w10hlsz .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-itom2w10hlsz .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-itom2w10hlsz .uabb-testimonial-info .testimonial-author-nameitom2w10hlsz {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-itom2w10hlsz .uabb-testimonial-info .testimonial-author-designationitom2w10hlsz {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-itom2w10hlsz .uabb-testimonial-info .testimonial-author-descriptionitom2w10hlsz {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-itom2w10hlsz .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-itom2w10hlsz .uabb-icon-wrap .uabb-icon i,
			.fl-node-itom2w10hlsz .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-itom2w10hlsz .uabb-icon-wrap .uabb-icon i,
			.fl-node-itom2w10hlsz .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-itom2w10hlsz .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-itom2w10hlsz .uabb-testimonial-info .testimonial-author-nameitom2w10hlsz  {
	font-weight: 700;
}
.fl-node-itom2w10hlsz .uabb-testimonial-info .testimonial-author-designationitom2w10hlsz  {
	font-style: italic;
}
.fl-node-itom2w10hlsz .uabb-testimonial-info .testimonial-author-descriptionitom2w10hlsz {
	font-style: italic;
}
	.fl-node-irvx7t120mp4 .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-irvx7t120mp4 .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-irvx7t120mp4 .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-irvx7t120mp4 .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-irvx7t120mp4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-irvx7t120mp4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-irvx7t120mp4 .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-irvx7t120mp4 .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-irvx7t120mp4 .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-irvx7t120mp4 .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-irvx7t120mp4 .uabb-testimonial-info .testimonial-author-nameirvx7t120mp4 {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-irvx7t120mp4 .uabb-testimonial-info .testimonial-author-designationirvx7t120mp4 {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-irvx7t120mp4 .uabb-testimonial-info .testimonial-author-descriptionirvx7t120mp4 {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-irvx7t120mp4 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-irvx7t120mp4 .uabb-icon-wrap .uabb-icon i,
			.fl-node-irvx7t120mp4 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-irvx7t120mp4 .uabb-icon-wrap .uabb-icon i,
			.fl-node-irvx7t120mp4 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-irvx7t120mp4 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-irvx7t120mp4 .uabb-testimonial-info .testimonial-author-nameirvx7t120mp4  {
	font-weight: 700;
}
.fl-node-irvx7t120mp4 .uabb-testimonial-info .testimonial-author-designationirvx7t120mp4  {
	font-style: italic;
}
.fl-node-irvx7t120mp4 .uabb-testimonial-info .testimonial-author-descriptionirvx7t120mp4 {
	font-style: italic;
}
	.fl-node-yd6mg8h1w0pt .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-yd6mg8h1w0pt .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-yd6mg8h1w0pt .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-yd6mg8h1w0pt .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-yd6mg8h1w0pt .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-yd6mg8h1w0pt .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-yd6mg8h1w0pt .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-yd6mg8h1w0pt .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-yd6mg8h1w0pt .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-yd6mg8h1w0pt .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-yd6mg8h1w0pt .uabb-testimonial-info .testimonial-author-nameyd6mg8h1w0pt {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-yd6mg8h1w0pt .uabb-testimonial-info .testimonial-author-designationyd6mg8h1w0pt {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-yd6mg8h1w0pt .uabb-testimonial-info .testimonial-author-descriptionyd6mg8h1w0pt {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-yd6mg8h1w0pt .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-yd6mg8h1w0pt .uabb-icon-wrap .uabb-icon i,
			.fl-node-yd6mg8h1w0pt .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-yd6mg8h1w0pt .uabb-icon-wrap .uabb-icon i,
			.fl-node-yd6mg8h1w0pt .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-yd6mg8h1w0pt .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-yd6mg8h1w0pt .uabb-testimonial-info .testimonial-author-nameyd6mg8h1w0pt  {
	font-weight: 700;
}
.fl-node-yd6mg8h1w0pt .uabb-testimonial-info .testimonial-author-designationyd6mg8h1w0pt  {
	font-style: italic;
}
.fl-node-yd6mg8h1w0pt .uabb-testimonial-info .testimonial-author-descriptionyd6mg8h1w0pt {
	font-style: italic;
}
	.fl-node-0j8gwnomspq3 .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-0j8gwnomspq3 .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-0j8gwnomspq3 .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-0j8gwnomspq3 .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-0j8gwnomspq3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-0j8gwnomspq3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-0j8gwnomspq3 .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-0j8gwnomspq3 .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-0j8gwnomspq3 .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-0j8gwnomspq3 .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-0j8gwnomspq3 .uabb-testimonial-info .testimonial-author-name0j8gwnomspq3 {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-0j8gwnomspq3 .uabb-testimonial-info .testimonial-author-designation0j8gwnomspq3 {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-0j8gwnomspq3 .uabb-testimonial-info .testimonial-author-description0j8gwnomspq3 {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-0j8gwnomspq3 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-0j8gwnomspq3 .uabb-icon-wrap .uabb-icon i,
			.fl-node-0j8gwnomspq3 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-0j8gwnomspq3 .uabb-icon-wrap .uabb-icon i,
			.fl-node-0j8gwnomspq3 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-0j8gwnomspq3 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-0j8gwnomspq3 .uabb-testimonial-info .testimonial-author-name0j8gwnomspq3  {
	font-weight: 700;
}
.fl-node-0j8gwnomspq3 .uabb-testimonial-info .testimonial-author-designation0j8gwnomspq3  {
	font-style: italic;
}
.fl-node-0j8gwnomspq3 .uabb-testimonial-info .testimonial-author-description0j8gwnomspq3 {
	font-style: italic;
}
	.fl-node-q9t7ocfkizw8 .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-q9t7ocfkizw8 .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-q9t7ocfkizw8 .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-q9t7ocfkizw8 .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-q9t7ocfkizw8 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-q9t7ocfkizw8 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-q9t7ocfkizw8 .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-q9t7ocfkizw8 .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-q9t7ocfkizw8 .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-q9t7ocfkizw8 .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-q9t7ocfkizw8 .uabb-testimonial-info .testimonial-author-nameq9t7ocfkizw8 {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-q9t7ocfkizw8 .uabb-testimonial-info .testimonial-author-designationq9t7ocfkizw8 {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-q9t7ocfkizw8 .uabb-testimonial-info .testimonial-author-descriptionq9t7ocfkizw8 {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-q9t7ocfkizw8 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-q9t7ocfkizw8 .uabb-icon-wrap .uabb-icon i,
			.fl-node-q9t7ocfkizw8 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-q9t7ocfkizw8 .uabb-icon-wrap .uabb-icon i,
			.fl-node-q9t7ocfkizw8 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-q9t7ocfkizw8 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-q9t7ocfkizw8 .uabb-testimonial-info .testimonial-author-nameq9t7ocfkizw8  {
	font-weight: 700;
}
.fl-node-q9t7ocfkizw8 .uabb-testimonial-info .testimonial-author-designationq9t7ocfkizw8  {
	font-style: italic;
}
.fl-node-q9t7ocfkizw8 .uabb-testimonial-info .testimonial-author-descriptionq9t7ocfkizw8 {
	font-style: italic;
}
	.fl-node-so4uf12yml65 .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-so4uf12yml65 .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-so4uf12yml65 .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-so4uf12yml65 .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-so4uf12yml65 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-so4uf12yml65 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-so4uf12yml65 .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-so4uf12yml65 .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-so4uf12yml65 .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-so4uf12yml65 .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-so4uf12yml65 .uabb-testimonial-info .testimonial-author-nameso4uf12yml65 {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-so4uf12yml65 .uabb-testimonial-info .testimonial-author-designationso4uf12yml65 {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-so4uf12yml65 .uabb-testimonial-info .testimonial-author-descriptionso4uf12yml65 {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-so4uf12yml65 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-so4uf12yml65 .uabb-icon-wrap .uabb-icon i,
			.fl-node-so4uf12yml65 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-so4uf12yml65 .uabb-icon-wrap .uabb-icon i,
			.fl-node-so4uf12yml65 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-so4uf12yml65 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-so4uf12yml65 .uabb-testimonial-info .testimonial-author-nameso4uf12yml65  {
	font-weight: 700;
}
.fl-node-so4uf12yml65 .uabb-testimonial-info .testimonial-author-designationso4uf12yml65  {
	font-style: italic;
}
.fl-node-so4uf12yml65 .uabb-testimonial-info .testimonial-author-descriptionso4uf12yml65 {
	font-style: italic;
}
.fl-row .fl-col .fl-node-di8xlbvnz90q h2.fl-heading a,
.fl-row .fl-col .fl-node-di8xlbvnz90q h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-di8xlbvnz90q h2.fl-heading .fl-heading-text *,
.fl-node-di8xlbvnz90q h2.fl-heading .fl-heading-text {
	color: #5E6163;
}
.fl-node-di8xlbvnz90q.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 36px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-node-di8xlbvnz90q.fl-module-heading .fl-heading {
		text-align: left;
	}
}
 .fl-node-di8xlbvnz90q > .fl-module-content {
	margin-bottom:30px;
}
@media ( max-width: 992px ) {
 .fl-node-di8xlbvnz90q.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media (max-width: 768px) { .fl-node-di8xlbvnz90q > .fl-module-content { margin-bottom:20px; } }	.fl-node-pxuf5mvd4iy0 .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-pxuf5mvd4iy0 .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-pxuf5mvd4iy0 .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-pxuf5mvd4iy0 .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-pxuf5mvd4iy0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-pxuf5mvd4iy0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-pxuf5mvd4iy0 .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-pxuf5mvd4iy0 .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-pxuf5mvd4iy0 .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-pxuf5mvd4iy0 .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-pxuf5mvd4iy0 .uabb-testimonial-info .testimonial-author-namepxuf5mvd4iy0 {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-pxuf5mvd4iy0 .uabb-testimonial-info .testimonial-author-designationpxuf5mvd4iy0 {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-pxuf5mvd4iy0 .uabb-testimonial-info .testimonial-author-descriptionpxuf5mvd4iy0 {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-pxuf5mvd4iy0 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-pxuf5mvd4iy0 .uabb-icon-wrap .uabb-icon i,
			.fl-node-pxuf5mvd4iy0 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-pxuf5mvd4iy0 .uabb-icon-wrap .uabb-icon i,
			.fl-node-pxuf5mvd4iy0 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-pxuf5mvd4iy0 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-pxuf5mvd4iy0 .uabb-testimonial-info .testimonial-author-namepxuf5mvd4iy0  {
	font-weight: 700;
}
.fl-node-pxuf5mvd4iy0 .uabb-testimonial-info .testimonial-author-designationpxuf5mvd4iy0  {
	font-style: italic;
}
.fl-node-pxuf5mvd4iy0 .uabb-testimonial-info .testimonial-author-descriptionpxuf5mvd4iy0 {
	font-style: italic;
}
	.fl-node-048v7yfgqsac .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-048v7yfgqsac .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-048v7yfgqsac .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-048v7yfgqsac .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-048v7yfgqsac .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-048v7yfgqsac .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-048v7yfgqsac .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-048v7yfgqsac .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-048v7yfgqsac .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-048v7yfgqsac .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-048v7yfgqsac .uabb-testimonial-info .testimonial-author-name048v7yfgqsac {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-048v7yfgqsac .uabb-testimonial-info .testimonial-author-designation048v7yfgqsac {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-048v7yfgqsac .uabb-testimonial-info .testimonial-author-description048v7yfgqsac {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-048v7yfgqsac .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-048v7yfgqsac .uabb-icon-wrap .uabb-icon i,
			.fl-node-048v7yfgqsac .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-048v7yfgqsac .uabb-icon-wrap .uabb-icon i,
			.fl-node-048v7yfgqsac .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-048v7yfgqsac .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-048v7yfgqsac .uabb-testimonial-info .testimonial-author-name048v7yfgqsac  {
	font-weight: 700;
}
.fl-node-048v7yfgqsac .uabb-testimonial-info .testimonial-author-designation048v7yfgqsac  {
	font-style: italic;
}
.fl-node-048v7yfgqsac .uabb-testimonial-info .testimonial-author-description048v7yfgqsac {
	font-style: italic;
}
	.fl-node-hjunk2saim6l .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-hjunk2saim6l .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-hjunk2saim6l .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-hjunk2saim6l .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-hjunk2saim6l .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-hjunk2saim6l .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-hjunk2saim6l .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-hjunk2saim6l .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-hjunk2saim6l .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-hjunk2saim6l .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-hjunk2saim6l .uabb-testimonial-info .testimonial-author-namehjunk2saim6l {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-hjunk2saim6l .uabb-testimonial-info .testimonial-author-designationhjunk2saim6l {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-hjunk2saim6l .uabb-testimonial-info .testimonial-author-descriptionhjunk2saim6l {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-hjunk2saim6l .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-hjunk2saim6l .uabb-icon-wrap .uabb-icon i,
			.fl-node-hjunk2saim6l .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-hjunk2saim6l .uabb-icon-wrap .uabb-icon i,
			.fl-node-hjunk2saim6l .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-hjunk2saim6l .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-hjunk2saim6l .uabb-testimonial-info .testimonial-author-namehjunk2saim6l  {
	font-weight: 700;
}
.fl-node-hjunk2saim6l .uabb-testimonial-info .testimonial-author-designationhjunk2saim6l  {
	font-style: italic;
}
.fl-node-hjunk2saim6l .uabb-testimonial-info .testimonial-author-descriptionhjunk2saim6l {
	font-style: italic;
}
	.fl-node-a2nj90hfkx3e .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-a2nj90hfkx3e .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-a2nj90hfkx3e .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-a2nj90hfkx3e .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-a2nj90hfkx3e .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-a2nj90hfkx3e .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-a2nj90hfkx3e .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-a2nj90hfkx3e .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-a2nj90hfkx3e .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-a2nj90hfkx3e .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-a2nj90hfkx3e .uabb-testimonial-info .testimonial-author-namea2nj90hfkx3e {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-a2nj90hfkx3e .uabb-testimonial-info .testimonial-author-designationa2nj90hfkx3e {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-a2nj90hfkx3e .uabb-testimonial-info .testimonial-author-descriptiona2nj90hfkx3e {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-a2nj90hfkx3e .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-a2nj90hfkx3e .uabb-icon-wrap .uabb-icon i,
			.fl-node-a2nj90hfkx3e .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-a2nj90hfkx3e .uabb-icon-wrap .uabb-icon i,
			.fl-node-a2nj90hfkx3e .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-a2nj90hfkx3e .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-a2nj90hfkx3e .uabb-testimonial-info .testimonial-author-namea2nj90hfkx3e  {
	font-weight: 700;
}
.fl-node-a2nj90hfkx3e .uabb-testimonial-info .testimonial-author-designationa2nj90hfkx3e  {
	font-style: italic;
}
.fl-node-a2nj90hfkx3e .uabb-testimonial-info .testimonial-author-descriptiona2nj90hfkx3e {
	font-style: italic;
}
	.fl-node-skhl73f0bq12 .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-skhl73f0bq12 .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-skhl73f0bq12 .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-skhl73f0bq12 .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-skhl73f0bq12 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-skhl73f0bq12 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-skhl73f0bq12 .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-skhl73f0bq12 .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-skhl73f0bq12 .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-skhl73f0bq12 .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-skhl73f0bq12 .uabb-testimonial-info .testimonial-author-nameskhl73f0bq12 {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-skhl73f0bq12 .uabb-testimonial-info .testimonial-author-designationskhl73f0bq12 {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-skhl73f0bq12 .uabb-testimonial-info .testimonial-author-descriptionskhl73f0bq12 {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-skhl73f0bq12 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-skhl73f0bq12 .uabb-icon-wrap .uabb-icon i,
			.fl-node-skhl73f0bq12 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-skhl73f0bq12 .uabb-icon-wrap .uabb-icon i,
			.fl-node-skhl73f0bq12 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-skhl73f0bq12 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-skhl73f0bq12 .uabb-testimonial-info .testimonial-author-nameskhl73f0bq12  {
	font-weight: 700;
}
.fl-node-skhl73f0bq12 .uabb-testimonial-info .testimonial-author-designationskhl73f0bq12  {
	font-style: italic;
}
.fl-node-skhl73f0bq12 .uabb-testimonial-info .testimonial-author-descriptionskhl73f0bq12 {
	font-style: italic;
}
	.fl-node-z3wxcedrk7v4 .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #2b7bb9;
			}


/* Box Layout starts Here */

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

	
		.fl-node-z3wxcedrk7v4 .uabb-image .uabb-photo-img {
							width: 60px;
										padding: 20px;
					}

		.fl-node-z3wxcedrk7v4 .uabb-image .uabb-image-content{
						
				
				background:
				#68AB89;

				border-width: 1px;


				
				border-radius: 100px;
					}

		/* Responsive Photo Size */
		
				.fl-node-z3wxcedrk7v4 .uabb-image-content:hover {

			
			
		}
			
			@media ( max-width: 992px ) {
			.fl-node-z3wxcedrk7v4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-z3wxcedrk7v4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-z3wxcedrk7v4 .uabb-testimonial-info {
	width: 100%;
	}

	

/* Layout style Box */
		.fl-node-z3wxcedrk7v4 .uabb-testimonial {
		background:#589790;background: rgba(88, 151, 144, 0.001);		padding: 20px 40px;
	}

	.fl-node-z3wxcedrk7v4 .testimonial-arrow-down{
				border-top: 40px solid #589790;
		
				border-top: 40px solid rgba(88, 151, 144, 0.001);
			}
	.fl-node-z3wxcedrk7v4 .uabb-testimonials.box{
		position: relative;
	}
	
	


/* When Overall position top */
	.uabb-testimonials.uabb-testimonial-top .uabb-testimonial{
	flex-direction: column;
}
	




/* Typography */
.fl-node-z3wxcedrk7v4 .uabb-testimonial-info .testimonial-author-namez3wxcedrk7v4 {
				margin-top: 20px;
		margin-bottom: 0px;
}
.fl-node-z3wxcedrk7v4 .uabb-testimonial-info .testimonial-author-designationz3wxcedrk7v4 {
			color: rgba(0,0,0,0.8);
		margin-top: 5px;
	}
.fl-node-z3wxcedrk7v4 .uabb-testimonial-info .testimonial-author-descriptionz3wxcedrk7v4 {
			color: rgba(0,0,0,0.8);
		padding-top: 15px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-z3wxcedrk7v4 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-z3wxcedrk7v4 .uabb-icon-wrap .uabb-icon i,
			.fl-node-z3wxcedrk7v4 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-z3wxcedrk7v4 .uabb-icon-wrap .uabb-icon i,
			.fl-node-z3wxcedrk7v4 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-z3wxcedrk7v4 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-z3wxcedrk7v4 .uabb-testimonial-info .testimonial-author-namez3wxcedrk7v4  {
	font-weight: 700;
}
.fl-node-z3wxcedrk7v4 .uabb-testimonial-info .testimonial-author-designationz3wxcedrk7v4  {
	font-style: italic;
}
.fl-node-z3wxcedrk7v4 .uabb-testimonial-info .testimonial-author-descriptionz3wxcedrk7v4 {
	font-style: italic;
}
.fl-node-sc67nw54qpal .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

				@media (max-width: 768px) {
		.fl-node-sc67nw54qpal .fl-separator {
							border-top-width: 2px;
										max-width: 90%;
										margin: auto;
					}
	}
	.fl-node-sc67nw54qpal .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
@media ( max-width: 768px ) {
 .fl-node-sc67nw54qpal.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-node-xih3no6c9psf.fl-module-heading .fl-heading {
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0px;
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-xih3no6c9psf.fl-module-heading .fl-heading {
		font-size: 46px;
	}
}
@media(max-width: 992px) {
	.fl-node-xih3no6c9psf.fl-module-heading .fl-heading {
		font-size: 40px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-xih3no6c9psf.fl-module-heading .fl-heading {
		font-size: 27px;
	}
}
 .fl-node-xih3no6c9psf > .fl-module-content {
	margin-bottom:60px;
}
@media ( max-width: 992px ) {
 .fl-node-xih3no6c9psf.fl-module > .fl-module-content {
	margin-bottom:60px;
}
}
@media ( max-width: 768px ) {
 .fl-node-xih3no6c9psf.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:40px;
}
}

.fl-node-59tnl1j8br4i {
	width: 100%;
}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-59tnl1j8br4i h3.uabb-infobox-title,
.fl-node-59tnl1j8br4i h3.uabb-infobox-title span a,
.fl-node-59tnl1j8br4i h3.uabb-infobox-title * {
	color: #5c7064}


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

/* Description Color */

.fl-node-59tnl1j8br4i .uabb-infobox-text {
	color:
	#000000;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-59tnl1j8br4i .uabb-infobox-title {
	line-height: 1.1;
}
.fl-node-59tnl1j8br4i .uabb-infobox-text {
	font-weight: 400;
}
.fl-node-59tnl1j8br4i .uabb-infobox-title-prefix {
	line-height: 1;
}
@media(max-width: 992px) {
	.fl-node-59tnl1j8br4i .uabb-infobox-title {
		font-size: 24px;
	}
	.fl-node-59tnl1j8br4i .uabb-infobox-text {
		font-size: 16px;
	}
	.fl-node-59tnl1j8br4i .uabb-infobox-title-prefix {
		font-size: 42px;
	}
}
@media(max-width: 768px) {
	.fl-node-59tnl1j8br4i .uabb-infobox-title {
		font-size: 17px;
	}
	.fl-node-59tnl1j8br4i .uabb-infobox-text {
		font-size: 14px;
	}
	.fl-node-59tnl1j8br4i .uabb-infobox-title-prefix {
		font-size: 24px;
		line-height: 1.1;
	}
}
@media ( max-width: 768px ) {
 .fl-node-59tnl1j8br4i.fl-module > .fl-module-content {
	margin-top:0px;
}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-ml5ot7ejdfu8 .uabb-infobox-text {
	color:
	#ffffff;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* 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-ml5ot7ejdfu8 .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-ml5ot7ejdfu8 .uabb-infobox-title {
	line-height: 1.1;
}
.fl-node-ml5ot7ejdfu8 .uabb-infobox-text {
	font-weight: 400;
}
.fl-node-ml5ot7ejdfu8 .uabb-infobox-title-prefix {
	line-height: 1;
}
@media(max-width: 992px) {
	.fl-node-ml5ot7ejdfu8 .uabb-infobox-title {
		font-size: 24px;
	}
	.fl-node-ml5ot7ejdfu8 .uabb-infobox-text {
		font-size: 16px;
	}
	.fl-node-ml5ot7ejdfu8 .uabb-infobox-title-prefix {
		font-size: 42px;
	}
}
@media(max-width: 768px) {
	.fl-node-ml5ot7ejdfu8 .uabb-infobox-title {
		font-size: 17px;
	}
	.fl-node-ml5ot7ejdfu8 .uabb-infobox-text {
		font-size: 14px;
	}
	.fl-node-ml5ot7ejdfu8 .uabb-infobox-title-prefix {
		font-size: 24px;
		line-height: 1.1;
	}
}
@media ( max-width: 768px ) {
 .fl-node-ml5ot7ejdfu8.fl-module > .fl-module-content {
	margin-right:10px;
	margin-left:10px;
}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-kd1i76oy9bmz .uabb-infobox-text {
	color:
	#ffffff;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

/* 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-kd1i76oy9bmz .uabb-infobox {
			;		}
	}

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-kd1i76oy9bmz .uabb-infobox-title {
	line-height: 1.1;
}
.fl-node-kd1i76oy9bmz .uabb-infobox-text {
	font-weight: 400;
}
.fl-node-kd1i76oy9bmz .uabb-infobox-title-prefix {
	line-height: 1;
}
@media(max-width: 992px) {
	.fl-node-kd1i76oy9bmz .uabb-infobox-title {
		font-size: 24px;
	}
	.fl-node-kd1i76oy9bmz .uabb-infobox-text {
		font-size: 16px;
	}
	.fl-node-kd1i76oy9bmz .uabb-infobox-title-prefix {
		font-size: 42px;
	}
}
@media(max-width: 768px) {
	.fl-node-kd1i76oy9bmz .uabb-infobox-title {
		font-size: 17px;
	}
	.fl-node-kd1i76oy9bmz .uabb-infobox-text {
		font-size: 14px;
	}
	.fl-node-kd1i76oy9bmz .uabb-infobox-title-prefix {
		font-size: 24px;
		line-height: 1.1;
	}
}
@media ( max-width: 768px ) {
 .fl-node-kd1i76oy9bmz.fl-module > .fl-module-content {
	margin-right:10px;
	margin-left:10px;
}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-8w9qpegjbut7 .uabb-infobox-text {
	color:
	#000000;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-8w9qpegjbut7 .uabb-infobox-title {
	line-height: 1.1;
}
.fl-node-8w9qpegjbut7 .uabb-infobox-text {
	font-weight: 400;
}
.fl-node-8w9qpegjbut7 .uabb-infobox-title-prefix {
	line-height: 1;
}
@media(max-width: 992px) {
	.fl-node-8w9qpegjbut7 .uabb-infobox-title {
		font-size: 24px;
	}
	.fl-node-8w9qpegjbut7 .uabb-infobox-text {
		font-size: 16px;
	}
	.fl-node-8w9qpegjbut7 .uabb-infobox-title-prefix {
		font-size: 42px;
	}
}
@media(max-width: 768px) {
	.fl-node-8w9qpegjbut7 .uabb-infobox-title {
		font-size: 17px;
	}
	.fl-node-8w9qpegjbut7 .uabb-infobox-text {
		font-size: 14px;
	}
	.fl-node-8w9qpegjbut7 .uabb-infobox-title-prefix {
		font-size: 24px;
		line-height: 1.1;
	}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-0mysdgtcfbla .uabb-infobox-text {
	color:
	#000000;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-0mysdgtcfbla .uabb-infobox-title {
	line-height: 1.1;
}
.fl-node-0mysdgtcfbla .uabb-infobox-text {
	font-weight: 400;
}
.fl-node-0mysdgtcfbla .uabb-infobox-title-prefix {
	font-size: 38px;
	line-height: 1.1;
}
@media(max-width: 992px) {
	.fl-node-0mysdgtcfbla .uabb-infobox-title {
		font-size: 24px;
		text-align: center;
	}
	.fl-node-0mysdgtcfbla .uabb-infobox-text {
		font-size: 16px;
		text-align: center;
	}
	.fl-node-0mysdgtcfbla .uabb-infobox-title-prefix {
		font-size: 46px;
		line-height: 1.1;
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-0mysdgtcfbla .uabb-infobox-title {
		font-size: 17px;
	}
	.fl-node-0mysdgtcfbla .uabb-infobox-text {
		font-size: 14px;
	}
	.fl-node-0mysdgtcfbla .uabb-infobox-title-prefix {
		font-size: 24px;
		line-height: 1.1;
	}
}
 .fl-node-0mysdgtcfbla > .fl-module-content {
	margin-bottom:12px;
}
.fl-row .fl-col .fl-node-khmezyf8uois h1.fl-heading a,
.fl-row .fl-col .fl-node-khmezyf8uois h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-khmezyf8uois h1.fl-heading .fl-heading-text *,
.fl-node-khmezyf8uois h1.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-khmezyf8uois.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 60px;
	text-transform: uppercase;
}
@media(max-width: 1200px) {
	.fl-node-khmezyf8uois.fl-module-heading .fl-heading {
		line-height: 1;
		text-align: center;
	}
}
@media(max-width: 992px) {
	.fl-node-khmezyf8uois.fl-module-heading .fl-heading {
		line-height: 1;
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-khmezyf8uois.fl-module-heading .fl-heading {
		font-size: 30px;
		line-height: 1;
		text-align: center;
		text-transform: uppercase;
	}
}
@media ( max-width: 1200px ) {
 .fl-node-khmezyf8uois.fl-module > .fl-module-content {
	margin-left:40px;
}
}
@media ( max-width: 992px ) {
 .fl-node-khmezyf8uois.fl-module > .fl-module-content {
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-khmezyf8uois.fl-module > .fl-module-content {
	margin-left:20px;
}
}
.fl-button:is(a, button) {
    cursor: pointer;
}








.fl-node-qdfvjk9y0p3z.fl-button-wrap, .fl-node-qdfvjk9y0p3z .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button), .fl-builder-content .fl-node-qdfvjk9y0p3z a.fl-button:visited, .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z a.fl-button:visited {
	font-size: 14px;
	text-transform: uppercase;
}
.fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button), .fl-builder-content .fl-node-qdfvjk9y0p3z a.fl-button:visited, .fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button):hover, .fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button):focus, .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z a.fl-button:visited, .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button):focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button), .fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button) * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button), .fl-builder-content .fl-node-qdfvjk9y0p3z a.fl-button:visited, .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z a.fl-button:visited {
		font-size: 14px;
	}
}
@media(max-width: 992px) {
	.fl-node-qdfvjk9y0p3z.fl-button-wrap, .fl-node-qdfvjk9y0p3z .fl-button-wrap {
		text-align: center;
	}
	.fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button), .fl-builder-content .fl-node-qdfvjk9y0p3z a.fl-button:visited, .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z a.fl-button:visited {
		font-size: 14px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-qdfvjk9y0p3z.fl-button-wrap, .fl-node-qdfvjk9y0p3z .fl-button-wrap {
		text-align: center;
	}
	.fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button), .fl-builder-content .fl-node-qdfvjk9y0p3z a.fl-button:visited, .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-qdfvjk9y0p3z a.fl-button:visited {
		font-size: 12px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-qdfvjk9y0p3z.fl-module > .fl-module-content {
	margin-top:10px;
}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-w9yfv8haxo71 .uabb-infobox-text {
	color:
	#000000;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-w9yfv8haxo71 .uabb-infobox-title {
	line-height: 1.1;
}
.fl-node-w9yfv8haxo71 .uabb-infobox-text {
	font-weight: 400;
}
.fl-node-w9yfv8haxo71 .uabb-infobox-title-prefix {
	line-height: 1;
}
@media(max-width: 992px) {
	.fl-node-w9yfv8haxo71 .uabb-infobox-title {
		font-size: 24px;
	}
	.fl-node-w9yfv8haxo71 .uabb-infobox-text {
		font-size: 16px;
	}
	.fl-node-w9yfv8haxo71 .uabb-infobox-title-prefix {
		font-size: 42px;
	}
}
@media(max-width: 768px) {
	.fl-node-w9yfv8haxo71 .uabb-infobox-title {
		font-size: 17px;
	}
	.fl-node-w9yfv8haxo71 .uabb-infobox-text {
		font-size: 14px;
	}
	.fl-node-w9yfv8haxo71 .uabb-infobox-title-prefix {
		font-size: 24px;
		line-height: 1.1;
	}
}
@media ( max-width: 768px ) {
 .fl-node-w9yfv8haxo71.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:40px;
}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-qnuvky0t8cp9 .uabb-infobox-text {
	color:
	#000000;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-qnuvky0t8cp9 .uabb-infobox-title {
	line-height: 1.1;
}
.fl-node-qnuvky0t8cp9 .uabb-infobox-text {
	font-weight: 400;
}
.fl-node-qnuvky0t8cp9 .uabb-infobox-title-prefix {
	line-height: 1;
}
@media(max-width: 992px) {
	.fl-node-qnuvky0t8cp9 .uabb-infobox-title {
		font-size: 24px;
	}
	.fl-node-qnuvky0t8cp9 .uabb-infobox-text {
		font-size: 16px;
	}
	.fl-node-qnuvky0t8cp9 .uabb-infobox-title-prefix {
		font-size: 42px;
	}
}
@media(max-width: 768px) {
	.fl-node-qnuvky0t8cp9 .uabb-infobox-title {
		font-size: 17px;
	}
	.fl-node-qnuvky0t8cp9 .uabb-infobox-text {
		font-size: 14px;
	}
	.fl-node-qnuvky0t8cp9 .uabb-infobox-title-prefix {
		font-size: 24px;
		line-height: 1.1;
	}
}
@media ( max-width: 768px ) {
 .fl-node-qnuvky0t8cp9.fl-module > .fl-module-content {
	margin-top:10px;
}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-rm471dosj3nh .uabb-infobox-text {
	color:
	#000000;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-rm471dosj3nh .uabb-infobox-title {
	line-height: 1.1;
}
.fl-node-rm471dosj3nh .uabb-infobox-text {
	font-weight: 400;
}
.fl-node-rm471dosj3nh .uabb-infobox-title-prefix {
	line-height: 1;
}
@media(max-width: 992px) {
	.fl-node-rm471dosj3nh .uabb-infobox-title {
		font-size: 24px;
	}
	.fl-node-rm471dosj3nh .uabb-infobox-text {
		font-size: 16px;
	}
	.fl-node-rm471dosj3nh .uabb-infobox-title-prefix {
		font-size: 42px;
	}
}
@media(max-width: 768px) {
	.fl-node-rm471dosj3nh .uabb-infobox-title {
		font-size: 17px;
	}
	.fl-node-rm471dosj3nh .uabb-infobox-text {
		font-size: 14px;
	}
	.fl-node-rm471dosj3nh .uabb-infobox-title-prefix {
		font-size: 24px;
		line-height: 1.1;
	}
}
@media ( max-width: 768px ) {
 .fl-node-rm471dosj3nh.fl-module > .fl-module-content {
	margin-top:10px;
}
}

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

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-0d9ajoi4whnc .uabb-infobox-text {
	color:
	#000000;
}

/* Icon Margin */

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-0d9ajoi4whnc .uabb-infobox-title {
	line-height: 1.1;
}
.fl-node-0d9ajoi4whnc .uabb-infobox-text {
	font-weight: 400;
}
.fl-node-0d9ajoi4whnc .uabb-infobox-title-prefix {
	font-size: 30px;
	line-height: 1.2;
}
@media(max-width: 992px) {
	.fl-node-0d9ajoi4whnc .uabb-infobox-title {
		font-size: 24px;
		text-align: center;
	}
	.fl-node-0d9ajoi4whnc .uabb-infobox-text {
		font-size: 16px;
		text-align: center;
	}
	.fl-node-0d9ajoi4whnc .uabb-infobox-title-prefix {
		font-size: 28px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-0d9ajoi4whnc .uabb-infobox-title {
		font-size: 17px;
	}
	.fl-node-0d9ajoi4whnc .uabb-infobox-text {
		font-size: 14px;
	}
	.fl-node-0d9ajoi4whnc .uabb-infobox-title-prefix {
		font-size: 18px;
		line-height: 1.1;
	}
}
 .fl-node-0d9ajoi4whnc > .fl-module-content {
	margin-bottom:12px;
}

/* Start Global CSS */
html {
    height: 100%;
}

/* START - GLOBAL COSMETIC STYLE */
p {
    margin-bottom: 1.5rem !important;
}
p:last-child {
    margin-bottom: 0px !important;
}
button:active, input[type=button]:active, input[type=submit]:active, button:focus, input[type=button]:focus, input[type=submit]:focus {
    top: auto !important;
}
/* END - GLOBAL COSMETIC STYLE */

/* Start - Smooth Animation */
a, header, header img,
.jmsn-featured-icon-wrapper .infobox-has-photo .uabb-image img, body:not(.fl-builder-edit) .jmsn-mobile-contact-item {
    -webkit-transition: all 0.3s ease-in-out;
    -khtml-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
/* End - Smooth Animation */

body:not(.fl-builder-edit) #fl-main-content {
    overflow-x: hidden;
}

/* Start - Sticky Menu */
header.fl-theme-builder-header-scrolled .jmsn-main-header .fl-row-content-wrap {
    box-shadow: 0 10px 10px -10px rgb(0 0 0 / 10%);
}
header.fl-theme-builder-header-scrolled .jmsn-main-header .jmsn-menu-cta a {
    padding: 25px !important;
}
header.fl-theme-builder-header-scrolled .jmsn-main-header .fl-module-photo .fl-module-content {
    margin-top: 0px;
    margin-bottom: 0px;
}
header.fl-theme-builder-header-scrolled .jmsn-logo-wrapper .fl-photo-img {
    max-width: 180px;
}
/* End - Sticky Menu */

/* Start - Button */
a.fl-button {
    padding: 13px 30px !important;
}
.jmsn-form-wrapper .gform_button {
    padding: 13px 50px !important;
}
a.fl-button, .gform_wrapper .gform_button {
    border-radius: 10px !important;
    border: none;
}
/* End - Button */

/* START - Sidebar Testimonial */
.jmsn-side-testimonial-box .uabb-image .uabb-image-content {
    width: 100px;
    height: 100px;
    line-height: 100px;
}
.jmsn-side-testimonial-box .uabb-image .uabb-photo-img {
    border-radius: 0;
}
.jmsn-side-testimonial-box .uabb-testimonial {
    padding: 0;
}
/* END - Sidebar Testimonial */

/* START - Secion Headings */
.jmsn-section-subheading, .jmsn-section-subheading p {
    font-size: 22px;
}
/* END - Secion Headings */

/* START - FOOTER */
.jmsn-footer-links ul.uabb-cl-ul li {
    display: block !important;
    text-align: left;
}
.jmsn-footer-links ul.uabb-cl-ul li a {
    margin: 0;
    padding: 0;
}
/* END - FOOTER */

/* Start - Accordion */
.fl-accordion-button-label,
.uabb-adv-accordion-button-label:focus,
.uabb-adv-accordion-button-label:active,
.uabb-adv-accordion-button:focus,
.uabb-adv-accordion-button:active, .uabb-adv-accordion-icon-wrap:focus,
.uabb-adv-accordion-icon-wrap:active {
    outline: 0 !important;
    outline: none !important;
}
.fl-accordion-button-icon-left, .fl-accordion-button-icon-right {
    opacity: 1;
    filter: alpha(opacity = 100);
    font-size: 16px;
    font-weight: bold;
}
/* End - Accordion */

/* START - AFTER BEFORW INNER PAGE WIDGET */
.jmsn-after-before-side-widget-text a.uabb-infobox-cta-link:hover {
    color: #fff !important;
}
/* END - AFTER BEFORW INNER PAGE WIDGET */

/* START - PHOTO GALLERY ICON  */
.jmsn-photo-gallery .uabb-overlay-icon i {
    width: 80px;
    height: 80px;
    display: inline-block;
    line-height: 80px;
    background: #68AB89;
    border-radius: 100%;
}
/* END - PHOTO GALLERY ICON  */

/***** START - GRAVITY FORM STYLE *****/
.jmsn-form-wrapper .datepicker {
    width: 100% !important;
}
.jmsn-form-wrapper ul.gform_fields li {
    margin-top: 10px !important;
}
.gform_wrapper .ginput_container_radio input[type='radio'] + label:before,
.gform_wrapper .ginput_container_checkbox input[type='checkbox'] + label:before {
    margin-top: -3px !important;
}
.gform_wrapper .ginput_container_radio ul li,
.gform_wrapper .ginput_container_checkbox ul li {
    margin-bottom: 5px !important;
}
.gform_wrapper .validation_message {
	padding: 0 !important;
}
.gform_wrapper .gfield .gfield_description {
    font-style: italic;
}
#fl-main-content .gform_wrapper li.gfield.gfield_error, 
#fl-main-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
	background-color: transparent !important;
	margin-bottom: 0px!important;
	border-top: none !important;
	border-bottom: none !important;
	padding-bottom: 0 !important;
	padding-top: 0 !important;
}
.gform_wrapper .gfield_radio li label, .gform_wrapper li label {
	color: #333;
}
.gform_wrapper .gfield_error .gfield_label {
	color: #333 !important;
	margin: 0 !important;
}
.gform_wrapper .ginput_container_select {
    margin-top: 0 !important;
}
.gfield--type-time .ginput_complex {
    align-items: center !important;
}
.gform_wrapper.gravity-theme .ginput_container_time {
    max-width: 80px !important;
    min-width: 80px !important;
}

#fl-main-content .gform_wrapper .top_label .gfield_error input.large,
#fl-main-content .gform_wrapper .top_label .gfield_error select.large,
#fl-main-content .gform_wrapper .top_label .gfield_error .ginput_container_radio,
#fl-main-content .gform_wrapper .top_label .gfield_error .ginput_container_checkbox,
#fl-main-content .gform_wrapper .top_label .gfield_error textarea.textarea {
    margin-bottom: 5px !important;
}
#fl-main-content .gform_wrapper.gform_validation_error li.gfield.gfield_error.gf_right_half {
    max-width: calc(50% - 0px);
}
#fl-main-content .gform_wrapper select {
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iQ2FwYV8xIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1NTEuMTMgNTUxLjEzIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDU1MS4xMyA1NTEuMTMiIHdpZHRoPSI1MTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTI3NS41NjUgMzYxLjY3OS0yMjMuODk3LTIyMy44OTZoLTUxLjY2OGwyNzUuNTY1IDI3NS41NjUgMjc1LjU2NS0yNzUuNTY1aC01MS42Njh6Ii8+PC9zdmc+) no-repeat 95% 50%;
	-moz-appearance: none; 
	-webkit-appearance: none; 
	appearance: none;
    background-size: 15px;
    background-position: calc(100% - 18px) calc(100% - 16px);
    background-repeat: no-repeat;
}
#fl-main-content .gform_wrapper .ginput_container_select:after {
    display: none !important;
}

#fl-main-content .gform_wrapper .datepicker {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNCAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQuNjI1IDlDNC44MTI1IDkgNSA4Ljg0Mzc1IDUgOC42MjVWNy4zNzVDNSA3LjE4NzUgNC44MTI1IDcgNC42MjUgN0gzLjM3NUMzLjE1NjI1IDcgMyA3LjE4NzUgMyA3LjM3NVY4LjYyNUMzIDguODQzNzUgMy4xNTYyNSA5IDMuMzc1IDlINC42MjVaTTggOC42MjVWNy4zNzVDOCA3LjE4NzUgNy44MTI1IDcgNy42MjUgN0g2LjM3NUM2LjE1NjI1IDcgNiA3LjE4NzUgNiA3LjM3NVY4LjYyNUM2IDguODQzNzUgNi4xNTYyNSA5IDYuMzc1IDlINy42MjVDNy44MTI1IDkgOCA4Ljg0Mzc1IDggOC42MjVaTTExIDguNjI1VjcuMzc1QzExIDcuMTg3NSAxMC44MTI1IDcgMTAuNjI1IDdIOS4zNzVDOS4xNTYyNSA3IDkgNy4xODc1IDkgNy4zNzVWOC42MjVDOSA4Ljg0Mzc1IDkuMTU2MjUgOSA5LjM3NSA5SDEwLjYyNUMxMC44MTI1IDkgMTEgOC44NDM3NSAxMSA4LjYyNVpNOCAxMS42MjVWMTAuMzc1QzggMTAuMTg3NSA3LjgxMjUgMTAgNy42MjUgMTBINi4zNzVDNi4xNTYyNSAxMCA2IDEwLjE4NzUgNiAxMC4zNzVWMTEuNjI1QzYgMTEuODQzOCA2LjE1NjI1IDEyIDYuMzc1IDEySDcuNjI1QzcuODEyNSAxMiA4IDExLjg0MzggOCAxMS42MjVaTTUgMTEuNjI1VjEwLjM3NUM1IDEwLjE4NzUgNC44MTI1IDEwIDQuNjI1IDEwSDMuMzc1QzMuMTU2MjUgMTAgMyAxMC4xODc1IDMgMTAuMzc1VjExLjYyNUMzIDExLjg0MzggMy4xNTYyNSAxMiAzLjM3NSAxMkg0LjYyNUM0LjgxMjUgMTIgNSAxMS44NDM4IDUgMTEuNjI1Wk0xMSAxMS42MjVWMTAuMzc1QzExIDEwLjE4NzUgMTAuODEyNSAxMCAxMC42MjUgMTBIOS4zNzVDOS4xNTYyNSAxMCA5IDEwLjE4NzUgOSAxMC4zNzVWMTEuNjI1QzkgMTEuODQzOCA5LjE1NjI1IDEyIDkuMzc1IDEySDEwLjYyNUMxMC44MTI1IDEyIDExIDExLjg0MzggMTEgMTEuNjI1Wk0xNCAzLjVDMTQgMi42ODc1IDEzLjMxMjUgMiAxMi41IDJIMTFWMC4zNzVDMTEgMC4xODc1IDEwLjgxMjUgMCAxMC42MjUgMEg5LjM3NUM5LjE1NjI1IDAgOSAwLjE4NzUgOSAwLjM3NVYySDVWMC4zNzVDNSAwLjE4NzUgNC44MTI1IDAgNC42MjUgMEgzLjM3NUMzLjE1NjI1IDAgMyAwLjE4NzUgMyAwLjM3NVYySDEuNUMwLjY1NjI1IDIgMCAyLjY4NzUgMCAzLjVWMTQuNUMwIDE1LjM0MzggMC42NTYyNSAxNiAxLjUgMTZIMTIuNUMxMy4zMTI1IDE2IDE0IDE1LjM0MzggMTQgMTQuNVYzLjVaTTEyLjUgMTQuMzEyNUMxMi41IDE0LjQzNzUgMTIuNDA2MiAxNC41IDEyLjMxMjUgMTQuNUgxLjY4NzVDMS41NjI1IDE0LjUgMS41IDE0LjQzNzUgMS41IDE0LjMxMjVWNUgxMi41VjE0LjMxMjVaIiBmaWxsPSIjNjhBQjg5Ii8+Cjwvc3ZnPgo=) no-repeat 97% 50%;
}
#fl-main-content .gform_wrapper .jmsn-time-field input[type="text"] {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggMC4yNUMzLjcxODc1IDAuMjUgMC4yNSAzLjcxODc1IDAuMjUgOEMwLjI1IDEyLjI4MTIgMy43MTg3NSAxNS43NSA4IDE1Ljc1QzEyLjI4MTIgMTUuNzUgMTUuNzUgMTIuMjgxMiAxNS43NSA4QzE1Ljc1IDMuNzE4NzUgMTIuMjgxMiAwLjI1IDggMC4yNVpNOCAxNC4yNUM0LjUzMTI1IDE0LjI1IDEuNzUgMTEuNDY4OCAxLjc1IDhDMS43NSA0LjU2MjUgNC41MzEyNSAxLjc1IDggMS43NUMxMS40Mzc1IDEuNzUgMTQuMjUgNC41NjI1IDE0LjI1IDhDMTQuMjUgMTEuNDY4OCAxMS40Mzc1IDE0LjI1IDggMTQuMjVaTTkuOTA2MjUgMTFDMTAuMDkzOCAxMS4xMjUgMTAuMzEyNSAxMS4wOTM4IDEwLjQzNzUgMTAuOTA2MkwxMS4wMzEyIDEwLjEyNUMxMS4xNTYyIDkuOTM3NSAxMS4xMjUgOS43MTg3NSAxMC45Mzc1IDkuNTkzNzVMOC44NzUgOC4wNjI1VjMuNjI1QzguODc1IDMuNDM3NSA4LjY4NzUgMy4yNSA4LjUgMy4yNUg3LjVDNy4yODEyNSAzLjI1IDcuMTI1IDMuNDM3NSA3LjEyNSAzLjYyNVY4Ljc4MTI1QzcuMTI1IDguODc1IDcuMTU2MjUgOSA3LjI1IDkuMDYyNUw5LjkwNjI1IDExWiIgZmlsbD0iIzY4QUI4OSIvPgo8L3N2Zz4K) no-repeat 97% 50%;
}

@media only screen and (max-width: 761px), (min-device-width: 768px) and (max-device-width: 1023px) {
    .gform_wrapper ul.gform_fields li.gfield.gfield_error+li.gfield.gfield_error {
        margin-top: 16px !important;
    }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
    .gform_wrapper li.gfield.gf_list_3col ul.gfield_checkbox li, 
    .gform_wrapper li.gfield.gf_list_3col ul.gfield_radio li {
        width: 50% !important;
    }
}
@media screen and (max-width: 768px) {
    #fl-main-content .gform_wrapper.gform_validation_error li.gfield.gfield_error.gf_right_half {
        max-width: 100%;
    }
    .gform_wrapper li.gfield.gf_list_3col ul li label {
        max-width: 100% !important;
    }
    .gform_wrapper li.gfield.gf_list_3col ul.gfield_checkbox li, 
    .gform_wrapper li.gfield.gf_list_3col ul.gfield_radio li {
        width: 100% !important;
    }
    .gform_wrapper .gform_button {
        font-size: 14px !important;
        max-width: 250px;
        padding: 15px 20px !important;
        width: 100% !important;
        line-height: 1.3em !important;
    }
    .jmsn-form-wrapper ul.gform_fields li {
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 639px) {
    .gform_wrapper .gform_fields li.gfield .gfield_select,
    .gform_wrapper .gform_fields li.gfield .ginput_container_textarea,
    .gform_wrapper .gform_fields li.gfield .ginput_container_textarea textarea {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}
/***** END - GRAVITY FORM STYLE *****/

/***** START RESPONSIVE *****/
@media screen and (min-width: 993px) {
    /* Main Menu CTA Button */
    .jmsn-menu-cta {
        margin-left: 30px !important;
    }
    .jmsn-menu-cta a {
        padding: 49px 25px !important;
	}
}
@media screen and (max-width: 768px) {
    /* START - DISABLE BACKGROUND FOR SMALL DEVICES */
    .jmsn-sm-hide-bg .fl-row-content-wrap {
        background-color: #EEFFFF !important;
    }
    .jmsn-sm-bg-size .fl-row-content-wrap {
        background-size: 65%;
    }
    .jmsn-md-no-bg .jmsn-hero-title h1,
    .jmsn-md-no-bg .jmsn-hero-title h1 span {
        color: #589790 !important;
    }
    /* END - DISABLE BACKGROUND FOR SMALL DEVICES */
    
    .jmsn-main-header .fl-menu .fl-menu-mobile-toggle {
        padding: 15px 20px;
    }
}
@media screen and (min-width: 769px) {
    .jmsn-sticky-column {
        position: sticky;
        top: 170px;
    }
    .fl-menu .sub-menu {
        min-width: 240px !important;
    }
}
@media screen and (min-width: 770px) and (max-width: 1020px) {
    .jmsn-menu-cta {
        margin-left: 20px !important;
    }
}
@media screen and (max-width: 768px) {
    .fl-col-small:not(.fl-col-small-full-width) {
        max-width: 100%;
    }
    .uabb-video__play-icon > img {
        width: 70px !important;
    }
}
/***** END RESPONSIVE *****/
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.jmsn-infobox-img-wrapper .uabb-image .uabb-image-content img {
    border-radius: 0;
}
.uabb-adv-accordion-button-label,
.jmsn-team-member-info .uabb-adv-accordion-icon-wrap,
.uabb-adv-accordion-button-label:focus,
.jmsn-team-member-info .uabb-adv-accordion-icon-wrap:focus {
    outline: 0;
    outline: none;
}
.jmsn-team-member-info .uabb-adv-accordion-icon-wrap .uabb-adv-accordion-button-icon {
    width: 25px;
    height: 25px;
    background: #769eb4;
    border-radius: 100%;
    line-height: 25px;
}

.jmsn-infobox-img-wrapper .uabb-image .uabb-image-content img {
    border-radius: 0;
}

@media screen and (max-width: 768px) {
    .jmans-big-gallery > .fl-row-content-wrap {
        background-image: linear-gradient(180deg, #ffffff 10%, rgba(88,151,144,0.1) 0%);
    }
}
.jmsn-service-item-box .uabb-image .uabb-photo-img {
    border-radius: 0;
}

.jmsn-service-feature-box h5 {
    margin-bottom: 20px !important;
}
/* 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";
	}
}


																																		
					
					
					
																
					
					
					
																
					
					
					
																							
					
					
					
																
					
					
					
																
					
					
					
																																																																																																																																																																																																																																		
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
												