/* 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:before,
.fl-module: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:after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* 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;
}

/* 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%;
  	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
}
.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 {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: 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 {
	align-items: flex-end;
	justify-content: flex-end;
	-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;
}

/* 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 {
	align-items: center;
	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-module,
.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;
}

/* Modules
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}

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

.fl-builder-module-template {
	margin: 0 auto;
	max-width: 1100px;
	padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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;
	}
}
@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-row-fixed-width {
	max-width: 1100px;
}
.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, :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-rgz4k6j5onv8 > .fl-row-content-wrap {
	background-color: #ffffff;
}






.fl-node-0st4edro28na > .fl-row-content-wrap {
	background-color: #ed9e02;
}
.fl-node-0st4edro28na .fl-row-content {
	max-width: 900px;
}
 .fl-node-0st4edro28na > .fl-row-content-wrap {
	padding-top:10px;
	padding-bottom:0px;
}






.fl-node-wirtu1pn4d3q > .fl-row-content-wrap {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ed1c24;
	border-bottom-width: 5px;
}






.fl-node-2k3wfzr9xgni > .fl-row-content-wrap {
	background-image: url(https://go-juliekinne-com.limefunnelstg.wpenginepowered.com/wp-content/uploads/sites/38/2023/10/greybg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
 .fl-node-2k3wfzr9xgni > .fl-row-content-wrap {
	padding-bottom:50px;
}






.fl-node-txjvfzmikp8d > .fl-row-content-wrap {
	background-color: #2e63aa;
}
 .fl-node-txjvfzmikp8d > .fl-row-content-wrap {
	padding-top:10px;
	padding-bottom:10px;
}






.fl-node-henkj3ixum2g > .fl-row-content-wrap {
	background-color: #0c0002;
}






.fl-node-q7fu269n18tx .fl-row-content {
	max-width: 1218px;
}






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






.fl-node-0fpenq1wlzxb > .fl-row-content-wrap {
	background-image: url(https://go.juliekinne.com/wp-content/uploads/sites/21/2023/10/black-crinkle-bg.jpg?custom_param=value);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ed1c24;
	border-bottom-width: 5px;
}
.fl-node-0fpenq1wlzxb .fl-row-content {
	max-width: 1270px;
}
 .fl-node-0fpenq1wlzxb > .fl-row-content-wrap {
	padding-top:50px;
	padding-right:50px;
	padding-bottom:70px;
	padding-left:50px;
}
.fl-node-60wi9xbk3jz5 {
	color: #5b5b5b;
}
.fl-builder-content .fl-node-60wi9xbk3jz5 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-60wi9xbk3jz5 a {
	color: #5b5b5b;
}

.fl-builder-content .fl-node-60wi9xbk3jz5 a:hover {
	color: #5b5b5b;
}

.fl-builder-content .fl-node-60wi9xbk3jz5 h1,
.fl-builder-content .fl-node-60wi9xbk3jz5 h2,
.fl-builder-content .fl-node-60wi9xbk3jz5 h3,
.fl-builder-content .fl-node-60wi9xbk3jz5 h4,
.fl-builder-content .fl-node-60wi9xbk3jz5 h5,
.fl-builder-content .fl-node-60wi9xbk3jz5 h6,
.fl-builder-content .fl-node-60wi9xbk3jz5 h1 a,
.fl-builder-content .fl-node-60wi9xbk3jz5 h2 a,
.fl-builder-content .fl-node-60wi9xbk3jz5 h3 a,
.fl-builder-content .fl-node-60wi9xbk3jz5 h4 a,
.fl-builder-content .fl-node-60wi9xbk3jz5 h5 a,
.fl-builder-content .fl-node-60wi9xbk3jz5 h6 a {
	color: #2b2b2b;
}



.fl-node-60wi9xbk3jz5 > .fl-row-content-wrap {
	background-color: #2e63aa;
}




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




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




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




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




.fl-node-61e8lh73pvxr {
	width: 50%;
}




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




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




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




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




.fl-node-6j94grs8b1w2 {
	width: 25%;
}
.fl-node-6j94grs8b1w2 > .fl-col-content {
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(45,45,45,0.5);
	border-bottom-width: 1px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
 .fl-node-6j94grs8b1w2 > .fl-col-content {
	margin-top:20px;
	margin-right:15px;
	margin-bottom:10px;
	margin-left:10px;
}
 .fl-node-6j94grs8b1w2 > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}




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




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




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




.fl-node-5wf4nsxpzo6b {
	width: 33.33%;
}




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




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




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




.fl-node-5bzreja2fwqi {
	width: 33.33%;
}




.fl-node-e2b1z38a5dnh {
	width: 26.91%;
}




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




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




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




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




.fl-node-p0yorqxdja12 {
	width: 25%;
}
.fl-node-p0yorqxdja12 > .fl-col-content {
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(45,45,45,0.5);
	border-bottom-width: 1px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
 .fl-node-p0yorqxdja12 > .fl-col-content {
	margin-top:20px;
	margin-right:15px;
	margin-bottom:10px;
	margin-left:10px;
}
 .fl-node-p0yorqxdja12 > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}




.fl-node-4ndtvrq5fghy {
	width: 50%;
}




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




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




.fl-node-5g1dyewojz6l {
	width: 33.33%;
}




.fl-node-nrhjme3cy1t9 {
	width: 44.43%;
}




.fl-node-40iflxr2jcs3 {
	width: 25%;
}
.fl-node-40iflxr2jcs3 > .fl-col-content {
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(45,45,45,0.5);
	border-bottom-width: 1px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
 .fl-node-40iflxr2jcs3 > .fl-col-content {
	margin-top:20px;
	margin-right:15px;
	margin-bottom:10px;
	margin-left:10px;
}
 .fl-node-40iflxr2jcs3 > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}




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




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




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




.fl-node-yvsg5lb4qz8e {
	width: 28.66%;
}




.fl-node-rxos1t2epi6m {
	width: 25%;
}
.fl-node-rxos1t2epi6m > .fl-col-content {
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(45,45,45,0.5);
	border-bottom-width: 1px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
 .fl-node-rxos1t2epi6m > .fl-col-content {
	margin-top:20px;
	margin-right:15px;
	margin-bottom:10px;
	margin-left:10px;
}
 .fl-node-rxos1t2epi6m > .fl-col-content {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.uabb-aspect-ratio-4_3 .uabb-video__outer-wrap {
	padding-bottom: 75%;
}

.uabb-aspect-ratio-16_9 .uabb-video__outer-wrap {
	padding-bottom: 56.25%;
}

.uabb-aspect-ratio-3_2 .uabb-video__outer-wrap {
	padding-bottom: 66.6666%;
}

.uabb-aspect-ratio-1_1 .uabb-video__outer-wrap {
	padding-bottom: 100%;
}

.uabb-video__outer-wrap {
	position: relative;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	background: #000;
	cursor: pointer;
}

.uabb-video__outer-wrap img,
.uabb-video__outer-wrap video {
	bottom: 0;
	display: block;
	left: 0;
	margin: auto;
	max-width: 100%;
	width: 100%;
	position: absolute;
	right: 0;
	top: 0;
	border: none;
	height: auto;
	cursor: pointer;
	-webkit-transition: .2s all;
	transition: .2s all;
}

.uabb-video__play-icon {
	left: 50%;
	top: 50%;
	position: absolute;
	cursor: pointer;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	-webkit-transition: text-shadow ease .2s, color ease .2s;
	transition: text-shadow ease .2s, color ease .2s;
	z-index: 5;
}

.uabb-video__outer-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: transparent;
}

.uabb-vimeo-wrap {
	-js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	margin: 10px;
	-webkit-transition: opacity 200ms ease-out;
	transition: opacity 200ms ease-out;
	margin-right: 4.6em;
}

.uabb-vimeo-portrait {
	width: 60px;
	height: 60px;
	background: rgba(23, 35, 34, .75);
	margin-right: 1px;
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	-moz-box-flex: 1;
	flex: 1 0 auto;
	padding: 0;
}

.uabb-vimeo-portrait img {
	width: 50px;
	height: 50px;
	margin: 5px;
	padding: 0;
	border: 0;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.uabb-vimeo-headers {
	font-size: 10px;
}

.uabb-vimeo-byline {
	font-size: 1.2em!important;
	font-weight: 400;
	color: #fff;
	margin-top: .1em;
	padding: .2em .5em;
	background: rgba(23, 35, 34, .75);
	text-transform: none;
	line-height: normal;
	letter-spacing: normal;
}

.uabb-video-wistia-play,
.uabb-video-hosted-play {
	cursor: pointer;
	height: 70px;
	background: rgba(84, 187, 255, 0.8);
	-webkit-box-shadow: none;
	box-shadow: none;
	width: 100px;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: 0;
	padding: 0;
}

.uabb-vimeo-title {
	max-width: 100%;
	font-size: 2em!important;
	font-weight: 700;
	margin: 0;
	padding: .1em .2em;
	background: rgba(23, 35, 34, .75);
	display: inline-block;
	text-transform: none;
	line-height: normal;
	letter-spacing: normal;
}

.uabb-video__outer-wrap:active .ubb-animation-sink,
.uabb-video__outer-wrap:focus .uabb-animation-sink,
.uabb-video__outer-wrap:hover .uabb-animation-sink {
	top: -webkit-calc(50% + 8px);
	top: calc(50% + 8px);
}

.uabb-video__outer-wrap:before {
	content: '';
	z-index: 2;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.uabb-video__outer-wrap:active .uabb-animation-float,
.uabb-video__outer-wrap:focus .uabb-animation-float,
.uabb-video__outer-wrap:hover .uabb-animation-float {
	top: -webkit-calc(50% - 8px);
	top: calc(50% - 8px);
}

.uabb-video__outer-wrap:active .uabb-animation-wobble-vertical,
.uabb-video__outer-wrap:focus .uabb-animation-wobble-vertical,
.uabb-video__outer-wrap:hover .uabb-animation-wobble-vertical {
	-webkit-animation-name: uabb-wobble-vertical;
	animation-name: uabb-wobble-vertical;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.uabb-video__outer-wrap .uabb-animation-sink,
.uabb-video__outer-wrap .uabb-animation-float {
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	-webkit-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

@-webkit-keyframes uabb-wobble-vertical {
	16.65% {
		top: -webkit-calc(50% + 8px);
		top: calc(50% + 8px);
	}
	33.3% {
		top: -webkit-calc(50% - 6px);
		top: calc(50% - 6px);
	}
	49.95% {
		top: -webkit-calc(50% + 4px);
		top: calc(50% + 4px);
	}
	66.6% {
		top: -webkit-calc(50% - 2px);
		top: calc(50% - 2px);
	}
	83.25% {
		top: -webkit-calc(50% + 1px);
		top: calc(50% + 1px);
	}
	100% {
		top: 50%;
	}
}

@keyframes uabb-wobble-vertical {
	16.65% {
		top: -webkit-calc(50% + 8px);
		top: calc(50% + 8px);
	}
	33.3% {
		top: -webkit-calc(50% - 6px);
		top: calc(50% - 6px);
	}
	49.95% {
		top: -webkit-calc(50% + 4px);
		top: calc(50% + 4px);
	}
	66.6% {
		top: -webkit-calc(50% - 2px);
		top: calc(50% - 2px);
	}
	83.25% {
		top: -webkit-calc(50% + 1px);
		top: calc(50% + 1px);
	}
	100% {
		top: 50%;
	}
}

.uabb-subscribe-bar {
	js-display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 6px 10px;
}

.uabb-subscribe-bar-prefix {
	margin-right: 10px;
}

.uabb-subscribe-content {
	display: flex;
}

.uabb-subscribe-responsive-desktop .uabb-subscribe-bar {
	display: block;
	text-align: center;
}

.uabb-subscribe-responsive-desktop .uabb-subscribe-bar-prefix {
	margin-right: 0;
	margin-bottom: 8px;
}

.uabb-subscribe-responsive-desktop .uabb-subscribe-content {
	display: block;
}

.uabb-video__play.uabb-sticky-apply {
	position: fixed;
	transform: translateY(100%);
	width: 260px;
	height: 145px;
	animation: fade-in-up .25s ease forwards;
	z-index: 9999;
}

.uabb-video__outer-wrap.uabb-sticky-apply {
	background: none;
	z-index: 9;
	overflow: unset;
}

.uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
	position: fixed!important;
	z-index: 99999;
	height: 225px;
	width: 400px;
	background: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.uabb-sticky-infobar-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
	-webkit-box-shadow: unset;
	box-shadow: unset;
}

.uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-sticky-infobar {
	-webkit-box-shadow: 0 5px 10px -5px #333;
	box-shadow: 0 5px 10px -5px #333;
}

.uabb-sticky-apply .uabb-video-inner-wrap.ui-draggable {
	cursor: move;
}

.uabb-sticky-apply iframe,
.uabb-sticky-apply .uabb-video__thumb {
	padding: 4px;
}

.uabb-sticky-apply .uabb-video-sticky-close {
	display: block;
	position: absolute;
	padding: 1px 9px;
	color: #000;
	background: #fff;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	cursor: pointer;
	z-index: 99999;
}

.uabb-sticky-apply .uabb-video-sticky-infobar {
	display: block;
	position: relative;
	top: 100%;
	width: 100%;
	padding: 5px;
	color: #000;
	background: #fff;
	text-align: center;
	z-index: 9999;
	margin-top: -1px;
}

.uabb-video-sticky-top_left .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
	right: auto;
	left: 20px;
	top: 20px;
}

.uabb-video-sticky-bottom_left .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
	right: auto;
	left: 20px;
	bottom: 20px;
}

.uabb-video-sticky-top_right .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
	left: auto;
	right: 20px;
	top: 20px;
}

.uabb-video-sticky-bottom_right .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
	left: auto;
	right: 20px;
	bottom: 20px;
}

.uabb-video-sticky-center_left .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
	right: auto;
	left: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.uabb-video-sticky-center_right .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
	left: auto;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.uabb-video-sticky-bottom_right .uabb-sticky-infobar-wrap.uabb-sticky-apply .uabb-video-inner-wrap,
.uabb-video-sticky-bottom_left .uabb-sticky-infobar-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
	bottom: 55px;
}

.admin-bar .uabb-video-sticky-top_left .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap,
.admin-bar .uabb-video-sticky-top_right .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
	top: -webkit-calc(32px + 20px);
	top: calc(32px + 20px);
}

.uabb-video-sticky-top_left .uabb-sticky-apply .uabb-video-sticky-close,
.uabb-video-sticky-bottom_left .uabb-sticky-apply .uabb-video-sticky-close,
.uabb-video-sticky-center_left .uabb-sticky-apply .uabb-video-sticky-close {
	top: -10px;
	right: -10px;
}

.uabb-video-sticky-top_right .uabb-sticky-apply .uabb-video-sticky-close,
.uabb-video-sticky-bottom_right .uabb-sticky-apply .uabb-video-sticky-close,
.uabb-video-sticky-center_right .uabb-sticky-apply .uabb-video-sticky-close {
	top: -10px;
	left: -10px;
}

.uabb-video__outer-wrap .uabb-sticky-apply .uabb-vimeo-wrap,
.uabb-video__outer-wrap.uabb-sticky-apply .uabb-vimeo-wrap,
.uabb-sticky-apply.uabb-video__outer-wrap:before {
	visibility: hidden;
}

.uabb-video__outer-wrap.uabb-sticky-apply+.uabb-subscribe-bar,
.uabb-video-sticky-close,
.uabb-video-sticky-infobar {
	display: none;
}

@media only screen and (max-width: 992px) {
	.uabb-subscribe-responsive-tablet .uabb-subscribe-bar {
		display: block;
		text-align: center;
	}
	.uabb-subscribe-responsive-tablet .uabb-subscribe-bar-prefix {
		margin-right: 0;
		margin-bottom: 8px;
	}
	.uabb-subscribe-responsive-tablet .uabb-subscribe-content {
		display: block;
	}
}

@media only screen and (max-width: 767px) {
	.uabb-subscribe-responsive-mobile .uabb-subscribe-bar {
		display: block;
		text-align: center;
	}
	.uabb-subscribe-responsive-mobile .uabb-subscribe-bar-prefix {
		margin-right: 0;
		margin-bottom: 8px;
	}
	.uabb-subscribe-responsive-mobile .uabb-subscribe-content {
		display: block;
	}
}	.fl-node-zv741heql3ax .uabb-video__play-icon:before {
		font-size:75px;		line-height:75px;	}
	.fl-node-zv741heql3ax .uabb-video__play-icon {
		width:75px;		height:75px;	}
	.fl-node-zv741heql3ax .uabb-video__play-icon > img {
		width:75px;	}
		.fl-node-zv741heql3ax .uabb-subscribe-bar {
		background-color:#1b1b1b;
	}
	.fl-node-zv741heql3ax .uabb-subscribe-bar-prefix {
		color:#ffffff;
	}

		.fl-node-zv741heql3ax .uabb-subscribe-bar{
					}
			.fl-node-zv741heql3ax .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {

		}
			.fl-node-zv741heql3ax .uabb-sticky-apply iframe,
		.fl-node-zv741heql3ax .uabb-sticky-apply .uabb-video__thumb {
					}
			.fl-node-zv741heql3ax .uabb-sticky-apply .uabb-video-sticky-infobar {
					}
					.fl-node-zv741heql3ax .uabb-aspect-ratio-16_9 .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap,
			.fl-node-zv741heql3ax .uabb-aspect-ratio-16_9 .uabb-sticky-apply .uabb-video__thumb {
				width: 360px; height: calc( 360px * 0.5625 )			}
			.fl-node-zv741heql3ax .uabb-aspect-ratio-4_3 .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap,
			.fl-node-zv741heql3ax uabb-aspect-ratio-4_3 .uabb-sticky-apply .uabb-video__thumb {
				width: 360px; height: calc( 360px * 0.75 )			}
			.fl-node-zv741heql3ax .uabb-aspect-ratio-3_2 .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap,
			.fl-node-zv741heql3ax uabb-aspect-ratio-3_2 .uabb-sticky-apply .uabb-video__thumb {
				width: 360px; height: calc( 360px * 0.6666666666666667 )			}
		
		@media ( max-width: 992px ) {

		
						.fl-node-zv741heql3ax .uabb-subscribe-bar {
									}

								.fl-node-zv741heql3ax .uabb-sticky-apply iframe, .fl-node-zv741heql3ax .uabb-sticky-apply .uabb-video__thumb {
								}
								.fl-node-zv741heql3ax .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
								}
						.fl-node-zv741heql3ax .uabb-sticky-apply .uabb-video-sticky-infobar {
							}
						}
		@media ( max-width: 768px ) {

							.fl-node-zv741heql3ax .uabb-subscribe-bar {
							}
							.fl-node-zv741heql3ax .uabb-sticky-apply iframe, .fl-node-zv741heql3ax .uabb-sticky-apply .uabb-video__thumb {
							}
				.fl-node-zv741heql3ax .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
				}

						.fl-node-zv741heql3ax .uabb-sticky-apply .uabb-video-sticky-infobar {
							}
							}
				.fl-node-zv741heql3ax .uabb-vimeo-icon-bg {
				fill: rgba(0, 0, 0, 0.7);			}
						.fl-node-zv741heql3ax .uabb-video__outer-wrap:hover .uabb-video__play-icon .uabb-vimeo-icon-bg {
			fill: rgba(0, 173, 239, 0.9);			}
				
	.fl-node-zv741heql3ax .uabb-video__outer-wrap.uabb-sticky-apply .uabb-video-inner-wrap {
		background:#ffffff;
	}

			.fl-node-zv741heql3ax .uabb-sticky-apply .uabb-video-sticky-close {
			color: ;
			}
			.fl-node-zv741heql3ax .uabb-sticky-apply .uabb-video-sticky-close {
		background:;
	}
		 .fl-node-zv741heql3ax > .fl-module-content {
	margin-left:0px;
}
.uabb-photo-content.uabb-img-grayscale img {
	-webkit-filter: grayscale(100%);
	-webkit-filter: grayscale(1);
	filter: grayscale(100%);
	filter: gray;
}

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

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

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

	}

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

		width: 446px;
			}
.fl-node-jqid5g7pvs2y .uabb-photo-caption {
	}

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

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


@media ( max-width: 768px ) {
	.fl-node-jqid5g7pvs2y .uabb-photo-mob-align-center {
		text-align: center;
	}
}
.fl-row .fl-col .fl-node-ycpivfdr35g8 h2.fl-heading a,
.fl-row .fl-col .fl-node-ycpivfdr35g8 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ycpivfdr35g8 h2.fl-heading .fl-heading-text *,
.fl-node-ycpivfdr35g8 h2.fl-heading .fl-heading-text {
	color: #000000;
}
.fl-node-ycpivfdr35g8.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 28px;
}
@media(max-width: 992px) {
	.fl-node-ycpivfdr35g8.fl-module-heading .fl-heading {
		font-size: 30px;
		text-align: center;
	}
}
.fl-row .fl-col .fl-node-lceqrm826no9 h2.fl-heading a,
.fl-row .fl-col .fl-node-lceqrm826no9 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-lceqrm826no9 h2.fl-heading .fl-heading-text *,
.fl-node-lceqrm826no9 h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-lceqrm826no9.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 22px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-lceqrm826no9.fl-module-heading .fl-heading {
		font-size: 25px;
	}
}
@media(max-width: 768px) {
	.fl-node-lceqrm826no9.fl-module-heading .fl-heading {
		font-size: 25px;
	}
}
 .fl-node-lceqrm826no9 > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}

	.fl-builder-content .fl-node-59ywqvjuenc3 a.fl-button,
	.fl-builder-content .fl-node-59ywqvjuenc3 a.fl-button:hover,
	.fl-builder-content .fl-node-59ywqvjuenc3 a.fl-button:visited {
			background: #ed1c24;
		}

	.fl-builder-content .fl-node-59ywqvjuenc3 a.fl-button:hover {
	background-color: #ed1c24;
	}













.fl-builder-content .fl-node-59ywqvjuenc3 span.sub-text { display:block}.fl-node-59ywqvjuenc3 a.fl-button {
	width: 760px;
}
.fl-node-59ywqvjuenc3 .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-59ywqvjuenc3 a.fl-button, .fl-builder-content .fl-node-59ywqvjuenc3 a.fl-button:visited {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.4em;
	border: 1px solid #e11018;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	box-shadow: 6px 9px 11px 0px rgba(0,0,0,0.5);
}
.fl-builder-content .fl-node-59ywqvjuenc3 a.fl-button:hover, .fl-builder-content .fl-node-59ywqvjuenc3 a.fl-button:focus {
	border: 1px solid #e11018;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	box-shadow: 6px 9px 11px 0px rgba(0,0,0,0.5);
}
.fl-row .fl-col .fl-node-bperjyk50im7 h2.fl-heading a,
.fl-row .fl-col .fl-node-bperjyk50im7 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-bperjyk50im7 h2.fl-heading .fl-heading-text *,
.fl-node-bperjyk50im7 h2.fl-heading .fl-heading-text {
	color: #fffcfc;
}
.fl-node-bperjyk50im7.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 69px;
	text-align: center;
}
.fl-row .fl-col .fl-node-ft82pwmgi9rk h2.fl-heading a,
.fl-row .fl-col .fl-node-ft82pwmgi9rk h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ft82pwmgi9rk h2.fl-heading .fl-heading-text *,
.fl-node-ft82pwmgi9rk h2.fl-heading .fl-heading-text {
	color: #ed1c24;
}
.fl-node-ft82pwmgi9rk.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 36px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-ft82pwmgi9rk.fl-module-heading .fl-heading {
		font-size: 30px;
	}
}
 .fl-node-ft82pwmgi9rk > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
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-kgxanb6uipo8 {
	width: 100%;
}

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

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

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

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

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

			color: ;

								}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-kgxanb6uipo8 .uabb-infobox-text {
	color:
	#3f3f3f;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-kgxanb6uipo8 .uabb-infobox-title {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 27px;
	line-height: 1.3;
}
.fl-node-kgxanb6uipo8 .uabb-infobox-text {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
}
.fl-node-kgxanb6uipo8 .uabb-infobox-title-prefix {
	font-family: Poppins, sans-serif;
	font-weight: 400;
}
 .fl-node-kgxanb6uipo8 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:36px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-kgxanb6uipo8.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}

.fl-node-64id825ytge7 {
	width: 100%;
}

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

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

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

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

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

			color: ;

								}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-64id825ytge7 .uabb-infobox-text {
	color:
	#3f3f3f;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-64id825ytge7 .uabb-infobox-title {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 27px;
	line-height: 1.3;
}
.fl-node-64id825ytge7 .uabb-infobox-text {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
}
.fl-node-64id825ytge7 .uabb-infobox-title-prefix {
	font-family: Poppins, sans-serif;
	font-weight: 400;
}
 .fl-node-64id825ytge7 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:64px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-64id825ytge7.fl-module > .fl-module-content {
	margin-bottom:120px;
}
}
@media (max-width: 768px) { .fl-node-64id825ytge7 > .fl-module-content { margin-bottom:20px; } }
.fl-node-y6mrx057aoij {
	width: 100%;
}

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

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

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

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

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

			color: ;

								}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-y6mrx057aoij .uabb-infobox-text {
	color:
	#3f3f3f;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-y6mrx057aoij .uabb-infobox-title {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 27px;
	line-height: 1.3;
}
.fl-node-y6mrx057aoij .uabb-infobox-text {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
}
.fl-node-y6mrx057aoij .uabb-infobox-title-prefix {
	font-family: Poppins, sans-serif;
	font-weight: 500;
}
 .fl-node-y6mrx057aoij > .fl-module-content {
	margin-top:0%;
	margin-right:0%;
	margin-bottom:28%;
	margin-left:0%;
}
@media ( max-width: 992px ) {
 .fl-node-y6mrx057aoij.fl-module > .fl-module-content {
	margin-bottom:95px;
}
}
@media (max-width: 768px) { .fl-node-y6mrx057aoij > .fl-module-content { margin-bottom:20px; } }
.fl-node-ux7s0izvnqah {
	width: 100%;
}

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

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

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

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

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

			color: ;

								}

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


/* Image icon Margin 0 */

/* Border Properties */

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

/* Minimum Height and Vertical Alignment */


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

/* Prefix Margin Properties */

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


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

/* Description Color */

.fl-node-ux7s0izvnqah .uabb-infobox-text {
	color:
	#3f3f3f;
}

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




/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

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

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

	

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

	
	
	/* Left Right Title Image */
	}
.fl-node-ux7s0izvnqah .uabb-infobox-title {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 27px;
	line-height: 1.3;
}
.fl-node-ux7s0izvnqah .uabb-infobox-text {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.4;
}
 .fl-node-ux7s0izvnqah > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:83px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-ux7s0izvnqah.fl-module > .fl-module-content {
	margin-bottom:115px;
}
}
@media (max-width: 768px) { .fl-node-ux7s0izvnqah > .fl-module-content { margin-bottom:20px; } }.fl-row .fl-col .fl-node-ngaw5xtfmez8 h2.fl-heading a,
.fl-row .fl-col .fl-node-ngaw5xtfmez8 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ngaw5xtfmez8 h2.fl-heading .fl-heading-text *,
.fl-node-ngaw5xtfmez8 h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-ngaw5xtfmez8.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 52px;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-ngaw5xtfmez8.fl-module-heading .fl-heading {
		font-size: 30px;
	}
}
 .fl-node-ngaw5xtfmez8 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-tvigkra79lxs h2.fl-heading a,
.fl-row .fl-col .fl-node-tvigkra79lxs h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-tvigkra79lxs h2.fl-heading .fl-heading-text *,
.fl-node-tvigkra79lxs h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-tvigkra79lxs.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 25px;
	text-align: center;
}
 .fl-node-tvigkra79lxs > .fl-module-content {
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-z3d0fpjghns1 h2.fl-heading a,
.fl-row .fl-col .fl-node-z3d0fpjghns1 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-z3d0fpjghns1 h2.fl-heading .fl-heading-text *,
.fl-node-z3d0fpjghns1 h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-z3d0fpjghns1.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 25px;
	text-align: center;
}
 .fl-node-z3d0fpjghns1 > .fl-module-content {
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-2lp5jifsu7ox h2.fl-heading a,
.fl-row .fl-col .fl-node-2lp5jifsu7ox h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-2lp5jifsu7ox h2.fl-heading .fl-heading-text *,
.fl-node-2lp5jifsu7ox h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-2lp5jifsu7ox.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 25px;
	text-align: center;
}
 .fl-node-2lp5jifsu7ox > .fl-module-content {
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-bq2rkep6g7im h2.fl-heading a,
.fl-row .fl-col .fl-node-bq2rkep6g7im h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-bq2rkep6g7im h2.fl-heading .fl-heading-text *,
.fl-node-bq2rkep6g7im h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-bq2rkep6g7im.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 25px;
	text-align: center;
}
 .fl-node-bq2rkep6g7im > .fl-module-content {
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-3lrg1ah4weu5 h2.fl-heading a,
.fl-row .fl-col .fl-node-3lrg1ah4weu5 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-3lrg1ah4weu5 h2.fl-heading .fl-heading-text *,
.fl-node-3lrg1ah4weu5 h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-3lrg1ah4weu5.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 25px;
	text-align: center;
}
 .fl-node-3lrg1ah4weu5 > .fl-module-content {
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-6mpb1ux7czvo h2.fl-heading a,
.fl-row .fl-col .fl-node-6mpb1ux7czvo h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-6mpb1ux7czvo h2.fl-heading .fl-heading-text *,
.fl-node-6mpb1ux7czvo h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-6mpb1ux7czvo.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 25px;
	text-align: center;
}
 .fl-node-6mpb1ux7czvo > .fl-module-content {
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-cuy9ngv0z4qb h2.fl-heading a,
.fl-row .fl-col .fl-node-cuy9ngv0z4qb h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-cuy9ngv0z4qb h2.fl-heading .fl-heading-text *,
.fl-node-cuy9ngv0z4qb h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-cuy9ngv0z4qb.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 25px;
	text-align: center;
}
 .fl-node-cuy9ngv0z4qb > .fl-module-content {
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-h86v04rafu9z h2.fl-heading a,
.fl-row .fl-col .fl-node-h86v04rafu9z h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-h86v04rafu9z h2.fl-heading .fl-heading-text *,
.fl-node-h86v04rafu9z h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-h86v04rafu9z.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 25px;
	text-align: center;
}
 .fl-node-h86v04rafu9z > .fl-module-content {
	margin-bottom:0px;
}

	.fl-builder-content .fl-node-cs4dzfto9n2l a.fl-button,
	.fl-builder-content .fl-node-cs4dzfto9n2l a.fl-button:hover,
	.fl-builder-content .fl-node-cs4dzfto9n2l a.fl-button:visited {
			background: #ed1c24;
		}

	.fl-builder-content .fl-node-cs4dzfto9n2l a.fl-button:hover {
	background-color: #ed1c24;
	}













.fl-builder-content .fl-node-cs4dzfto9n2l span.sub-text { display:block}.fl-node-cs4dzfto9n2l a.fl-button {
	width: 890px;
}
.fl-node-cs4dzfto9n2l .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-cs4dzfto9n2l .fl-button-wrap a.fl-button {
	padding-top: 29px;
	padding-bottom: 29px;
}
.fl-builder-content .fl-node-cs4dzfto9n2l a.fl-button, .fl-builder-content .fl-node-cs4dzfto9n2l a.fl-button:visited {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 26px;
	line-height: 1.4em;
	border: 1px solid #e11018;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	box-shadow: 6px 9px 11px 0px rgba(0,0,0,0.5);
}
.fl-builder-content .fl-node-cs4dzfto9n2l a.fl-button:hover, .fl-builder-content .fl-node-cs4dzfto9n2l a.fl-button:focus {
	border: 1px solid #e11018;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	box-shadow: 6px 9px 11px 0px rgba(0,0,0,0.5);
}
 .fl-node-cs4dzfto9n2l > .fl-module-content {
	margin-bottom:42px;
}
@media (max-width: 768px) { .fl-node-cs4dzfto9n2l > .fl-module-content { margin-bottom:20px; } }.uabb-cl-wrap .uabb-cl-ul {
	display: block;
	float: none;
	position: relative;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.uabb-cl-wrap .uabb-cl-ul li {
	margin: 0;
	margin-bottom: 15px;
	text-align: center;
}

.uabb-creative-link {
	margin: 0 auto;
	display: block;
}

.uabb-creative-link h1,
.uabb-creative-link h2,
.uabb-creative-link h3,
.uabb-creative-link h4,
.uabb-creative-link h5,
.uabb-creative-link h6 {
	margin: 0;
}

.uabb-btn10-span {
	-webkit-transition: all ease .3s;
	-moz-transition: all ease .3s;
	transition: all ease .3s;
}

.uabb-cl-wrap .uabb-creative-link a {
	position: relative;
	display: inline-block;
	outline: none;
	text-decoration: none;
	text-transform: none;
	letter-spacing: inherit;
	max-width: 100%;
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
	line-height: normal;
	box-shadow: none;
}

.uabb-creative-link a:focus,
.uabb-creative-link a:hover {
	outline: 0;
}

.uabb-cl-style1 a:before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	-moz-transform: translateX(20px);
	transform: translateX(20px);
}

.uabb-cl-style1 a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	transform: translateX(-20px);
}

.uabb-cl-style1 a:hover::before,
.uabb-cl-style1 a:hover::after,
.uabb-cl-style1 a:focus::before,
.uabb-cl-style1 a:focus::after {
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}

.uabb-cl-style1 a::before,
.uabb-cl-style1 a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity .2s;
	-moz-transition: -moz-transform 0.3s, opacity .2s;
	transition: transform 0.3s, opacity .2s;
}

.uabb-cl-style2 a {
	-webkit-perspective: 5000px;
	-moz-perspective: 5000px;
	perspective: 5000px;
	perspective-origin: 50% 50%;
}

.uabb-cl-style2 a span {
	position: relative;
	display: inline-block;
	padding: 0 14px;
	background: inherit;
	-webkit-transition: -webkit-transform .3s;
	-moz-transition: -moz-transform .3s;
	transition: transform .3s;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.uabb-cl-style2 a span::before {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	content: attr(data-hover);
	-webkit-transition: background .3s;
	-moz-transition: background .3s;
	transition: background .3s;
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
}

.uabb-cl-style2 a:hover span,
.uabb-cl-style2 a:focus span {
	-webkit-transform: rotateX(90deg) translateY(-22px);
	-moz-transform: rotateX(90deg) translateY(-22px);
	transform: rotateX(90deg) translateY(-22px);
}

.uabb-cl-style3 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform .3s;
	-moz-transition: opacity 0.3s, -moz-transform .3s;
	transition: opacity 0.3s, transform .3s;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
	pointer-events: none;
}

.uabb-cl-style4 a {
	padding: 0 0 10px;
}

.uabb-cl-style4 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform .3s;
	-moz-transition: height 0.3s, opacity 0.3s, -moz-transform .3s;
	transition: height 0.3s, opacity 0.3s, transform .3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.uabb-cl-style5 a {
	overflow: hidden;
	padding: 0 .68em;
}

.uabb-cl-style5 a span {
	position: relative;
	display: inline-block;
	-webkit-transition: -webkit-transform .3s;
	-moz-transition: -moz-transform .3s;
	transition: transform .3s;
}

.uabb-cl-style5 a span::before {
	position: absolute;
	top: 100%;
	font-weight: 700;
	content: attr(data-hover);
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	white-space: nowrap;
}

.uabb-cl-style5 a:hover span,
.uabb-cl-style5 a:focus span {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
}

.uabb-cl-style6 a {
	margin: 0 10px;
	padding: 10px 20px;
}

.uabb-cl-style7 a {
	padding: 12px 10px 10px;
	text-shadow: none;
}

.uabb-cl-style7 a::before,
.uabb-cl-style7 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	content: '';
	-webkit-transition: -webkit-transform .3s;
	-moz-transition: -moz-transform .3s;
	transition: transform .3s;
	-webkit-transform: scale(0.85);
	-moz-transform: scale(0.85);
	transform: scale(0.85);
}

.uabb-cl-style7 a::after {
	opacity: 0;
	-webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform .3s;
	-moz-transition: top 0.3s, opacity 0.3s, -moz-transform .3s;
	transition: top 0.3s, opacity 0.3s, transform .3s;
}

.uabb-cl-style7 a:hover::before,
.uabb-cl-style7 a:focus::before {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
}

.uabb-cl-style7 a:hover::after,
.uabb-cl-style7 a:focus::after {
	top: 0;
	opacity: 1;
	-webkit-transform: scale(1) translateY(-100%);
	-moz-transform: scale(1) translateY(-100%);
	transform: scale(1) translateY(-100%);
}

.uabb-cl-style8 a {
	padding: 10px 20px;
}

.uabb-cl-style8 a::before,
.uabb-cl-style8 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s, opacity .3s;
	-moz-transition: -moz-transform 0.3s, opacity .3s;
	transition: transform 0.3s, opacity .3s;
}

.uabb-cl-style8 a::after {
	opacity: 0;
	-webkit-transform: translateY(-7px) translateX(6px);
	-moz-transform: translateY(-7px) translateX(6px);
	transform: translateY(-7px) translateX(6px);
}

.uabb-cl-style8 a:hover::before,
.uabb-cl-style8 a:focus::before {
	opacity: 0;
	-webkit-transform: translateY(5px) translateX(-5px);
	-moz-transform: translateY(5px) translateX(-5px);
	transform: translateY(5px) translateX(-5px);
}

.uabb-cl-style8 a:hover::after,
.uabb-cl-style8 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px) translateX(0px);
	-moz-transform: translateY(0px) translateX(0px);
	transform: translateY(0px) translateX(0px);
}

.uabb-cl-style9 a {
	overflow: hidden;
	margin: 0 15px;
	z-index: 1;
}

.uabb-cl-style9 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	padding: 10px 20px;
	width: 100%;
	height: 100%;
	content: attr(data-hover);
	-webkit-transition: -webkit-transform .3s;
	-moz-transition: -moz-transform .3s;
	transition: transform .3s;
	-webkit-transform: translateX(-25%);
}

.uabb-cl-style9 a span {
	display: block;
	padding: 10px 20px;
	-webkit-transition: -webkit-all .3s;
	-moz-transition: -moz-all .3s;
	transition: all .3s;
}

.uabb-cl-style9 a:hover::before,
.uabb-cl-style9 a:focus::before {
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	transform: translateX(0%);
}

.uabb-cl-style9 a:hover span,
.uabb-cl-style9 a:focus span {
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	transform: translateX(100%);
}

.uabb-cl-style10 a {
	padding: 10px 0;
	text-shadow: none;
}

.uabb-cl-style10 a::before {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	padding: 10px 0;
	max-width: 0;
	content: attr(data-hover);
	-webkit-transition: max-width .5s;
	-moz-transition: max-width .5s;
	transition: max-width .5s;
}

.uabb-cl-style10 a:hover::before,
.uabb-cl-style10 a:focus::before {
	max-width: 100%;
}

.uabb-cl-style11 a:hover::before,
.uabb-cl-style11 a:hover::after,
.uabb-cl-style11 a:focus::before,
.uabb-cl-style11 a:focus::after {
	opacity: 1;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1);
	-moz-transform: translateX(-50%) translateY(-50%) scale(1);
	transform: translateX(-50%) translateY(-50%) scale(1);
}

.uabb-cl-style11 a::before,
.uabb-cl-style11 a::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	z-index: 0;
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity .3s;
	-moz-transition: -moz-transform 0.3s, opacity .3s;
	transition: transform 0.3s, opacity .3s;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.2);
	transform: translateX(-50%) translateY(-50%) scale(0.2);
}

.uabb-cl-style11 a::after {
	width: 90px;
	height: 90px;
	border-width: 6px;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
	-moz-transform: translateX(-50%) translateY(-50%) scale(0.8);
	transform: translateX(-50%) translateY(-50%) scale(0.8);
}

.uabb-cl-style11 span {
	position: relative;
	z-index: 1;
}

.uabb-cl-style12 a {
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	transition: color .3s;
}

.uabb-cl-style12 a::before {
	position: absolute;
	top: 100%;
	left: 50%;
	color: transparent;
	content: "•";
	text-shadow: transparent 0 0;
	transform: translateX(-50%);
	pointer-events: none;
	transition: text-shadow 0.3s, color .3s;
}

.uabb-cl-wrap .uabb-cl-style13 a {
	padding: 0 20px;
	height: 45px;
	line-height: 45px;
}

.uabb-cl-style13 a::before {
	top: 0;
	left: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
}

.uabb-cl-style13 a::after {
	right: 0;
	bottom: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.uabb-cl-style13 a::before,
.uabb-cl-style13 a::after {
	position: absolute;
	width: 45px;
	content: '';
	opacity: .2;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	pointer-events: none;
}

.uabb-cl-style13 a:hover::before,
.uabb-cl-style13 a:focus::before {
	left: 50%;
	-webkit-transform: rotate(0deg) translateX(-50%);
	-moz-transform: rotate(0deg) translateX(-50%);
	transform: rotate(0deg) translateX(-50%);
}

.uabb-cl-style13 a:hover::after,
.uabb-cl-style13 a:focus::after {
	right: 50%;
	-webkit-transform: rotate(0deg) translateX(50%);
	-moz-transform: rotate(0deg) translateX(50%);
	transform: rotate(0deg) translateX(50%);
}

.uabb-cl-style13 a:hover::before,
.uabb-cl-style13 a:hover::after,
.uabb-cl-style13 a:focus::before,
.uabb-cl-style13 a:focus::after {
	opacity: 1;
}

.uabb-cl-style14 a {
	color: rgba(0, 0, 0, 0.2);
	font-weight: 700;
	text-shadow: none;
	transition: all 0.3s, opacity .3s;
}

.uabb-cl-style14 a:hover::before,
.uabb-cl-style14 a:focus::before {
	-webkit-transform: scale(0.9);
	-moz-transform: scale(0.9);
	transform: scale(0.9);
	opacity: 0;
}

.uabb-cl-style15 a {
	text-shadow: 0 0 1px rgba(111, 134, 134, 0.3);
}

.uabb-cl-style15 a::before {
	content: attr(data-hover);
	position: absolute;
	opacity: 0;
	text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
	-webkit-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
	-moz-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
	transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
	-webkit-transition: -webkit-transform 0.3s, opacity .3s;
	-moz-transition: -moz-transform 0.3s, opacity .3s;
	transition: transform 0.3s, opacity .3s;
	pointer-events: none;
}

.uabb-cl-style15 a:hover::before,
.uabb-cl-style15 a:focus::before {
	-webkit-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
	-moz-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
	transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
	opacity: 1;
}

.uabb-cl-style16 a::after {
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform .3s;
	-moz-transition: opacity 0.3s, -moz-transform .3s;
	transition: opacity 0.3s, transform .3s;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
	pointer-events: none;
}

.uabb-cl-style17 a {
	padding: 0 5px;
	font-weight: 700;
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	transition: color .3s;
}

.uabb-cl-style17 a span {
	position: relative;
	z-index: 2;
}

.uabb-cl-style17 a::before {
	top: -3px;
}

.uabb-cl-style17 a::after {
	bottom: -3px;
}

.uabb-cl-style17 a::before,
.uabb-cl-style17 a::after {
	position: absolute;
	width: 100%;
	left: 0;
	margin-top: -1px;
	content: '';
	z-index: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity .3s;
	-moz-transition: -moz-transform 0.3s, opacity .3s;
	transition: transform 0.3s, opacity .3s;
	pointer-events: none;
}

.uabb-cl-style17 a:hover::before,
.uabb-cl-style17 a:focus::before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

.uabb-cl-style17 a:hover::before,
.uabb-cl-style17 a:hover::after,
.uabb-cl-style17 a:focus::before,
.uabb-cl-style17 a:focus::after {
	opacity: .7;
	top: 50%;
}

.uabb-cl-style17 a:hover::after,
.uabb-cl-style17 a:focus::after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.uabb-cl-simple a {
	display: inline-block;
	margin: 0 7px 10px;
	padding: 8px 10px;
	-webkit-transition: color .3s ease;
	transition: color .3s ease;
}

.uabb-cl-style18 a {
	line-height: 2em;
	margin: 15px;
	-webkit-perspective: 800px;
	-moz-perspective: 800px;
	perspective: 800px;
	display: block;
}

.uabb-cl-style18 a span {
	position: relative;
	display: block;
	width: 100%;
	padding: 10px 15px 7px;
	-webkit-transition: -webkit-transform 0.4s, background .4s;
	-moz-transition: -moz-transform 0.4s, background .4s;
	transition: transform 0.4s, background .4s;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.uabb-cl-style18 a span::before {
	position: absolute;
	padding: inherit;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	content: attr(data-hover);
	-webkit-transition: background .4s;
	-moz-transition: background .4s;
	transition: background .4s;
	-webkit-transform: rotateY(90deg);
	-moz-transform: rotateY(90deg);
	transform: rotateY(90deg);
	-webkit-transform-origin: 0 50%;
	-moz-transform-origin: 0 50%;
	transform-origin: 0 50%;
	pointer-events: none;
}

.uabb-cl-style18 a:hover span,
.uabb-cl-style18 a:focus span {
	-webkit-transform: rotateY(-90deg);
	-moz-transform: rotateY(-90deg);
	transform: rotateY(-90deg);
}

.uabb-cl-style19 a {
	line-height: 2em;
	-webkit-perspective: 800px;
	-moz-perspective: 800px;
	perspective: 800px;
}

.uabb-cl-style19 a span::before {
	position: absolute;
	padding: inherit;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: attr(data-hover);
	-webkit-transform: rotateX(270deg);
	-moz-transform: rotateX(270deg);
	transform: rotateX(270deg);
	-webkit-transition: -webkit-transform .6s;
	-moz-transition: -moz-transform .6s;
	transition: transform .6s;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
	pointer-events: none;
}

.uabb-cl-style20 a {
	padding: 10px;
	font-weight: 700;
	text-shadow: none;
}

.uabb-cl-style20 a::before,
.uabb-cl-style20 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform .3s;
	-moz-transition: opacity 0.3s, -moz-transform .3s;
	transition: opacity 0.3s, transform .3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.uabb-cl-style20 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.uabb-cl-style20 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}

.internet-explorer .uabb-cl-style2 a span:before {
	padding: inherit;
	top: 0;
	left: 0;
	-webkit-transform: rotateX(270deg);
	-moz-transform: rotateX(270deg);
	transform: rotateX(270deg);
	-webkit-transition: -webkit-transform .6s;
	-moz-transition: -moz-transform .6s;
	transition: transform .6s;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
	pointer-events: none;
}

.internet-explorer .uabb-cl-style2 a:hover span,
.internet-explorer .uabb-cl-style2 a:focus span {
	transform: none;
}

.uabb-cl-style3 a,
.uabb-cl-style16 a {
	padding: 8px 0;
}

.uabb-cl-style3 a:hover::after,
.uabb-cl-style3 a:focus::after,
.uabb-cl-style4 a:hover::after,
.uabb-cl-style4 a:focus::after,
.uabb-cl-style16 a:hover::after,
.uabb-cl-style16 a:focus::after,
.uabb-cl-style20 a:hover::before,
.uabb-cl-style20 a:focus::before,
.uabb-cl-style20 a:hover::after,
.uabb-cl-style20 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

.uabb-cl-style19 a span,
.internet-explorer .uabb-cl-style2 a span {
	position: relative;
	display: inline-block;
	padding: 10px 15px 7px;
	-webkit-transition: background .6s;
	-moz-transition: background .6s;
	transition: background .6s;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 0 50%;
	-moz-transform-origin: 0 50%;
	transform-origin: 0 50%;
}

.uabb-cl-style19 a:hover span::before,
.uabb-cl-style19 a:focus span::before,
.internet-explorer .uabb-cl-style2 a:hover span:before,
.internet-explorer .uabb-cl-style2 a:focus span:before {
	-webkit-transform: rotateX(10deg);
	-moz-transform: rotateX(10deg);
	transform: rotateX(10deg);
}
.fl-node-mtwd60slu81q .uabb-cl-wrap .uabb-creative-link a {
	color: #ffffff;}


.fl-node-mtwd60slu81q .uabb-cl-wrap .uabb-creative-link a span {
	color: inherit;
	line-height: inherit;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
}
.fl-node-mtwd60slu81q .uabb-cl-wrap .uabb-creative-link a:hover,
.fl-node-mtwd60slu81q .uabb-cl-wrap .uabb-creative-link a span:hover {
	color: #00b5f7;
}
	
.fl-node-mtwd60slu81q .uabb-cl-wrap .uabb-cl-ul li {
	display: inline-block;
			margin-left: 5px;
		margin-right: 5px;
	
	margin-bottom: 15px;
}

.fl-node-mtwd60slu81q .uabb-cl-wrap .uabb-cl-ul {
	text-align: center;
}

/* Style 2 */

.fl-node-mtwd60slu81q .uabb-cl-style2 p a,
.fl-node-mtwd60slu81q .uabb-cl-style2 div a,
.fl-node-mtwd60slu81q .uabb-cl-style2 span a {
	color:
	#ffffff;
}

.fl-node-mtwd60slu81q .uabb-cl-style2 a span {
	padding: 5px 15px;
		background: #2b7bb9;}
.fl-node-mtwd60slu81q .uabb-cl-style2 a span:before {
		background: #2b7bb9;	padding: inherit;
}

/* Style 3 */
.fl-node-mtwd60slu81q .uabb-cl-style3 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 4 */
.fl-node-mtwd60slu81q .uabb-cl-style4 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 7 */

.fl-node-mtwd60slu81q .uabb-cl-style7 a::before,
.fl-node-mtwd60slu81q .uabb-cl-style7 a::after {
	height: 1px;
		background: #2b7bb9;
}


/* Style 8 */

.fl-node-mtwd60slu81q .uabb-cl-style8 a::before,
.fl-node-mtwd60slu81q .uabb-cl-style8 a::after {
	border: 1px solid #757575;
}

.fl-node-mtwd60slu81q .uabb-cl-style8 a::after {
	border-color:
	#757575;
}

/* Style 9 */
.fl-node-mtwd60slu81q .uabb-cl-style9 a span {
	color:#ffffff;
		background: #2b7bb9;
}

.fl-node-mtwd60slu81q .uabb-cl-style9 p a,
.fl-node-mtwd60slu81q .uabb-cl-style9 div a,
.fl-node-mtwd60slu81q .uabb-cl-style9 span a {
	color:
	#ffffff;
}

.fl-node-mtwd60slu81q .uabb-cl-style9 a::before {
	color:#00b5f7;
		background: #2b7bb9;
}

/* Style 10 */

.fl-node-mtwd60slu81q .uabb-cl-style10 a {
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:
	#757575;
	color:#ffffff;
}

.fl-node-mtwd60slu81q .uabb-cl-style10 a::before {
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:
	#757575;
	color:#ffffff;
}

/* Style 6 */
.fl-node-mtwd60slu81q .uabb-cl-style6 a:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
		background: #2b7bb9;
	content: '';
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	transition: top 0.3s;
}

.fl-node-mtwd60slu81q .uabb-cl-style6 a:after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 1px;
	height: 1px;
		background: #2b7bb9;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

.fl-node-mtwd60slu81q .uabb-cl-style6 a:hover::before {
	top: 100%;
	opacity: 1;
}

.fl-node-mtwd60slu81q .uabb-cl-style6 a:hover::after {
	height: 100%;
}


/* Style 11 */

.fl-node-mtwd60slu81q .uabb-cl-style11 a::before,
.fl-node-mtwd60slu81q .uabb-cl-style11 a::after {
	border-color:
	#757575;
}

/* Style 12 */

.fl-node-mtwd60slu81q .uabb-cl-style12 a:hover::before,
.fl-node-mtwd60slu81q .uabb-cl-style12 a:focus::before {
		color: #00b5f7;
	text-shadow: 10px 0
	#00b5f7, -10px 0 #00b5f7;
}

/* Style 13 */

.fl-node-mtwd60slu81q .uabb-cl-style13 a::before,
.fl-node-mtwd60slu81q .uabb-cl-style13 a::after {
	height: 1px;
		background: #2b7bb9;
}

/* Style 14 */

.fl-node-mtwd60slu81q .uabb-cl-style14 a::before {
	color:#ffffff;
	content: attr(data-hover);
	position: absolute;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
}

.fl-node-mtwd60slu81q .uabb-cl-style14 .uabb-cl-heading,
.fl-node-mtwd60slu81q .uabb-cl-style14 .uabb-cl-heading a,
.fl-node-mtwd60slu81q .uabb-cl-style14 .uabb-cl-heading a:visited,
.fl-node-mtwd60slu81q .uabb-cl-style14 .uabb-cl-heading a *,
.fl-node-mtwd60slu81q .uabb-cl-style14 .uabb-cl-heading a:visited *​ {
	color:#00b5f7;
}

/* Style 15 */

.fl-node-mtwd60slu81q .uabb-cl-style15 a::before {
	color:#00b5f7;
}

/* Style 16 */

.fl-node-mtwd60slu81q .uabb-cl-style16 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 17 */

.fl-node-mtwd60slu81q .uabb-cl-style17 a {
	color:#ffffff;
}

.fl-node-mtwd60slu81q .uabb-cl-style17 a::after,
.fl-node-mtwd60slu81q .uabb-cl-style17 a::before {
	height: 1px;
		background: #2b7bb9;
}

/* Style 18 */

.fl-node-mtwd60slu81q .uabb-cl-style18 a {
	margin: 0;
	width: 200px;
	max-width: 100%;
}

.fl-node-mtwd60slu81q .uabb-cl-style18 p a,
.fl-node-mtwd60slu81q .uabb-cl-style18 div a,
.fl-node-mtwd60slu81q .uabb-cl-style18 span a {
	color:
	#ffffff;
}


.fl-node-mtwd60slu81q .uabb-cl-style18 a span {
	-webkit-transform-origin: 50% 50% -100px;
	-moz-transform-origin: 50% 50% -100px;
	transform-origin: 50% 50% -100px;
}

.fl-node-mtwd60slu81q .uabb-cl-style18 a span {
		background: #2b7bb9;
}

.fl-node-mtwd60slu81q .uabb-cl-style18 a:hover span::before,
.fl-node-mtwd60slu81q .uabb-cl-style18 a:focus span::before {
		background: #2b7bb9;
}

.fl-node-mtwd60slu81q .uabb-cl-style18 a span::before,
.fl-node-mtwd60slu81q .uabb-cl-style18 a:hover span,
.fl-node-mtwd60slu81q .uabb-cl-style18 a:focus span {
		background: #004987;
}

/* Style 19 */


.fl-node-mtwd60slu81q .uabb-cl-style19 a span {
		background: #2b7bb9;
	box-shadow: inset 0 3px #004987;
}

.fl-node-mtwd60slu81q .uabb-cl-style19 p a,
.fl-node-mtwd60slu81q .uabb-cl-style19 div a,
.fl-node-mtwd60slu81q .uabb-cl-style19 span a {
	color:
	#ffffff;
}

.fl-node-mtwd60slu81q .uabb-cl-style19 a span::before {
		background: #2b7bb9;
	color:#00b5f7;
}

.fl-node-mtwd60slu81q .uabb-cl-style19 a:hover span,
.fl-node-mtwd60slu81q .uabb-cl-style19 a:focus span {
	background: #004987;
}

/* Style 20 */

.fl-node-mtwd60slu81q .uabb-cl-style20 a:hover,
.fl-node-mtwd60slu81q .uabb-cl-style20 a:focus {
	color:#00b5f7;
}

.fl-node-mtwd60slu81q .uabb-cl-style20 a {
	color:#ffffff;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}

.fl-node-mtwd60slu81q .uabb-cl-style20 a::before,
.fl-node-mtwd60slu81q .uabb-cl-style20 a::after {
	height: 1px;
		background: #2b7bb9;
}

/* Style Simple */
.fl-node-mtwd60slu81q .uabb-cl-wrap .uabb-creative-link.uabb-cl-simple a {
	color:#ffffff;
}

.fl-node-mtwd60slu81q .uabb-cl-wrap .uabb-creative-link.uabb-cl-simple a:hover {
	color:#00b5f7;
}

		@media ( max-width: 768px ) {

			
							.fl-node-mtwd60slu81q .uabb-cl-wrap .uabb-cl-ul li {
					margin-left: 0;
					margin-right: 0;
					display: block;
				}
					}
.fl-node-mtwd60slu81q .uabb-cl-wrap .uabb-cl-heading a {
	font-weight: 400;
}

.fl-node-vnqp7gsl32tz .uabb-cl-wrap .uabb-creative-link a {
	color: #ffffff;}


.fl-node-vnqp7gsl32tz .uabb-cl-wrap .uabb-creative-link a span {
	color: inherit;
	line-height: inherit;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
}
.fl-node-vnqp7gsl32tz .uabb-cl-wrap .uabb-creative-link a:hover,
.fl-node-vnqp7gsl32tz .uabb-cl-wrap .uabb-creative-link a span:hover {
	color: #00b5f7;
}
	
.fl-node-vnqp7gsl32tz .uabb-cl-wrap .uabb-cl-ul li {
	display: inline-block;
			margin-left: 5px;
		margin-right: 5px;
	
	margin-bottom: 15px;
}

.fl-node-vnqp7gsl32tz .uabb-cl-wrap .uabb-cl-ul {
	text-align: center;
}

/* Style 2 */

.fl-node-vnqp7gsl32tz .uabb-cl-style2 p a,
.fl-node-vnqp7gsl32tz .uabb-cl-style2 div a,
.fl-node-vnqp7gsl32tz .uabb-cl-style2 span a {
	color:
	#ffffff;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style2 a span {
	padding: 5px 15px;
		background: #2b7bb9;}
.fl-node-vnqp7gsl32tz .uabb-cl-style2 a span:before {
		background: #2b7bb9;	padding: inherit;
}

/* Style 3 */
.fl-node-vnqp7gsl32tz .uabb-cl-style3 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 4 */
.fl-node-vnqp7gsl32tz .uabb-cl-style4 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 7 */

.fl-node-vnqp7gsl32tz .uabb-cl-style7 a::before,
.fl-node-vnqp7gsl32tz .uabb-cl-style7 a::after {
	height: 1px;
		background: #2b7bb9;
}


/* Style 8 */

.fl-node-vnqp7gsl32tz .uabb-cl-style8 a::before,
.fl-node-vnqp7gsl32tz .uabb-cl-style8 a::after {
	border: 1px solid #757575;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style8 a::after {
	border-color:
	#757575;
}

/* Style 9 */
.fl-node-vnqp7gsl32tz .uabb-cl-style9 a span {
	color:#ffffff;
		background: #2b7bb9;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style9 p a,
.fl-node-vnqp7gsl32tz .uabb-cl-style9 div a,
.fl-node-vnqp7gsl32tz .uabb-cl-style9 span a {
	color:
	#ffffff;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style9 a::before {
	color:#00b5f7;
		background: #2b7bb9;
}

/* Style 10 */

.fl-node-vnqp7gsl32tz .uabb-cl-style10 a {
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:
	#757575;
	color:#ffffff;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style10 a::before {
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:
	#757575;
	color:#ffffff;
}

/* Style 6 */
.fl-node-vnqp7gsl32tz .uabb-cl-style6 a:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
		background: #2b7bb9;
	content: '';
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	transition: top 0.3s;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style6 a:after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 1px;
	height: 1px;
		background: #2b7bb9;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style6 a:hover::before {
	top: 100%;
	opacity: 1;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style6 a:hover::after {
	height: 100%;
}


/* Style 11 */

.fl-node-vnqp7gsl32tz .uabb-cl-style11 a::before,
.fl-node-vnqp7gsl32tz .uabb-cl-style11 a::after {
	border-color:
	#757575;
}

/* Style 12 */

.fl-node-vnqp7gsl32tz .uabb-cl-style12 a:hover::before,
.fl-node-vnqp7gsl32tz .uabb-cl-style12 a:focus::before {
		color: #00b5f7;
	text-shadow: 10px 0
	#00b5f7, -10px 0 #00b5f7;
}

/* Style 13 */

.fl-node-vnqp7gsl32tz .uabb-cl-style13 a::before,
.fl-node-vnqp7gsl32tz .uabb-cl-style13 a::after {
	height: 1px;
		background: #2b7bb9;
}

/* Style 14 */

.fl-node-vnqp7gsl32tz .uabb-cl-style14 a::before {
	color:#ffffff;
	content: attr(data-hover);
	position: absolute;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style14 .uabb-cl-heading,
.fl-node-vnqp7gsl32tz .uabb-cl-style14 .uabb-cl-heading a,
.fl-node-vnqp7gsl32tz .uabb-cl-style14 .uabb-cl-heading a:visited,
.fl-node-vnqp7gsl32tz .uabb-cl-style14 .uabb-cl-heading a *,
.fl-node-vnqp7gsl32tz .uabb-cl-style14 .uabb-cl-heading a:visited *​ {
	color:#00b5f7;
}

/* Style 15 */

.fl-node-vnqp7gsl32tz .uabb-cl-style15 a::before {
	color:#00b5f7;
}

/* Style 16 */

.fl-node-vnqp7gsl32tz .uabb-cl-style16 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 17 */

.fl-node-vnqp7gsl32tz .uabb-cl-style17 a {
	color:#ffffff;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style17 a::after,
.fl-node-vnqp7gsl32tz .uabb-cl-style17 a::before {
	height: 1px;
		background: #2b7bb9;
}

/* Style 18 */

.fl-node-vnqp7gsl32tz .uabb-cl-style18 a {
	margin: 0;
	width: 200px;
	max-width: 100%;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style18 p a,
.fl-node-vnqp7gsl32tz .uabb-cl-style18 div a,
.fl-node-vnqp7gsl32tz .uabb-cl-style18 span a {
	color:
	#ffffff;
}


.fl-node-vnqp7gsl32tz .uabb-cl-style18 a span {
	-webkit-transform-origin: 50% 50% -100px;
	-moz-transform-origin: 50% 50% -100px;
	transform-origin: 50% 50% -100px;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style18 a span {
		background: #2b7bb9;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style18 a:hover span::before,
.fl-node-vnqp7gsl32tz .uabb-cl-style18 a:focus span::before {
		background: #2b7bb9;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style18 a span::before,
.fl-node-vnqp7gsl32tz .uabb-cl-style18 a:hover span,
.fl-node-vnqp7gsl32tz .uabb-cl-style18 a:focus span {
		background: #004987;
}

/* Style 19 */


.fl-node-vnqp7gsl32tz .uabb-cl-style19 a span {
		background: #2b7bb9;
	box-shadow: inset 0 3px #004987;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style19 p a,
.fl-node-vnqp7gsl32tz .uabb-cl-style19 div a,
.fl-node-vnqp7gsl32tz .uabb-cl-style19 span a {
	color:
	#ffffff;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style19 a span::before {
		background: #2b7bb9;
	color:#00b5f7;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style19 a:hover span,
.fl-node-vnqp7gsl32tz .uabb-cl-style19 a:focus span {
	background: #004987;
}

/* Style 20 */

.fl-node-vnqp7gsl32tz .uabb-cl-style20 a:hover,
.fl-node-vnqp7gsl32tz .uabb-cl-style20 a:focus {
	color:#00b5f7;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style20 a {
	color:#ffffff;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}

.fl-node-vnqp7gsl32tz .uabb-cl-style20 a::before,
.fl-node-vnqp7gsl32tz .uabb-cl-style20 a::after {
	height: 1px;
		background: #2b7bb9;
}

/* Style Simple */
.fl-node-vnqp7gsl32tz .uabb-cl-wrap .uabb-creative-link.uabb-cl-simple a {
	color:#ffffff;
}

.fl-node-vnqp7gsl32tz .uabb-cl-wrap .uabb-creative-link.uabb-cl-simple a:hover {
	color:#00b5f7;
}

		@media ( max-width: 768px ) {

			
							.fl-node-vnqp7gsl32tz .uabb-cl-wrap .uabb-cl-ul li {
					margin-left: 0;
					margin-right: 0;
					display: block;
				}
					}
.fl-node-vnqp7gsl32tz .uabb-cl-wrap .uabb-cl-heading a {
	font-weight: 400;
}

.fl-node-uqapf8dzw7vn .uabb-cl-wrap .uabb-creative-link a {
	color: #ffffff;}


.fl-node-uqapf8dzw7vn .uabb-cl-wrap .uabb-creative-link a span {
	color: inherit;
	line-height: inherit;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
}
.fl-node-uqapf8dzw7vn .uabb-cl-wrap .uabb-creative-link a:hover,
.fl-node-uqapf8dzw7vn .uabb-cl-wrap .uabb-creative-link a span:hover {
	color: #00b5f7;
}
	
.fl-node-uqapf8dzw7vn .uabb-cl-wrap .uabb-cl-ul li {
	display: inline-block;
			margin-left: 5px;
		margin-right: 5px;
	
	margin-bottom: 15px;
}

.fl-node-uqapf8dzw7vn .uabb-cl-wrap .uabb-cl-ul {
	text-align: center;
}

/* Style 2 */

.fl-node-uqapf8dzw7vn .uabb-cl-style2 p a,
.fl-node-uqapf8dzw7vn .uabb-cl-style2 div a,
.fl-node-uqapf8dzw7vn .uabb-cl-style2 span a {
	color:
	#ffffff;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style2 a span {
	padding: 5px 15px;
		background: #2b7bb9;}
.fl-node-uqapf8dzw7vn .uabb-cl-style2 a span:before {
		background: #2b7bb9;	padding: inherit;
}

/* Style 3 */
.fl-node-uqapf8dzw7vn .uabb-cl-style3 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 4 */
.fl-node-uqapf8dzw7vn .uabb-cl-style4 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 7 */

.fl-node-uqapf8dzw7vn .uabb-cl-style7 a::before,
.fl-node-uqapf8dzw7vn .uabb-cl-style7 a::after {
	height: 1px;
		background: #2b7bb9;
}


/* Style 8 */

.fl-node-uqapf8dzw7vn .uabb-cl-style8 a::before,
.fl-node-uqapf8dzw7vn .uabb-cl-style8 a::after {
	border: 1px solid #757575;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style8 a::after {
	border-color:
	#757575;
}

/* Style 9 */
.fl-node-uqapf8dzw7vn .uabb-cl-style9 a span {
	color:#ffffff;
		background: #2b7bb9;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style9 p a,
.fl-node-uqapf8dzw7vn .uabb-cl-style9 div a,
.fl-node-uqapf8dzw7vn .uabb-cl-style9 span a {
	color:
	#ffffff;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style9 a::before {
	color:#00b5f7;
		background: #2b7bb9;
}

/* Style 10 */

.fl-node-uqapf8dzw7vn .uabb-cl-style10 a {
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:
	#757575;
	color:#ffffff;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style10 a::before {
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:
	#757575;
	color:#ffffff;
}

/* Style 6 */
.fl-node-uqapf8dzw7vn .uabb-cl-style6 a:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
		background: #2b7bb9;
	content: '';
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	transition: top 0.3s;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style6 a:after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 1px;
	height: 1px;
		background: #2b7bb9;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style6 a:hover::before {
	top: 100%;
	opacity: 1;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style6 a:hover::after {
	height: 100%;
}


/* Style 11 */

.fl-node-uqapf8dzw7vn .uabb-cl-style11 a::before,
.fl-node-uqapf8dzw7vn .uabb-cl-style11 a::after {
	border-color:
	#757575;
}

/* Style 12 */

.fl-node-uqapf8dzw7vn .uabb-cl-style12 a:hover::before,
.fl-node-uqapf8dzw7vn .uabb-cl-style12 a:focus::before {
		color: #00b5f7;
	text-shadow: 10px 0
	#00b5f7, -10px 0 #00b5f7;
}

/* Style 13 */

.fl-node-uqapf8dzw7vn .uabb-cl-style13 a::before,
.fl-node-uqapf8dzw7vn .uabb-cl-style13 a::after {
	height: 1px;
		background: #2b7bb9;
}

/* Style 14 */

.fl-node-uqapf8dzw7vn .uabb-cl-style14 a::before {
	color:#ffffff;
	content: attr(data-hover);
	position: absolute;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style14 .uabb-cl-heading,
.fl-node-uqapf8dzw7vn .uabb-cl-style14 .uabb-cl-heading a,
.fl-node-uqapf8dzw7vn .uabb-cl-style14 .uabb-cl-heading a:visited,
.fl-node-uqapf8dzw7vn .uabb-cl-style14 .uabb-cl-heading a *,
.fl-node-uqapf8dzw7vn .uabb-cl-style14 .uabb-cl-heading a:visited *​ {
	color:#00b5f7;
}

/* Style 15 */

.fl-node-uqapf8dzw7vn .uabb-cl-style15 a::before {
	color:#00b5f7;
}

/* Style 16 */

.fl-node-uqapf8dzw7vn .uabb-cl-style16 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 17 */

.fl-node-uqapf8dzw7vn .uabb-cl-style17 a {
	color:#ffffff;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style17 a::after,
.fl-node-uqapf8dzw7vn .uabb-cl-style17 a::before {
	height: 1px;
		background: #2b7bb9;
}

/* Style 18 */

.fl-node-uqapf8dzw7vn .uabb-cl-style18 a {
	margin: 0;
	width: 200px;
	max-width: 100%;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style18 p a,
.fl-node-uqapf8dzw7vn .uabb-cl-style18 div a,
.fl-node-uqapf8dzw7vn .uabb-cl-style18 span a {
	color:
	#ffffff;
}


.fl-node-uqapf8dzw7vn .uabb-cl-style18 a span {
	-webkit-transform-origin: 50% 50% -100px;
	-moz-transform-origin: 50% 50% -100px;
	transform-origin: 50% 50% -100px;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style18 a span {
		background: #2b7bb9;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style18 a:hover span::before,
.fl-node-uqapf8dzw7vn .uabb-cl-style18 a:focus span::before {
		background: #2b7bb9;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style18 a span::before,
.fl-node-uqapf8dzw7vn .uabb-cl-style18 a:hover span,
.fl-node-uqapf8dzw7vn .uabb-cl-style18 a:focus span {
		background: #004987;
}

/* Style 19 */


.fl-node-uqapf8dzw7vn .uabb-cl-style19 a span {
		background: #2b7bb9;
	box-shadow: inset 0 3px #004987;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style19 p a,
.fl-node-uqapf8dzw7vn .uabb-cl-style19 div a,
.fl-node-uqapf8dzw7vn .uabb-cl-style19 span a {
	color:
	#ffffff;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style19 a span::before {
		background: #2b7bb9;
	color:#00b5f7;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style19 a:hover span,
.fl-node-uqapf8dzw7vn .uabb-cl-style19 a:focus span {
	background: #004987;
}

/* Style 20 */

.fl-node-uqapf8dzw7vn .uabb-cl-style20 a:hover,
.fl-node-uqapf8dzw7vn .uabb-cl-style20 a:focus {
	color:#00b5f7;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style20 a {
	color:#ffffff;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}

.fl-node-uqapf8dzw7vn .uabb-cl-style20 a::before,
.fl-node-uqapf8dzw7vn .uabb-cl-style20 a::after {
	height: 1px;
		background: #2b7bb9;
}

/* Style Simple */
.fl-node-uqapf8dzw7vn .uabb-cl-wrap .uabb-creative-link.uabb-cl-simple a {
	color:#ffffff;
}

.fl-node-uqapf8dzw7vn .uabb-cl-wrap .uabb-creative-link.uabb-cl-simple a:hover {
	color:#00b5f7;
}

		@media ( max-width: 768px ) {

			
							.fl-node-uqapf8dzw7vn .uabb-cl-wrap .uabb-cl-ul li {
					margin-left: 0;
					margin-right: 0;
					display: block;
				}
					}
img.mfp-img {
    padding-bottom: 40px !important;
}

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

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

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-p6m15vaw7ezh .fl-photo {
	text-align: center;
}
.fl-node-p6m15vaw7ezh .fl-photo-content, .fl-node-p6m15vaw7ezh .fl-photo-img {
	width: 100px;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
	.fl-builder-content .fl-node-anjw9c18yvqk .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-anjw9c18yvqk .fl-module-content .fl-rich-text * {
		color: #3f3f3f;
	}
	.fl-builder-content .fl-node-anjw9c18yvqk .fl-rich-text, .fl-builder-content .fl-node-anjw9c18yvqk .fl-rich-text *:not(b, strong) {
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	font-size: 53px;
	line-height: 1.3;
	text-align: center;
}
.fl-node-wrunev7yqabj .fl-photo {
	text-align: center;
}
.fl-node-wrunev7yqabj .fl-photo-content, .fl-node-wrunev7yqabj .fl-photo-img {
	width: 100px;
}
.fl-row .fl-col .fl-node-qkm0tup84c3d h2.fl-heading a,
.fl-row .fl-col .fl-node-qkm0tup84c3d h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-qkm0tup84c3d h2.fl-heading .fl-heading-text *,
.fl-node-qkm0tup84c3d h2.fl-heading .fl-heading-text {
	color: #f2f2f2;
}
.fl-node-qkm0tup84c3d.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 36px;
	text-align: center;
}
.fl-row .fl-col .fl-node-ah63nwc4mz50 h2.fl-heading a,
.fl-row .fl-col .fl-node-ah63nwc4mz50 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ah63nwc4mz50 h2.fl-heading .fl-heading-text *,
.fl-node-ah63nwc4mz50 h2.fl-heading .fl-heading-text {
	color: #ed1c24;
}
.fl-node-ah63nwc4mz50.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 700;
	font-size: 33px;
	line-height: 1.1;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-ah63nwc4mz50.fl-module-heading .fl-heading {
		font-size: 30px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-ah63nwc4mz50.fl-module-heading .fl-heading {
		font-size: 35px;
		text-align: center;
	}
}
 .fl-node-ah63nwc4mz50 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}


	.fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button,
	.fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button:hover,
	.fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button:visited {
	background-image: linear-gradient(to bottom, #c1c1c1 0%, #a3a3a3 100%);
	}













	.fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button span.sub-text,
	.fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button:visited span.sub-text,
	.fl-builder-content .fl-node-arw7n60pe2q1 span.sub-text
	{
	color: #000000;
	}
	.fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button:hover span.sub-text,
	.fl-builder-content .fl-node-arw7n60pe2q1 span.sub-text:hover
	{
	color: #f45b02;
	}

.fl-builder-content .fl-node-arw7n60pe2q1 span.sub-text { display:block}.fl-node-arw7n60pe2q1 .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-arw7n60pe2q1 .fl-button-wrap a.fl-button {
	padding-top: 12px;
	padding-right: 12px;
	padding-bottom: 12px;
	padding-left: 12px;
}
.fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button, .fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button:visited {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 23px;
	line-height: 1.2em;
	text-align: center;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #353535;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	box-shadow: 7px 7px 25px 1px #c9c9c9;
}
.fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button:hover, .fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #353535;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	box-shadow: 7px 7px 25px 1px #c9c9c9;
}
.fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button, .fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button:hover {
	background-image: linear-gradient(90deg, #ff8800 0%, #f9c700 80%);
}
.fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button span.sub-text, .fl-builder-content .fl-node-arw7n60pe2q1 a.fl-button:visited span.sub-text, .fl-builder-content .fl-node-arw7n60pe2q1 span.sub-text {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
	.fl-builder-content .fl-node-lurz6px7it8v .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-lurz6px7it8v .fl-module-content .fl-rich-text * {
		color: #000000;
	}
	.fl-builder-content .fl-node-lurz6px7it8v .fl-rich-text, .fl-builder-content .fl-node-lurz6px7it8v .fl-rich-text *:not(b, strong) {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 22px;
}
.fl-node-oespqrdjl0yc {
	width: 100%;
}

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

	}

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

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

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

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


@media ( max-width: 768px ) {
	.fl-node-oespqrdjl0yc .uabb-photo-mob-align-center {
		text-align: center;
	}
}
.fl-node-37a0upgzs4dw {
	width: 100%;
}

.fl-node-37a0upgzs4dw .uabb-photo-content {

	}

.fl-node-37a0upgzs4dw .uabb-photo-content img {

			}
.fl-node-37a0upgzs4dw .uabb-photo-caption {
	}

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

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


@media ( max-width: 768px ) {
	.fl-node-37a0upgzs4dw .uabb-photo-mob-align-center {
		text-align: center;
	}
}
.fl-node-ni3hmdeupz56 .fl-photo {
	text-align: center;
}
.fl-node-fc62tmghvur8 .fl-photo {
	text-align: center;
}
.fl-node-rgzxyewac3vn .fl-photo {
	text-align: center;
}
.fl-node-ci0q61u24agm .fl-photo {
	text-align: center;
}
.fl-node-z1vc7qnb08rg .fl-photo {
	text-align: center;
}
.fl-node-g8au5tp2lrbf .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-c9b10ov7peuf .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-c9b10ov7peuf .fl-module-content .fl-rich-text * {
		color: rgba(255,255,255,0.32);
	}
	.fl-builder-content .fl-node-c9b10ov7peuf .fl-rich-text, .fl-builder-content .fl-node-c9b10ov7peuf .fl-rich-text *:not(b, strong) {
	font-family: Lato, sans-serif;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
}
 .fl-node-c9b10ov7peuf > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-zcqd9shi70r3 .fl-separator {
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: #2e63aa;
	max-width: 25%;
	margin: auto;
}

			 .fl-node-zcqd9shi70r3 > .fl-module-content {
	margin-top:05px;
}

.fl-node-f13l8id9nags .uabb-cl-wrap .uabb-creative-link a {
	color: #006ace;}


.fl-node-f13l8id9nags .uabb-cl-wrap .uabb-creative-link a span {
	color: inherit;
	line-height: inherit;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
}
.fl-node-f13l8id9nags .uabb-cl-wrap .uabb-creative-link a:hover,
.fl-node-f13l8id9nags .uabb-cl-wrap .uabb-creative-link a span:hover {
	color: ;
}
	
.fl-node-f13l8id9nags .uabb-cl-wrap .uabb-cl-ul li {
	display: inline-block;
			margin-left: 5px;
		margin-right: 5px;
	
	margin-bottom: 15px;
}

.fl-node-f13l8id9nags .uabb-cl-wrap .uabb-cl-ul {
	text-align: center;
}

/* Style 2 */

.fl-node-f13l8id9nags .uabb-cl-style2 p a,
.fl-node-f13l8id9nags .uabb-cl-style2 div a,
.fl-node-f13l8id9nags .uabb-cl-style2 span a {
	color:
	#006ace;
}

.fl-node-f13l8id9nags .uabb-cl-style2 a span {
	padding: 5px 15px;
		background: #2b7bb9;}
.fl-node-f13l8id9nags .uabb-cl-style2 a span:before {
		background: #2b7bb9;	padding: inherit;
}

/* Style 3 */
.fl-node-f13l8id9nags .uabb-cl-style3 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 4 */
.fl-node-f13l8id9nags .uabb-cl-style4 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 7 */

.fl-node-f13l8id9nags .uabb-cl-style7 a::before,
.fl-node-f13l8id9nags .uabb-cl-style7 a::after {
	height: 1px;
		background: #2b7bb9;
}


/* Style 8 */

.fl-node-f13l8id9nags .uabb-cl-style8 a::before,
.fl-node-f13l8id9nags .uabb-cl-style8 a::after {
	border: 1px solid #757575;
}

.fl-node-f13l8id9nags .uabb-cl-style8 a::after {
	border-color:
	#757575;
}

/* Style 9 */
.fl-node-f13l8id9nags .uabb-cl-style9 a span {
	color:#006ace;
		background: #2b7bb9;
}

.fl-node-f13l8id9nags .uabb-cl-style9 p a,
.fl-node-f13l8id9nags .uabb-cl-style9 div a,
.fl-node-f13l8id9nags .uabb-cl-style9 span a {
	color:
	#006ace;
}

.fl-node-f13l8id9nags .uabb-cl-style9 a::before {
	;
		background: #2b7bb9;
}

/* Style 10 */

.fl-node-f13l8id9nags .uabb-cl-style10 a {
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:
	#757575;
	color:#006ace;
}

.fl-node-f13l8id9nags .uabb-cl-style10 a::before {
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:
	#757575;
	color:#006ace;
}

/* Style 6 */
.fl-node-f13l8id9nags .uabb-cl-style6 a:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
		background: #2b7bb9;
	content: '';
	-webkit-transition: top 0.3s;
	-moz-transition: top 0.3s;
	transition: top 0.3s;
}

.fl-node-f13l8id9nags .uabb-cl-style6 a:after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 1px;
	height: 1px;
		background: #2b7bb9;
	-webkit-transition: height 0.3s;
	-moz-transition: height 0.3s;
	transition: height 0.3s;
}

.fl-node-f13l8id9nags .uabb-cl-style6 a:hover::before {
	top: 100%;
	opacity: 1;
}

.fl-node-f13l8id9nags .uabb-cl-style6 a:hover::after {
	height: 100%;
}


/* Style 11 */

.fl-node-f13l8id9nags .uabb-cl-style11 a::before,
.fl-node-f13l8id9nags .uabb-cl-style11 a::after {
	border-color:
	#757575;
}

/* Style 12 */

.fl-node-f13l8id9nags .uabb-cl-style12 a:hover::before,
.fl-node-f13l8id9nags .uabb-cl-style12 a:focus::before {
		color: #757575;
	text-shadow: 10px 0
	#757575, -10px 0 #757575;
}

/* Style 13 */

.fl-node-f13l8id9nags .uabb-cl-style13 a::before,
.fl-node-f13l8id9nags .uabb-cl-style13 a::after {
	height: 1px;
		background: #2b7bb9;
}

/* Style 14 */

.fl-node-f13l8id9nags .uabb-cl-style14 a::before {
	color:#006ace;
	content: attr(data-hover);
	position: absolute;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	-moz-transition: -moz-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
}

.fl-node-f13l8id9nags .uabb-cl-style14 .uabb-cl-heading,
.fl-node-f13l8id9nags .uabb-cl-style14 .uabb-cl-heading a,
.fl-node-f13l8id9nags .uabb-cl-style14 .uabb-cl-heading a:visited,
.fl-node-f13l8id9nags .uabb-cl-style14 .uabb-cl-heading a *,
.fl-node-f13l8id9nags .uabb-cl-style14 .uabb-cl-heading a:visited *​ {
	;
}

/* Style 15 */

.fl-node-f13l8id9nags .uabb-cl-style15 a::before {
	;
}

/* Style 16 */

.fl-node-f13l8id9nags .uabb-cl-style16 a::after {
		background: #2b7bb9;
	height:1px;
}

/* Style 17 */

.fl-node-f13l8id9nags .uabb-cl-style17 a {
	color:#006ace;
}

.fl-node-f13l8id9nags .uabb-cl-style17 a::after,
.fl-node-f13l8id9nags .uabb-cl-style17 a::before {
	height: 1px;
		background: #2b7bb9;
}

/* Style 18 */

.fl-node-f13l8id9nags .uabb-cl-style18 a {
	margin: 0;
	width: 200px;
	max-width: 100%;
}

.fl-node-f13l8id9nags .uabb-cl-style18 p a,
.fl-node-f13l8id9nags .uabb-cl-style18 div a,
.fl-node-f13l8id9nags .uabb-cl-style18 span a {
	color:
	#006ace;
}


.fl-node-f13l8id9nags .uabb-cl-style18 a span {
	-webkit-transform-origin: 50% 50% -100px;
	-moz-transform-origin: 50% 50% -100px;
	transform-origin: 50% 50% -100px;
}

.fl-node-f13l8id9nags .uabb-cl-style18 a span {
		background: #2b7bb9;
}

.fl-node-f13l8id9nags .uabb-cl-style18 a:hover span::before,
.fl-node-f13l8id9nags .uabb-cl-style18 a:focus span::before {
		background: #2b7bb9;
}

.fl-node-f13l8id9nags .uabb-cl-style18 a span::before,
.fl-node-f13l8id9nags .uabb-cl-style18 a:hover span,
.fl-node-f13l8id9nags .uabb-cl-style18 a:focus span {
		background: #004987;
}

/* Style 19 */


.fl-node-f13l8id9nags .uabb-cl-style19 a span {
		background: #2b7bb9;
	box-shadow: inset 0 3px #004987;
}

.fl-node-f13l8id9nags .uabb-cl-style19 p a,
.fl-node-f13l8id9nags .uabb-cl-style19 div a,
.fl-node-f13l8id9nags .uabb-cl-style19 span a {
	color:
	#006ace;
}

.fl-node-f13l8id9nags .uabb-cl-style19 a span::before {
		background: #2b7bb9;
	;
}

.fl-node-f13l8id9nags .uabb-cl-style19 a:hover span,
.fl-node-f13l8id9nags .uabb-cl-style19 a:focus span {
	background: #004987;
}

/* Style 20 */

.fl-node-f13l8id9nags .uabb-cl-style20 a:hover,
.fl-node-f13l8id9nags .uabb-cl-style20 a:focus {
	;
}

.fl-node-f13l8id9nags .uabb-cl-style20 a {
	color:#006ace;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}

.fl-node-f13l8id9nags .uabb-cl-style20 a::before,
.fl-node-f13l8id9nags .uabb-cl-style20 a::after {
	height: 1px;
		background: #2b7bb9;
}

/* Style Simple */
.fl-node-f13l8id9nags .uabb-cl-wrap .uabb-creative-link.uabb-cl-simple a {
	color:#006ace;
}

.fl-node-f13l8id9nags .uabb-cl-wrap .uabb-creative-link.uabb-cl-simple a:hover {
	;
}

		@media ( max-width: 768px ) {

			
							.fl-node-f13l8id9nags .uabb-cl-wrap .uabb-cl-ul li {
					margin-left: 0;
					margin-right: 0;
					display: block;
				}
					}
.fl-node-f13l8id9nags .uabb-cl-wrap .uabb-cl-heading a {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
}
 .fl-node-f13l8id9nags > .fl-module-content {
	margin-top:-15px;
}
@media (max-width: 768px) { .fl-node-f13l8id9nags > .fl-module-content { margin-top:20px; } }.fl-node-hf4r7mcau8nl {
	width: 100%;
}

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

	}

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

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

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

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


@media ( max-width: 768px ) {
	.fl-node-hf4r7mcau8nl .uabb-photo-mob-align-center {
		text-align: center;
	}
}
.fl-node-x8vldwcq9fzj {
	width: 100%;
}

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

	}

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

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

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

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


@media ( max-width: 768px ) {
	.fl-node-x8vldwcq9fzj .uabb-photo-mob-align-center {
		text-align: center;
	}
}
/* Vertical Align*/
.uabb-list-icon-wrap .uabb-icon-wrap,
.uabb-list-icon-wrap .uabb-list-icon-text {
    display: inline-block;
    vertical-align: middle;
}

.uabb-list-icon-wrap {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.uabb-list-icon-text h1.uabb-list-icon-text-heading,
.uabb-list-icon-text h2.uabb-list-icon-text-heading,
.uabb-list-icon-text h3.uabb-list-icon-text-heading,
.uabb-list-icon-text h4.uabb-list-icon-text-heading,
.uabb-list-icon-text h5.uabb-list-icon-text-heading,
.uabb-list-icon-text h6.uabb-list-icon-text-heading {
    padding: 0;
    margin: 0;
}

.fl-module-list-icon .uabb-list-icon {
	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;
}

.uabb-list-icon-text * {
	margin: 0;
}
	/* Global Alignment Css */
	.fl-node-5bu0piflc41q .uabb-imgicon-wrap {
					text-align: ;
			}

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

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

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

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

			color: ;

								}

		.fl-node-5bu0piflc41q .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-5bu0piflc41q .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-5bu0piflc41q .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-5bu0piflc41q .uabb-callout-outter,
.fl-node-5bu0piflc41q .uabb-list-icon-text {
	display: inline-block;
	vertical-align: middle;
}



/* Left */
.fl-node-5bu0piflc41q .uabb-list-icon-wrap:not(:last-child)  {
	margin-bottom: 10px;
}

.fl-node-5bu0piflc41q .uabb-list-icon-wrap .uabb-callout-outter {
		margin-right: 10px;
	}
.fl-node-5bu0piflc41q .uabb-list-icon-wrap .uabb-list-icon-text {
	
	}



?>

.fl-node-5bu0piflc41q .uabb-list-icon {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.fl-node-5bu0piflc41q .uabb-list-icon-wrap {
	-webkit-justify-content: center;
			justify-content: center;
}

.fl-node-5bu0piflc41q .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {
			color : #ffffff;
	}


.fl-node-5bu0piflc41q .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {
	font-size: 12px;
	text-align: left;
}
.fl-row .fl-col .fl-node-gifjwzth4qca h2.fl-heading a,
.fl-row .fl-col .fl-node-gifjwzth4qca h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-gifjwzth4qca h2.fl-heading .fl-heading-text *,
.fl-node-gifjwzth4qca h2.fl-heading .fl-heading-text {
	color: #2e4270;
}
.fl-node-gifjwzth4qca.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 500;
	font-size: 24px;
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-gifjwzth4qca.fl-module-heading .fl-heading {
		font-size: 25px;
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-gifjwzth4qca.fl-module-heading .fl-heading {
		font-size: 25px;
		text-align: center;
	}
}
 .fl-node-gifjwzth4qca > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-4z0spl5hbegi {
	width: 100%;
}

.fl-node-4z0spl5hbegi .uabb-photo-content {

	}

.fl-node-4z0spl5hbegi .uabb-photo-content img {

			}
.fl-node-4z0spl5hbegi .uabb-photo-caption {
	}

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

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


@media ( max-width: 768px ) {
	.fl-node-4z0spl5hbegi .uabb-photo-mob-align-center {
		text-align: center;
	}
}
.fl-node-com37tl81pkv {
	width: 100%;
}

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

	}

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

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

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

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


@media ( max-width: 768px ) {
	.fl-node-com37tl81pkv .uabb-photo-mob-align-center {
		text-align: center;
	}
}

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

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

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

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

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

			color: ;

								}

		.fl-node-4lyh5wdsqagt .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-4lyh5wdsqagt .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-4lyh5wdsqagt .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
.fl-node-4lyh5wdsqagt .uabb-callout-outter,
.fl-node-4lyh5wdsqagt .uabb-list-icon-text {
	display: inline-block;
	vertical-align: middle;
}



/* Left */
.fl-node-4lyh5wdsqagt .uabb-list-icon-wrap:not(:last-child)  {
	margin-bottom: 14px;
}

.fl-node-4lyh5wdsqagt .uabb-list-icon-wrap .uabb-callout-outter {
		margin-right: 10px;
	}
.fl-node-4lyh5wdsqagt .uabb-list-icon-wrap .uabb-list-icon-text {
	
	
	width: calc( 100% - 40px  );
	}



?>

.fl-node-4lyh5wdsqagt .uabb-list-icon {
	-webkit-box-align: flex-start;
	-webkit-align-items: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.fl-node-4lyh5wdsqagt .uabb-list-icon-wrap {
	-webkit-justify-content: flex-start;
			justify-content: flex-start;
}

.fl-node-4lyh5wdsqagt .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {
			color : #000000;
	}


.fl-node-4lyh5wdsqagt .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 25px;
}
@media(max-width: 992px) {
	.fl-node-4lyh5wdsqagt .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {
		font-size: 25px;
	}
}
@media(max-width: 768px) {
	.fl-node-4lyh5wdsqagt .uabb-list-icon .uabb-list-icon-text .uabb-list-icon-text-heading {
		font-size: 25px;
	}
}
 .fl-node-4lyh5wdsqagt > .fl-module-content {
	margin-top:10px;
}
.fl-row .fl-col .fl-node-57vrazx8dg4k h2.fl-heading a,
.fl-row .fl-col .fl-node-57vrazx8dg4k h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-57vrazx8dg4k h2.fl-heading .fl-heading-text *,
.fl-node-57vrazx8dg4k h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-57vrazx8dg4k.fl-module-heading .fl-heading {
	font-family: Poppins, sans-serif;
	font-weight: 400;
	font-size: 25px;
	text-align: center;
}
 .fl-node-57vrazx8dg4k > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-m0jxqgfrisn4 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-m0jxqgfrisn4 .fl-module-content .fl-rich-text * {
		color: #f9041d;
	}
	.fl-builder-content .fl-node-m0jxqgfrisn4 .fl-rich-text, .fl-builder-content .fl-node-m0jxqgfrisn4 .fl-rich-text *:not(b, strong) {
	font-family: "Sedgwick Ave", cursive;
	font-weight: 400;
	font-size: 33px;
	text-align: center;
}
 .fl-node-m0jxqgfrisn4 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-ey9shcmfodkt {
	width: 100%;
}

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

	}

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

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

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

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


@media ( max-width: 768px ) {
	.fl-node-ey9shcmfodkt .uabb-photo-mob-align-center {
		text-align: center;
	}
}
	.fl-builder-content .fl-node-cyn0eb52suv1 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-cyn0eb52suv1 .fl-module-content .fl-rich-text * {
		color: #00ad02;
	}
	.fl-builder-content .fl-node-cyn0eb52suv1 .fl-rich-text, .fl-builder-content .fl-node-cyn0eb52suv1 .fl-rich-text *:not(b, strong) {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 37px;
	text-align: center;
}
 .fl-node-cyn0eb52suv1 > .fl-module-content {
	margin-top:-40px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-cyn0eb52suv1 > .fl-module-content { margin-top:20px; } }
/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

/* Equal height Column Bottom Alignment */
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
          -webkit-box-align: end;
           -webkit-box-pack: end;
              -ms-flex-pack: end;
}

/* H1-H6 Margin Reset in all Modules */
.uabb-module-content h1,
.uabb-module-content h2,
.uabb-module-content h3,
.uabb-module-content h4,
.uabb-module-content h5,
.uabb-module-content h6 {
    margin: 0;
    clear: both;
}

/* Anchor Tag Css */

.fl-module-content a,
.fl-module-content a:hover,
.fl-module-content a:focus {
    text-decoration: none;
}

/* Row Separator CSS */

.uabb-row-separator {
    position: absolute;
    width: 100%;
    left: 0;
}

.uabb-top-row-separator {
    top: 0;
    bottom: auto
}

.uabb-bottom-row-separator {
    top: auto;
    bottom: 0;
}

.fl-builder-content-editing .fl-visible-medium.uabb-row,
.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
.fl-builder-content-editing .fl-visible-mobile.uabb-row {
    display: none !important;
}

@media (max-width: 992px) {

    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: block !important;
    }
}

.fl-responsive-preview-content .fl-builder-content-editing {
    overflow-x: hidden;
    overflow-y: visible;
}

.uabb-row-separator svg {
    width: 100%;
}

.uabb-top-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    top: -1px;
    bottom: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    bottom: -1px;
    top: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {
    bottom: 0;
}
.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {
    top: 0;
}

/**
 *
 *  Svg Triangle Separator
 *  Big Triangle Separator
 *  Big Triangle Left Separator
 *  Svg Half Circle Separator
 *  Curve Center Separator
 *  Waves Separator
 *  Stamp
 *  Grass
 *  Slime
 *  Grass Bend
 *  Wave Slide
 *  Muliple Triangles
 *  Pine Tree
 *  Pine Tree Bend
 *
 ***************************************/
.uabb-bottom-row-separator.uabb-svg-triangle svg,
.uabb-bottom-row-separator.uabb-xlarge-triangle svg,
.uabb-top-row-separator.uabb-xlarge-triangle-left svg,
.uabb-bottom-row-separator.uabb-svg-circle svg,
.uabb-top-row-separator.uabb-slime-separator svg,
.uabb-top-row-separator.uabb-grass-separator svg,
.uabb-top-row-separator.uabb-grass-bend-separator svg,
.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,
.uabb-top-row-separator.uabb-wave-slide-separator svg,
.uabb-top-row-separator.uabb-pine-tree-separator svg,
.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,
.uabb-bottom-row-separator.uabb-stamp-separator svg,
.uabb-bottom-row-separator.uabb-xlarge-circle svg,
.uabb-top-row-separator.uabb-wave-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

/*
 *  Big Triangle
*/
.uabb-bottom-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: scale(1) scaleY(-1) translateX(-50%);
       -moz-transform: scale(1) scaleY(-1) translateX(-50%);
        -ms-transform: scale(1) scaleY(-1) translateX(-50%);
         -o-transform: scale(1) scaleY(-1) translateX(-50%);
            transform: scale(1) scaleY(-1) translateX(-50%);
}

.uabb-top-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
       -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
         -o-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
}

/**
 *
 *  Big Triangle Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

/**
 *
 *  Curve Left Separator
 *  Curve Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-curve-up-separator svg {
    left: 50%;
     -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-top-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}


/**
 *
 *  Tilt Left Separator
 *  Tilt Right Separator
 *
 ***************************************/

.uabb-top-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-top-row-separator.uabb-tilt-right-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-tilt-right-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

.uabb-top-row-separator.uabb-tilt-left-separator,
.uabb-top-row-separator.uabb-tilt-right-separator {
    top: 0;
}

.uabb-bottom-row-separator.uabb-tilt-left-separator,
.uabb-bottom-row-separator.uabb-tilt-right-separator {
    bottom: 0;
}

/**
 *
 *  Clouds Separator
 *  Multi Triangle
 *  Arrow Inward
 *  Arrow Outward
 *
 ***************************************/

.uabb-top-row-separator.uabb-arrow-outward-separator svg,
.uabb-top-row-separator.uabb-arrow-inward-separator svg,
.uabb-top-row-separator.uabb-cloud-separator svg,
.uabb-top-row-separator.uabb-multi-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-multi-triangle svg {
    bottom: -2px;
}

.uabb-row-separator.uabb-round-split:after,
.uabb-row-separator.uabb-round-split:before {
    left: 0;
    width: 50%;
    background: inherit inherit/inherit inherit inherit inherit;
    content: '';
    position: absolute
}


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

.uabb-button-wrap a,
.uabb-button-wrap a:visited {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    text-shadow: none;
}

.fl-builder-content .uabb-button:hover {
    text-decoration: none;
}

.fl-builder-content .uabb-button-width-full .uabb-button {
    display: block;
    text-align: center;
}

.uabb-button-width-custom .uabb-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.fl-builder-content .uabb-button-left {
    text-align: left;
}
.fl-builder-content .uabb-button-center {
    text-align: center;
}
.fl-builder-content .uabb-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";
	}
}


																																																																		
					
					
					
																														
											.fl-node-6j94grs8b1w2 > .fl-col-content.fl-node-content {
							-webkit-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							-moz-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							-o-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
													}
					
					
					
																																																																								
					
					
					
																							
					
					
					
																														
											.fl-node-p0yorqxdja12 > .fl-col-content.fl-node-content {
							-webkit-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							-moz-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							-o-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
													}
					
					
					
																																												
					
					
					
																
											.fl-node-40iflxr2jcs3 > .fl-col-content.fl-node-content {
							-webkit-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							-moz-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							-o-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
													}
					
					
					
																																												
											.fl-node-rxos1t2epi6m > .fl-col-content.fl-node-content {
							-webkit-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							-moz-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							-o-box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
							box-shadow: 0px 0px 7px 0px rgba(68,68,68,0.5);
													}
					
					
					
												
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        
        			.fl-node-0st4edro28na .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-wirtu1pn4d3q .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-2k3wfzr9xgni .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-txjvfzmikp8d .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-henkj3ixum2g .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-q7fu269n18tx .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-s1o0ek2w5vb8 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-0fpenq1wlzxb .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-60wi9xbk3jz5 .fl-row-content {
				min-width: 0px;
			}
		