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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




.fl-node-60f12528a4e05 > .fl-row-content-wrap {
	background-color: #723e98;
}
 .fl-node-60f12528a4e05 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}










.fl-node-60dd2bfa04492 > .fl-row-content-wrap {
	background-color: #4c2a76;
}
.fl-node-60dd2bfa04492 .fl-row-content {
	max-width: 1254px;
}





.fl-node-60dd2dc9ec85f.fl-row-fixed-width, .fl-node-60dd2dc9ec85f .fl-row-fixed-width {
	max-width: 1418px;
}





.fl-node-60dd2f3ab6531 > .fl-row-content-wrap {
	background-color: #f4f4f4;
}
.fl-node-60dd2f3ab6531 .fl-row-content {
	max-width: 1222px;
}
 .fl-node-60dd2f3ab6531 > .fl-row-content-wrap {
	padding-top:100px;
	padding-bottom:100px;
}





.fl-node-60dd324b7b364.fl-row-fixed-width, .fl-node-60dd324b7b364 .fl-row-fixed-width {
	max-width: 1400px;
}





.fl-node-60dd3926bf135 > .fl-row-content-wrap {
	background-color: #7b399d;
}
.fl-node-60dd3926bf135 .fl-row-content {
	max-width: 1334px;
}





.fl-node-60f8b38649b61 > .fl-row-content-wrap {
	background-color: #7b399d;
}
.fl-node-60f8b38649b61 .fl-row-content {
	max-width: 1334px;
}





.fl-node-60f8b3b9cb735 > .fl-row-content-wrap {
	background-color: #7b399d;
}




.fl-node-60dd2bfa0fd12 {
	width: 100%;
}




.fl-node-60dd2dc9f34d4 {
	width: 50%;
}




.fl-node-60dd2f3ac04ae {
	width: 100%;
}




.fl-node-60dd2f434c722 {
	width: 50%;
}




.fl-node-60dd324b85534 {
	width: 100%;
}




.fl-node-60dd3926caaf2 {
	width: 50%;
}




.fl-node-60e278217b46f {
	width: 51.17%;
}




.fl-node-60f12528a4e03 {
	width: 100%;
}




.fl-node-60f8b38669e55 {
	width: 100%;
}




.fl-node-60f8b3b9cb7d2 {
	width: 100%;
}




.fl-node-60dd2dc9f34d8 {
	width: 50%;
}




.fl-node-60dd2f434c725 {
	width: 50%;
}




.fl-node-60dd3926caaf5 {
	width: 50%;
}
.fl-node-60dd3926caaf5 > .fl-col-content {
	background-image: url(https://temp-stg.smartloving.org/wp-content/uploads/2021/09/ring-opt.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-builder-content .fl-node-60dd3926caaf5 > .fl-col-content {
	min-height: 300px;
}




.fl-node-60e3ed96a70db {
	width: 48.83%;
}




.fl-node-a6s3q4kpdygm {
	width: 100%;
}
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-60dd2c29ebdfb, .fl-node-60dd2c29ebdfb .fl-photo {
	text-align: center;
}
 .fl-node-60dd2c29ebdfb > .fl-module-content {
	margin-top:20px;
	margin-bottom:-30px;
}
@media (max-width: 768px) { .fl-node-60dd2c29ebdfb > .fl-module-content { margin-bottom:20px; } }.fl-node-60dd2df662c8f, .fl-node-60dd2df662c8f .fl-photo {
	text-align: center;
}
 .fl-node-60dd2df662c8f > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-60dd2e1332045, .fl-node-60dd2e1332045 .fl-photo {
	text-align: left;
}
.fl-node-60dd2f4e8b8c8, .fl-node-60dd2f4e8b8c8 .fl-photo {
	text-align: center;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
	.fl-builder-content .fl-node-60dd2f9283ad4 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60dd2f9283ad4 .fl-module-content .fl-rich-text * {
		color: #4c2a76;
	}
	.fl-builder-content .fl-node-60dd2f9283ad4 .fl-rich-text, .fl-builder-content .fl-node-60dd2f9283ad4 .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 36px;
}
.fl-node-60dd39a68f8e0, .fl-node-60dd39a68f8e0 .fl-photo {
	text-align: left;
}
	.fl-builder-content .fl-node-60dd3c76b6c72 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60dd3c76b6c72 .fl-module-content .fl-rich-text * {
		color: #4c2a76;
	}
	.fl-builder-content .fl-node-60dd3c76b6c72 .fl-rich-text, .fl-builder-content .fl-node-60dd3c76b6c72 .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 36px;
	text-align: center;
}
/* Generic Styles */
.fl-module-post-grid .fl-sep {
	display: inline-block;
	margin: 0 2px;
}

/* Post Columns */
body.rtl .fl-post-column {
	float: right;
}
.fl-post-column {
	float: left;
}
.fl-post-column .fl-post-grid-post {
	visibility: visible;
}

/* Post Grid */
.fl-post-grid {
	margin: 0 auto;
	position: relative;
}
.fl-post-grid:before,
.fl-post-grid:after {
	display: table;
	content: " ";
}
.fl-post-grid:after {
	clear: both;
}
.fl-post-grid-post {
	background: #fff;
	border: 1px solid #e6e6e6;
	visibility: hidden;
}
.fl-post-grid-post,
.fl-post-feed-post {
	overflow: hidden;
}

.fl-post-grid-image {
	position: relative;
}
.fl-post-grid-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-post-grid-text {
	padding: 20px;
}
.fl-post-grid-title {
	padding-bottom: 7px;
}
body .fl-post-grid-text,
body .fl-post-grid-content p {
	font-size: 14px;
	line-height: 22px;
}
body .fl-post-grid-text > *:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
body .fl-post-grid-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
body .fl-post-grid-text a {
	text-decoration: none;
}
body .fl-post-grid-title {
	font-size: 20px;
	line-height: 26px;
	margin: 0 0 10px;
	padding: 0;
}
body .fl-post-grid-meta {
	font-size: 14px;
	padding-bottom: 10px;
}
.fl-post-feed-comments .fa {
	vertical-align: text-top;
}
.fl-post-grid-more {
	margin-top: 10px;
	display: inline-block;
}
.fl-post-grid #infscr-loading {
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 0;
	position: absolute;
	text-align: center;
	width: 100%;
}

/* Post Gallery */
.fl-post-gallery-post {
	overflow: hidden;
	position: relative;
	visibility: hidden;
}
.fl-post-gallery-link {
	display: block;
	height: 100%;
}
.fl-post-gallery-img {
	position: relative;
	z-index: 1;
}
.fl-post-gallery-img-horiz {
	height: 100% !important;
	max-height: 100% !important;
	max-width: none !important;
	width: auto !important;
}
.fl-post-gallery-img-vert {
	height: auto !important;
	max-height: none !important;
	max-width: 100% !important;
	width: 100% !important;
}
.fl-post-gallery-text-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	text-align: center;
	opacity: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}

.fl-post-gallery-link:hover .fl-post-gallery-text-wrap {
	opacity: 1;
}

.fl-post-gallery-text {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}

/* Gallery Transitions */
.fl-post-gallery-text,
.fl-post-gallery-link:hover .fl-post-gallery-text{
	-webkit-transform: translate3d(-50%,-50%,0);
	   -moz-transform: translate3d(-50%,-50%,0);
	    -ms-transform: translate(-50%,-50%);
			transform: translate3d(-50%,-50%,0);
}

/* Gallery Icons */
.fl-post-gallery-text .fl-gallery-icon{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.fl-post-gallery-text .fl-gallery-icon i,
.fl-post-gallery-text .fl-gallery-icon i:before{
	width: 24px;
	height: 24px;
	font-size: 24px;
}

.fl-post-gallery-text h2.fl-post-gallery-title {
	font-size: 22px;
	margin: 0 0 5px 0;
}
.fl-post-gallery #infscr-loading {
	clear: both;
	padding: 40px 0;
	text-align: center;
	width: 100%;
}

/* Post Feed */
.fl-post-feed-post {
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 40px;
}
.fl-post-feed-post:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.fl-post-feed-header {
	margin-bottom: 20px;
}
.fl-post-feed-header a {
	text-decoration: none;
}
body h2.fl-post-feed-title {
	margin: 0 0 10px;
	padding: 0;
	clear: none;
}
body .fl-post-feed-meta {
	font-size: 14px;
	margin-bottom: 5px;
}
.fl-post-feed-meta .fl-sep {
	margin: 0 3px;
}
.fl-post-feed-image {
	margin-bottom: 25px;
	position: relative;
}
.fl-post-feed-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image {
	float: left;
	margin-bottom: 0;
	width: 33%;
}
.fl-post-feed-image-beside .fl-post-feed-text,
.fl-post-feed-image-beside-content .fl-post-feed-text {
	margin-left: 37%;
}
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image {
	float: right;
	margin-bottom: 0;
	width: 33%;
}
.fl-post-feed-image-beside-right .fl-post-feed-text,
.fl-post-feed-image-beside-content-right .fl-post-feed-text {
	margin-right: 37%;
}
.fl-post-feed-content a {
	text-decoration: none;
}
.fl-post-feed-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
.fl-post-feed-more {
	margin-top: 15px;
	display: inline-block;
}
.fl-post-feed #infscr-loading {
	padding: 40px 0;
	text-align: center;
	width: 100%;
}

/* No posts message */
.fl-post-grid-empty {
}

li.fl-post-feed-post,li.fl-post-gallery-post, li.fl-post-grid-post {
	list-style: none;
}
@media (max-width: 768px) { /* Post Feed */
.fl-post-feed-post.fl-post-feed-image-beside,
.fl-post-feed-post.fl-post-feed-image-beside-content,
.fl-post-feed-post.fl-post-feed-image-beside-right,
.fl-post-feed-post.fl-post-feed-image-beside-content-right {
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside .fl-post-feed-image img,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image img,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image img,
.fl-post-feed-image-beside-content-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image img {
	float: none;
	width: 100% !important;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image {
	margin-bottom: 20px;
}
.fl-post-feed-image-beside .fl-post-feed-text,
.fl-post-feed-image-beside-content .fl-post-feed-text,
.fl-post-feed-image-beside-right .fl-post-feed-text,
.fl-post-feed-image-beside-content-right .fl-post-feed-text {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
 }.fl-node-60e3ed909d893 .fl-post-feed-post {
	margin-bottom: 0px;
}
.fl-node-60e3ed909d893 .fl-post-feed-post:last-child {
	margin-bottom: 0 !important;
}
 .fl-node-60e3ed909d893 > .fl-module-content {
	margin-top:50px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:10px;
}
@media (max-width: 768px) { .fl-node-60e3ed909d893 > .fl-module-content { margin-top:20px; } }/* Wrappers */
body.rtl .fl-module-content-slider .bx-viewport {
	direction: ltr;
}
.fl-module-content-slider .bx-wrapper {
	margin: 0 auto 40px;
}
.fl-content-slider {
	position: relative;
}
.fl-content-slider .fl-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	visibility: hidden;
}
.fl-content-slider-wrapper .fl-slide:first-child,
.fl-content-slider-loaded .fl-slide {
	position: relative;
	visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

/* Slider controls fixes */
.bx-wrapper .bx-controls:not(.bx-has-pager) {
	height: 30px;
}
.bx-wrapper .bx-controls:not(.bx-has-pager) .bx-controls-auto {
	bottom: 0;
}
@media (max-width: 768px) { /* Wrapper */
.fl-content-slider,
.fl-content-slider .fl-slide {
	min-height: 0 !important;
}

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

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

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

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

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

/* Buttons */
.fl-module-content-slider .fl-slide a.fl-button {
	padding: 10px 20px;
}
 }.fl-node-60f12528a4e04 .fl-content-slider-wrapper {
	opacity: 0;
}
.fl-node-60f12528a4e04 .fl-content-slider,
.fl-node-60f12528a4e04 .fl-slide {
	min-height: 600px;
}
.fl-node-60f12528a4e04 .fl-slide-foreground {
	margin: 0 auto;
	max-width: 1100px;
}
.fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-bg-photo{   background-image: url("https://temp-stg.smartloving.org/wp-content/uploads/2021/09/hero-engaged-opt.jpg");}.fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-content { margin-right: 60px; margin-left: 60px; margin-top: 60px; margin-bottom: 60px; }@media (max-width: 768px) { .fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-content { background-color: transparent; } }.fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-bg-photo{   background-image: url("https://temp-stg.smartloving.org/wp-content/uploads/2021/09/Sponsor-Page-1-opt.png");}.fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-content { margin-right: 60px; margin-left: 60px; margin-top: 60px; margin-bottom: 60px; }@media (max-width: 768px) { .fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-content { background-color: transparent; } }.fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-bg-photo{   background-image: url("https://temp-stg.smartloving.org/wp-content/uploads/2021/09/hero-fertility-opt.jpg");}.fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-content { margin-right: 60px; margin-left: 60px; margin-top: 60px; margin-bottom: 60px; }@media (max-width: 768px) { .fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-content { background-color: transparent; } }.fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-bg-photo{   background-image: url("https://temp-stg.smartloving.org/wp-content/uploads/2021/09/theology-slider.jpg");}.fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-content { margin-right: 60px; margin-left: 60px; margin-top: 60px; margin-bottom: 60px; }@media (max-width: 768px) { .fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-content { background-color: transparent; } }.fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-bg-photo{   background-image: url("https://temp-stg.smartloving.org/wp-content/uploads/2021/09/hero-breakthrough-opt.jpg");}.fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-content { margin-right: 60px; margin-left: 60px; margin-top: 60px; margin-bottom: 60px; }@media (max-width: 768px) { .fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-content { background-color: transparent; } }.fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-bg-photo{   background-image: url("https://temp-stg.smartloving.org/wp-content/uploads/2021/09/hero-marriage-kit-opt.jpg");}.fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-content { margin-right: 60px; margin-left: 60px; margin-top: 60px; margin-bottom: 60px; }@media (max-width: 768px) { .fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-content { background-color: transparent; } }.fl-node-60f12528a4e04 .fl-slide .fl-slide-title, .fl-node-60f12528a4e04 .fl-slide .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide .fl-slide-text * {
	color: #ffffff;
}
.fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-builder-content .fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-content {
	padding-top: 60px;
	padding-right: 60px;
	padding-bottom: 60px;
	padding-left: 60px;
}
.fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-title {
	color: #ffffff;
	font-size: 55px;
}
.fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-text * {
	color: #ffffff;
}
.fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-builder-content .fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-content {
	padding-top: 60px;
	padding-right: 60px;
	padding-bottom: 60px;
	padding-left: 60px;
}
.fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-title {
	color: #ffffff;
	font-size: 55px;
}
.fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-text * {
	color: #ffffff;
}
.fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-builder-content .fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-content {
	padding-top: 60px;
	padding-right: 60px;
	padding-bottom: 60px;
	padding-left: 60px;
}
.fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-title {
	color: #ffffff;
	font-size: 55px;
}
.fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-text * {
	color: #ffffff;
}
.fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-builder-content .fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-content {
	padding-top: 60px;
	padding-right: 60px;
	padding-bottom: 60px;
	padding-left: 60px;
}
.fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-title {
	color: #ffffff;
	font-size: 55px;
}
.fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-text * {
	color: #ffffff;
}
.fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-builder-content .fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-content {
	padding-top: 60px;
	padding-right: 60px;
	padding-bottom: 60px;
	padding-left: 60px;
}
.fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-title {
	color: #ffffff;
	font-size: 55px;
}
.fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-text * {
	color: #ffffff;
}
.fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-builder-content .fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-content {
	padding-top: 60px;
	padding-right: 60px;
	padding-bottom: 60px;
	padding-left: 60px;
}
.fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-title {
	color: #ffffff;
	font-size: 55px;
}
.fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-text * {
	color: #ffffff;
}
@media(max-width: 768px) {
	.fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-title {
		color: #ffffff;
	}
	.fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-text * {
		color: #ffffff;
	}
	.fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-title {
		color: #ffffff;
	}
	.fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-text * {
		color: #ffffff;
	}
	.fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-title {
		color: #ffffff;
	}
	.fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-text * {
		color: #ffffff;
	}
	.fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-title {
		color: #ffffff;
	}
	.fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-text * {
		color: #ffffff;
	}
	.fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-title {
		color: #ffffff;
	}
	.fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-text * {
		color: #ffffff;
	}
	.fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-title {
		color: #ffffff;
	}
	.fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-text, .fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-text * {
		color: #ffffff;
	}
}
@media(min-width:768px) {
	.fl-node-60f12528a4e04 .fl-slide-0 .fl-slide-content-wrap {
		width: 100%;
	}
	.fl-node-60f12528a4e04 .fl-slide-1 .fl-slide-content-wrap {
		width: 100%;
	}
	.fl-node-60f12528a4e04 .fl-slide-2 .fl-slide-content-wrap {
		width: 100%;
	}
	.fl-node-60f12528a4e04 .fl-slide-3 .fl-slide-content-wrap {
		width: 100%;
	}
	.fl-node-60f12528a4e04 .fl-slide-4 .fl-slide-content-wrap {
		width: 100%;
	}
	.fl-node-60f12528a4e04 .fl-slide-5 .fl-slide-content-wrap {
		width: 100%;
	}
}
 .fl-node-60f12528a4e04 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}

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

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


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

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


	.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-61414f39dc10b h4.fl-heading a,
.fl-row .fl-col .fl-node-61414f39dc10b h4.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-61414f39dc10b h4.fl-heading .fl-heading-text *,
.fl-node-61414f39dc10b h4.fl-heading .fl-heading-text {
	color: #582b7f;
}
 .fl-node-61414f39dc10b > .fl-module-content {
	margin-bottom:0px;
	margin-left:20px;
}
.uabb-module-testimonials .bx-wrapper {
	margin: 0 auto 35px;
}

.uabb-testimonials-wrap {
	position: relative;
}

.uabb-testimonials-wrap .uabb-testimonial {
	position: absolute;
	top: 0;
	visibility: hidden;
}

.uabb-testimonials-wrap .uabb-testimonial:first-child,
.uabb-testimonials-loaded .uabb-testimonial {
	position: relative;
	visibility: visible;
}

.uabb-testimonials-wrap .uabb-slider-prev .fa,
.uabb-testimonials-wrap .uabb-slider-next .fa,
.uabb-testimonials-wrap .uabb-slider-prev i,
.uabb-testimonials-wrap .uabb-slider-next i {
	-webkit-transition: opacity .2s;
	-moz-transition: opacity .2s;
	-o-transition: opacity .2s;
	-ms-transition: opacity .2s;
	transition: opacity .2s;
	font-size: 14px;
	height: 25px;
	width: 25px;
	line-height: 25px;
}

.uabb-testimonials-wrap .fa:hover {
	opacity: 1;
}

.uabb-testimonials.wide {
	text-align: center;
}

.uabb-testimonials-wrap.wide .uabb-slider-next,
.uabb-testimonials-wrap.wide .uabb-slider-prev {
	position: absolute;
	top: 50%;
	margin-top: -10px;
	right: 0;
}

.uabb-testimonials-wrap.wide .far {
	font-size: 20px;
	position: relative;
	z-index: 1;
}
.uabb-testimonials-wrap.compact-wide .far {
	font-size: 20px;
	position: relative;
	z-index: 1;
}

.uabb-testimonials-wrap.wide .uabb-slider-prev {
	left: 0!important;
}

.uabb-testimonial-author .uabb-testimonial-author-name {
	margin: 0;
	padding: 0;
}

.uabb-slider-prev {
	left: -5px;
	text-align: center;
}

.uabb-slider-next {
	right: -5px;
	text-align: center;
}

.uabb-slider-next,
.uabb-slider-prev {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.uabb-slider-prev .fa:before,
.uabb-slider-next .fa:before,
.uabb-slider-prev i:before,
.uabb-slider-next i:before {
	width: 26px;
	display: inline-block;
}

.uabb-testimonials.uabb-testimonial-left .uabb-testimonial-photo.uabb-testimonial-left .uabb-imgicon-wrap {
	margin-right: 20px;
}

.uabb-testimonials.uabb-testimonial-right .uabb-testimonial-photo.uabb-testimonial-right .uabb-imgicon-wrap {
	margin-left: 20px;
}

.uabb-testimonials.uabb-testimonial-right {
	direction: rtl;
}

.uabb-testimonials.uabb-testimonial-right .uabb-testimonial-info.uabb-testimonial-right {
	direction: ltr;
}

.uabb-testimonial-info.uabb-testimonial-right {
	text-align: right;
}

.uabb-testimonial-info.uabb-testimonial-top {
	text-align: center;
	display: block;
}

.uabb-testimonial-photo.uabb-testimonial-top {
	text-align: center;
	margin-bottom: 20px;
}

.uabb-testimonial-info {
	display: table-cell;
	vertical-align: top;
}

.uabb-testimonials .uabb-testimonial {
	display: table;
	width: 100%;
}

.uabb-testimonial .uabb-icon i {
	float: none;
}

.uabb-testimonials.slider-no,
.uabb-testimonials.box {
	display: block;
	position: relative;
}

.uabb-testimonials.slider-no .uabb-testimonial,
.uabb-testimonials.box .uabb-testimonial {
	display: table;
}

.testimonial-arrow-down {
	border-right: 26px solid transparent;
	left: 22%;
	position: absolute;
	top: 100%;
}

.uabb-testimonial .uabb-photo-content {
	overflow: hidden;
}

.uabb-testimonial-info .uabb-testimonial-author-description * {
	margin: 0 auto;
}

.uabb-testimonials-wrap .bx-prev i,
.uabb-testimonials-wrap .bx-next i {
	box-sizing: content-box;
}

.uabb-testimonial-info .uabb-testimonial-author-description p {
	margin-bottom: 15px;
}

.uabb-testimonial-info .uabb-testimonial-author-description p:last-of-type {
	margin: 0 auto;
}

.uabb-testimonial .uabb-rating {
	line-height: normal;
}

.uabb-testimonial .uabb-rating__wrap {
	display: inline-block;
}

.uabb-testimonial .uabb-rating__wrap:after {
	content: "";
	display: table;
	clear: both;
}

.uabb-testimonial .uabb-rating .uabb-rating__ico {
	/* float: right; */
	padding-left: 2px;
	color: #FFB300;
}

.uabb-testimonial .uabb-rating__ico:last-child {
	padding-left: 0;
}

.uabb-testimonial .uabb-rating__input {
	display: none;
}

.uabb-testimonial .filled-star + .uabb-rating__ico:before{
	content: "\f005";
	font-weight: 900;
	font-size: 20px;
}

.uabb-rating i.uabb-rating__ico:before {
    position: relative !important;
}

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

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

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

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

.uabb-testimonials.uabb-testimonial-left .uabb-testimonial-photo.uabb-testimonial-left,
.uabb-testimonials.uabb-testimonial-right .uabb-testimonial-photo.uabb-testimonial-right {
	display: table-cell;
	vertical-align: top;
	text-align: center;
}
/*Testimonials Star Rating Text*/
.uabb-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Default variables */

	/* Change navigation dot color */
		.fl-node-60dd2c784b12a .bx-pager.bx-default-pager a,
	.fl-node-60dd2c784b12a .bx-pager.bx-default-pager a.active {
		background: #ffffff;
		opacity: 1;
	}
		.fl-node-60dd2c784b12a .bx-pager.bx-default-pager a {
		opacity: 0.2;
	}


/* Style Navigations */

	

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

	
			@media ( max-width: 992px ) {
			.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial0 .uabb-imgicon-wrap {
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial0 .uabb-imgicon-wrap {
							}
		}
	.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial0 .uabb-image .uabb-photo-img {
	width: 75px;
}
		.fl-node-60dd2c784b12a .uabb-testimonial0 .uabb-testimonial-info {
			width: 100%;
		}
					@media ( max-width: 768px ) {
							.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial0 .uabb-icon-wrap .uabb-icon i,
				.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial0 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
		
	/* Global Alignment Css */
	.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-imgicon-wrap {
					text-align: center;
			}

	
		/* Icon Css */
		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-icon-wrap .uabb-icon i,
		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-icon-wrap .uabb-icon i:before {

			color: #fff			;
			font-size: 37.5px;
			height: auto;
			width: auto;
							background: #723e98;
								line-height:
					75px;
				height:
					75px;				width:
					75px;				text-align: center;
				display: flex;
				align-items: center;
				justify-content: center;
					
						
			/* Gradient Style */
					}

		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
														

			color: ;

								}

		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
			.fl-node-60dd2c784b12a .uabb-testimonial1 .uabb-testimonial-info {
			width: 100%;
		}
					@media ( max-width: 768px ) {
							.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-icon-wrap .uabb-icon i,
				.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial1 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
		
			@media ( max-width: 992px ) {
			.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial2 .uabb-imgicon-wrap {
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial2 .uabb-imgicon-wrap {
							}
		}
			.fl-node-60dd2c784b12a .uabb-testimonial2 .uabb-testimonial-info {
			width: 100%;
		}
					@media ( max-width: 768px ) {
							.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial2 .uabb-icon-wrap .uabb-icon i,
				.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial2 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
		
			@media ( max-width: 992px ) {
			.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial3 .uabb-imgicon-wrap {
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial3 .uabb-imgicon-wrap {
							}
		}
			.fl-node-60dd2c784b12a .uabb-testimonial3 .uabb-testimonial-info {
			width: 100%;
		}
					@media ( max-width: 768px ) {
							.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i,
				.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
		
	/* Global Alignment Css */
	.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-imgicon-wrap {
					text-align: center;
			}

	
		/* Icon Css */
		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-icon-wrap .uabb-icon i,
		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-icon-wrap .uabb-icon i:before {

			color: #fff			;
			font-size: 37.5px;
			height: auto;
			width: auto;
							background: #723e98;
								line-height:
					75px;
				height:
					75px;				width:
					75px;				text-align: center;
				display: flex;
				align-items: center;
				justify-content: center;
					
						
			/* Gradient Style */
					}

		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
														

			color: ;

								}

		.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
			.fl-node-60dd2c784b12a .uabb-testimonial4 .uabb-testimonial-info {
			width: 100%;
		}
					@media ( max-width: 768px ) {
							.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-icon-wrap .uabb-icon i,
				.fl-node-60dd2c784b12a .uabb-testimonial.uabb-testimonial4 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
			.fl-node-60dd2c784b12a .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #723e98;
			}


/* Box Layout starts Here */



/* Typography */
.fl-node-60dd2c784b12a .uabb-testimonial-info .testimonial-author-name60dd2c784b12a {
			color: #e0ac23;
			margin-bottom: 5px;
}
.fl-node-60dd2c784b12a .uabb-testimonial-info .testimonial-author-designation60dd2c784b12a {
		margin-top: 5px;
	}
.fl-node-60dd2c784b12a .uabb-testimonial-info .testimonial-author-description60dd2c784b12a {
			color: #ffffff;
		padding-top: 10px;
			padding-bottom: 10px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-60dd2c784b12a .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-60dd2c784b12a .uabb-icon-wrap .uabb-icon i,
			.fl-node-60dd2c784b12a .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 768px ) {
					.fl-node-60dd2c784b12a .uabb-icon-wrap .uabb-icon i,
			.fl-node-60dd2c784b12a .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-60dd2c784b12a .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-60dd2c784b12a .uabb-testimonial-info .testimonial-author-name60dd2c784b12a  {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 35px;
	text-transform: uppercase;
}
.fl-node-60dd2c784b12a .uabb-testimonial-info .testimonial-author-description60dd2c784b12a {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 26px;
	line-height: 32px;
	text-align: center;
}
 .fl-node-60dd2c784b12a > .fl-module-content {
	margin-top:0px;
}
	.fl-builder-content .fl-node-60dd2e25dd0d9 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60dd2e25dd0d9 .fl-module-content .fl-rich-text * {
		color: #4c2a76;
	}
	.fl-builder-content .fl-node-60dd2e25dd0d9 .fl-rich-text, .fl-builder-content .fl-node-60dd2e25dd0d9 .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 26px;
}
 .fl-node-60dd2e25dd0d9 > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
	.fl-builder-content .fl-node-60dd2fd1b7374 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60dd2fd1b7374 .fl-module-content .fl-rich-text * {
		color: #4c2a76;
	}
	.fl-builder-content .fl-node-60dd2fd1b7374 .fl-rich-text, .fl-builder-content .fl-node-60dd2fd1b7374 .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 400;
	font-size: 25px;
	text-transform: uppercase;
}
 .fl-node-60dd2fd1b7374 > .fl-module-content {
	margin-top:-20px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-60dd2fd1b7374 > .fl-module-content { margin-top:20px; } }	.fl-builder-content .fl-node-60dd39816949c .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60dd39816949c .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-60dd39816949c .fl-rich-text, .fl-builder-content .fl-node-60dd39816949c .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 36px;
	text-transform: capitalize;
}
 .fl-node-60dd39816949c > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
.fl-node-60de5f20a8f2c .uabb-separator-parent {
	line-height: 0;
	text-align: center;
}

.fl-node-60de5f20a8f2c .uabb-image-outter-wrap {
	width: 50px;
}

.fl-node-60de5f20a8f2c .uabb-separator {
	border-top:1px solid rgba(255,255,255,0.19);
	width: 100%;
	display: inline-block;
}

.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-60f9cc6cbea83 .uabb-cl-wrap .uabb-creative-link a {
	}


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

.fl-node-60f9cc6cbea83 .uabb-cl-wrap .uabb-cl-ul {
	text-align: left;
}

/* Style 2 */

.fl-node-60f9cc6cbea83 .uabb-cl-style2 p a,
.fl-node-60f9cc6cbea83 .uabb-cl-style2 div a,
.fl-node-60f9cc6cbea83 .uabb-cl-style2 span a {
	color:
	#333333;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style2 a span {
	padding: 5px 15px;
		background: #723e98;}
.fl-node-60f9cc6cbea83 .uabb-cl-style2 a span:before {
		background: #723e98;	padding: inherit;
}

/* Style 3 */
.fl-node-60f9cc6cbea83 .uabb-cl-style3 a::after {
		background: #723e98;
	height:1px;
}

/* Style 4 */
.fl-node-60f9cc6cbea83 .uabb-cl-style4 a::after {
		background: #723e98;
	height:1px;
}

/* Style 7 */

.fl-node-60f9cc6cbea83 .uabb-cl-style7 a::before,
.fl-node-60f9cc6cbea83 .uabb-cl-style7 a::after {
	height: 1px;
		background: #723e98;
}


/* Style 8 */

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

.fl-node-60f9cc6cbea83 .uabb-cl-style8 a::after {
	border-color:
	#333333;
}

/* Style 9 */
.fl-node-60f9cc6cbea83 .uabb-cl-style9 a span {
	;
		background: #723e98;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style9 p a,
.fl-node-60f9cc6cbea83 .uabb-cl-style9 div a,
.fl-node-60f9cc6cbea83 .uabb-cl-style9 span a {
	color:
	#333333;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style9 a::before {
	color:#e0ac23;
		background: #723e98;
}

/* Style 10 */

.fl-node-60f9cc6cbea83 .uabb-cl-style10 a {
	border-top-width:1px;
	border-top-style:solid;
	border-top-color:
	#333333;
	;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style10 a::before {
	border-bottom-width:1px;
	border-bottom-style:solid;
	border-bottom-color:
	#333333;
	;
}

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

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

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

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


/* Style 11 */

.fl-node-60f9cc6cbea83 .uabb-cl-style11 a::before,
.fl-node-60f9cc6cbea83 .uabb-cl-style11 a::after {
	border-color:
	#333333;
}

/* Style 12 */

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

/* Style 13 */

.fl-node-60f9cc6cbea83 .uabb-cl-style13 a::before,
.fl-node-60f9cc6cbea83 .uabb-cl-style13 a::after {
	height: 1px;
		background: #723e98;
}

/* Style 14 */

.fl-node-60f9cc6cbea83 .uabb-cl-style14 a::before {
	;
	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-60f9cc6cbea83 .uabb-cl-style14 .uabb-cl-heading,
.fl-node-60f9cc6cbea83 .uabb-cl-style14 .uabb-cl-heading a,
.fl-node-60f9cc6cbea83 .uabb-cl-style14 .uabb-cl-heading a:visited,
.fl-node-60f9cc6cbea83 .uabb-cl-style14 .uabb-cl-heading a *,
.fl-node-60f9cc6cbea83 .uabb-cl-style14 .uabb-cl-heading a:visited *​ {
	color:#e0ac23;
}

/* Style 15 */

.fl-node-60f9cc6cbea83 .uabb-cl-style15 a::before {
	color:#e0ac23;
}

/* Style 16 */

.fl-node-60f9cc6cbea83 .uabb-cl-style16 a::after {
		background: #723e98;
	height:1px;
}

/* Style 17 */

.fl-node-60f9cc6cbea83 .uabb-cl-style17 a {
	;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style17 a::after,
.fl-node-60f9cc6cbea83 .uabb-cl-style17 a::before {
	height: 1px;
		background: #723e98;
}

/* Style 18 */

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

.fl-node-60f9cc6cbea83 .uabb-cl-style18 p a,
.fl-node-60f9cc6cbea83 .uabb-cl-style18 div a,
.fl-node-60f9cc6cbea83 .uabb-cl-style18 span a {
	color:
	#333333;
}


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

.fl-node-60f9cc6cbea83 .uabb-cl-style18 a span {
		background: #723e98;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style18 a:hover span::before,
.fl-node-60f9cc6cbea83 .uabb-cl-style18 a:focus span::before {
		background: #723e98;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style18 a span::before,
.fl-node-60f9cc6cbea83 .uabb-cl-style18 a:hover span,
.fl-node-60f9cc6cbea83 .uabb-cl-style18 a:focus span {
		background: #400c66;
}

/* Style 19 */


.fl-node-60f9cc6cbea83 .uabb-cl-style19 a span {
		background: #723e98;
	box-shadow: inset 0 3px #400c66;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style19 p a,
.fl-node-60f9cc6cbea83 .uabb-cl-style19 div a,
.fl-node-60f9cc6cbea83 .uabb-cl-style19 span a {
	color:
	#333333;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style19 a span::before {
		background: #723e98;
	color:#e0ac23;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style19 a:hover span,
.fl-node-60f9cc6cbea83 .uabb-cl-style19 a:focus span {
	background: #400c66;
}

/* Style 20 */

.fl-node-60f9cc6cbea83 .uabb-cl-style20 a:hover,
.fl-node-60f9cc6cbea83 .uabb-cl-style20 a:focus {
	color:#e0ac23;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style20 a {
	;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}

.fl-node-60f9cc6cbea83 .uabb-cl-style20 a::before,
.fl-node-60f9cc6cbea83 .uabb-cl-style20 a::after {
	height: 1px;
		background: #723e98;
}

/* Style Simple */
.fl-node-60f9cc6cbea83 .uabb-cl-wrap .uabb-creative-link.uabb-cl-simple a {
	;
}

.fl-node-60f9cc6cbea83 .uabb-cl-wrap .uabb-creative-link.uabb-cl-simple a:hover {
	color:#e0ac23;
}

		@media ( max-width: 768px ) {

			
							.fl-node-60f9cc6cbea83 .uabb-cl-wrap .uabb-cl-ul li {
					margin-left: 0;
					margin-right: 0;
					display: block;
				}
					}
.fl-node-60f9cc6cbea83 .uabb-cl-wrap .uabb-cl-heading a {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
}
 .fl-node-60f9cc6cbea83 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:10px;
}

.fl-node-61414ca66cd42 .fl-post-grid {
	margin-left: -30px;
	margin-right: -30px;
}
.fl-node-61414ca66cd42 .fl-post-column {
	padding-bottom: 60px;
	padding-left: 30px;
	padding-right: 30px;
	width: 100%;
}
.fl-node-61414ca66cd42 .fl-post-column:nth-child(1n + 1) {
	clear: both;
}
		@media screen and (max-width: 1200px) {
		.fl-node-61414ca66cd42 .fl-post-column {
			width: 100%;
		}
		.fl-node-61414ca66cd42 .fl-post-column:nth-child(1n + 1) {
			clear: none;
		}
		.fl-node-61414ca66cd42 .fl-post-column:nth-child(1n + 1) {
			clear: both;
		}
	}
			@media screen and (max-width: 992px) {
		.fl-node-61414ca66cd42 .fl-post-column {
			width: 50%;
		}
		.fl-node-61414ca66cd42 .fl-post-column:nth-child(1n + 1) {
			clear: none;
		}
		.fl-node-61414ca66cd42 .fl-post-column:nth-child(2n + 1) {
			clear: both;
		}
	}
			@media screen and (max-width: 768px) {
		.fl-node-61414ca66cd42 .fl-post-column {
			width: 100%;
		}
		.fl-node-61414ca66cd42 .fl-post-column:nth-child(2n + 1) {
			clear: none;
		}
		.fl-node-61414ca66cd42 .fl-post-column:nth-child(1n + 1) {
			clear: both;
		}
	}
	
.fl-node-61414ca66cd42 .fl-post-grid-post {

	
	}

.fl-node-61414ca66cd42 .fl-post-grid-text {
	padding: 20px;
}








.fl-row .fl-col .fl-node-1xqrmdi3po7e h2.fl-heading a,
.fl-row .fl-col .fl-node-1xqrmdi3po7e h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-1xqrmdi3po7e h2.fl-heading .fl-heading-text *,
.fl-node-1xqrmdi3po7e h2.fl-heading .fl-heading-text {
	color: #723e98;
}
.fl-node-1xqrmdi3po7e.fl-module-heading .fl-heading {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 31px;
	text-align: center;
}
.uabb-blog-reordered .uabb-blog-post-content .uabb-blog-post-section {
	margin-bottom: 15px;
	padding: 0;
}

.uabb-blog-reordered .uabb-blog-post-content .uabb-blog-post-section:last-child {
	margin-bottom: 0;
}

.uabb-blog-posts-carousel .uabb-blog-post-inner-wrap.uabb-thumbnail-position-left,
.uabb-blog-posts-carousel .uabb-blog-post-inner-wrap.uabb-thumbnail-position-right {
	display: inline-block;
	width: 100%;
}

.uabb-thumbnail-position-left .uabb-post-thumbnail.uabb-crop-thumbnail img {
	margin-left: 0;
}

.uabb-blog-posts #infscr-loading {
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
	margin: 0 auto;
}

.uabb-blog-posts #infscr-loading img {
	margin-top: 10px;
	width: 10%;
}

.uabb-blog-posts-masonary #infscr-loading,
.uabb-blog-posts-grid #infscr-loading {
	bottom: -40px;
	position: absolute;
}

.uabb-post-thumbnail > a,
.uabb-post-thumbnail > a:hover,
.uabb-post-thumbnail > a:focus,
.uabb-post-thumbnail > a:active {
	text-decoration: none;
	text-decoration: none;
}

.uabb-blog-posts-col-8 {
	width: 12.5%;
}

.uabb-blog-posts-col-7 {
	width: 14.28%;
}

.uabb-blog-posts-col-6 {
	width: 16.66%;
}

.uabb-blog-posts-col-5 {
	width: 20%;
}

.uabb-blog-posts-col-4 {
	width: 25%;
}

.uabb-blog-posts-col-3 {
	width: 33.33%;
}

.uabb-blog-posts-col-2 {
	width: 50%;
}

.uabb-next-right-arrow {
	font-style: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.uabb-posted-on {
	width: 2.2em;
	height: 2.2em;
	position: absolute;
	top: 0;
	padding: .16em;
	margin: 0;
}

.uabb-posted-on span {
	display: block;
	width: 100%;
	text-align: center;
}

.uabb-post-thumbnail.uabb-crop-thumbnail img {
	width: auto;
	margin: 0 auto;
	max-width: 100%;
}

.uabb-next-date-meta .uabb-posted-on {
	margin: 0;
	z-index: 1;
}

.uabb-posted-on .uabb-date-month,
.uabb-posted-on .uabb-date-year {
	font-weight: 400;
	font-size: .31em;
	line-height: 1.45em;
}

.uabb-posted-on .uabb-date-day {
	font-size: 1em;
	line-height: 1em;
}

.uabb-blog-posts .uabb-post-wrapper {
	display: inline-block;
	vertical-align: top;
	float: left;
	outline: none;
	margin-bottom: 30px;
}

.uabb-post-wrapper {
	border-top: 0 solid #e5e5e5;
	border-radius: 0;
	position: relative;
	z-index: 1;
}

.uabb-post-wrapper .uabb-post-thumbnail {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
	text-align: center;
	position: relative;
}

.uabb-post-wrapper .uabb-blog-post-content {
	opacity: 1;
	position: relative;
	z-index: 10;
	overflow: hidden;
}

.uabb-post-wrapper .uabb-vertical-wrap {
	display: table;
	width: 100%;
	height: 100%;
}

.uabb-post-wrapper .uabb-vertical {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	width: 100%;
	height: 100%;
}

.uabb-post-wrapper .uabb-icon-anchor {
	display: inline-block;
	margin: .75em;
	vertical-align: middle;
	outline: none;
	text-decoration: none;
}

.uabb-post-wrapper .uabb-text-overflow {
	text-align: left;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin: 0;
	padding: 0;
}

.uabb-post-wrapper .uabb-post-heading {
	margin: 0;
	padding: 0;
}

.uabb-post-wrapper .uabb-post-heading a {
	font: inherit;
	color: inherit;
}

.uabb-blog-posts-description {
	padding-top: 1.5em;
	word-wrap: break-word;
}

.uabb-blog-post-content .uabb-button-wrap,
.uabb-blog-post-content .uabb-read-more-text {
	padding-top: 1.5em;
	display: block;
}

.uabb-read-more {
	border-radius: 0;
	margin-bottom: 6px;
	text-transform: uppercase;
}

.uabb-blog-post-content .uabb-post-meta {
	word-wrap: break-word;
	padding-top: 5px;
	text-transform: none;
}

.uabb-post-date {
	font: inherit;
	-webkit-transition: inherit;
	transition: inherit;
}

.uabb-blog-posts .uabb-post-thumbnail img {
	display: block;
	border-radius: 0;
}

.uabb-blog-posts ul.slick-dots {
	display: block;
	position: relative;
	margin: 0;
	left: 0;
	width: 100%;
	text-align: center;
}

.uabb-blog-posts ul.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	cursor: pointer;
}

.uabb-blog-posts ul.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}

.uabb-blog-posts ul.slick-dots li button:before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 6px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '\f111';
	text-align: center;
	opacity: .25;
	color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.uabb-blog-posts .slick-prev i,
.uabb-blog-posts .slick-next i,
.uabb-blog-posts .slick-prev i:hover,
.uabb-blog-posts .slick-next i:hover,
.uabb-blog-posts .slick-prev i:focus,
.uabb-blog-posts .slick-next i:focus {
	font-size: 20px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	box-sizing: content-box;
}

.uabb-blog-posts .slick-prev,
.uabb-blog-posts .slick-next,
.uabb-blog-posts .slick-prev:hover,
.uabb-blog-posts .slick-prev:focus,
.uabb-blog-posts .slick-next:hover,
.uabb-blog-posts .slick-next:focus {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: auto;
	height: auto;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}

.uabb-blog-posts .slick-prev:hover:before,
.uabb-blog-posts .slick-prev:focus:before,
.uabb-blog-posts .slick-next:hover:before,
.uabb-blog-posts .slick-next:focus:before {
	opacity: 1;
}

.uabb-blog-posts .slick-prev.slick-disabled:before,
.uabb-blog-posts .slick-next.slick-disabled:before {
	opacity: .25;
}

.uabb-blog-posts .slick-prev:before,
.uabb-blog-posts .slick-next:before {
	content: '';
	font-size: 0;
	line-height: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.uabb-blog-posts .slick-prev {
	left: -45px;
	z-index: 1;
}

[dir='rtl'] .uabb-blog-posts .slick-prev {
	right: -45px;
	z-index: 1;
	left: auto;
}

.uabb-blog-posts .slick-next {
	right: -45px;
	z-index: 1;
}

[dir='rtl'] .uabb-blog-posts .slick-next {
	right: auto;
	left: -45px;
	z-index: 1;
}

.uabb-blog-posts.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.uabb-blog-posts .slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.uabb-blog-posts .slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.uabb-blog-posts.slick-slider .slick-track,
.uabb-blog-posts.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.uabb-blog-posts .slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

.uabb-blog-posts .slick-track:before,
.uabb-blog-posts .slick-track:after {
	display: table;
	content: '';
}

.uabb-blog-posts .slick-track:after {
	clear: both;
}

.uabb-blog-posts .slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir='rtl'] .uabb-blog-posts .slick-slide {
	float: right;
}

.uabb-blog-posts .slick-slide.dragging img {
	pointer-events: none;
}

.uabb-blog-posts .slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.uabb-blog-posts .slick-arrow,
.uabb-blog-posts .slick-arrow:active,
.uabb-blog-posts .slick-arrow:hover,
.uabb-blog-posts .slick-arrow:focus {
	box-shadow: none;
}

ul.uabb-masonary-filters {
	padding: 0;
}

ul.uabb-masonary-filters > li {
	border-style: none;
	display: inline-block;
	cursor: pointer;
	margin-bottom: 5px;
}

.uabb-blogs-pagination {
	padding: 40px 0;
}

.uabb-blogs-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.uabb-blogs-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}

.uabb-thumbnail-position-background .uabb-post-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.uabb-thumbnail-position-background .uabb-post-thumbnail img {
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	max-width: none;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.uabb-thumbnail-position-background.uabb-blog-post-inner-wrap {
	position: relative;
	height: inherit;
}

.uabb-thumbnail-position-left .uabb-post-thumbnail,
.uabb-thumbnail-position-left .uabb-blog-post-content,
.uabb-thumbnail-position-right .uabb-post-thumbnail,
.uabb-thumbnail-position-right .uabb-blog-post-content {
	float: left;
	width: 50%;
}

.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) {
	font-weight: inherit;
}

.uabb-blog-posts .uabb-post__terms-wrap .uabb-post__terms {
	margin: 0;
	padding: 5px 10px;
}

.uabb-blog-posts .uabb-post__terms-wrap {
	margin-bottom: 10px;
}

.uabb-blog-posts .uabb-post__terms .uabb-listing__terms-link {
	color: inherit;
	text-decoration: none;
	font-size: inherit;
	line-height: inherit;
	font-style: inherit;
}

.uabb-blog-posts .uabb-post__terms-wrap .uabb-post__terms i {
	margin-right: 2px;
}

.uabb-blog-posts .uabb-blog-post-element-link {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 99;
}

.uabb-blog-post-inner-wrap.uabb-thumbnail-position-left,
.uabb-blog-post-inner-wrap.uabb-thumbnail-position-right,
.uabb-blog-posts {
	overflow: hidden;
}

.uabb-thumbnail-position-right .uabb-post-thumbnail.uabb-crop-thumbnail img,
ul.uabb-masonary-filters > li:last-of-type {
	margin-right: 0;
}

.uabb-thumbnail-position-left .uabb-post-thumbnail img,
.uabb-thumbnail-position-right .uabb-post-thumbnail img,
.uabb-blog-posts-col-1,
.uabb-post-grid-2 img,
.uabb-post-grid-3 img,
.uabb-post-grid-4 img,
.uabb-post-grid-5 img,
.uabb-post-grid-6 img,
.uabb-post-grid-7 img,
.uabb-post-grid-8 img,
.uabb-post-grid-2 .uabb-blog-post-content,
.uabb-post-grid-3 .uabb-blog-post-content,
.uabb-post-grid-4 .uabb-blog-post-content,
.uabb-post-grid-5 .uabb-blog-post-content,
.uabb-post-grid-6 .uabb-blog-post-content,
.uabb-post-grid-7 .uabb-blog-post-content,
.uabb-post-grid-8 .uabb-blog-post-content,
.uabb-thumbnail-position-left.uabb-empty-img .uabb-blog-post-content,
.uabb-thumbnail-position-right.uabb-empty-img .uabb-blog-post-content {
	width: 100%;
}

.uabb-blog-posts-masonary,
.uabb-blog-posts-carousel {
	overflow: visible;
}

.uabb-read-more-text a,
.uabb-blogs-pagination li a.page-numbers:hover,
.uabb-blogs-pagination li span.current,
.uabb-blogs-pagination ul a.page-numbers,
.uabb-blogs-pagination ul a.page-numbers:hover,
.uabb-blogs-pagination ul a.page-numbers:active,
.uabb-blogs-pagination ul a.page-numbers:focus {
	text-decoration: none;
}

.uabb-blog-posts .slick-list:focus,
select.uabb-masonary-filters {
	outline: none;
}

.uabb-blog-posts .slick-loading .slick-track,
.uabb-blog-posts .slick-loading .slick-slide {
	visibility: hidden;
}

.uabb-blog-posts .slick-slide img,
.uabb-blog-posts.slick-initialized .slick-slide {
	display: block;
}

.uabb-blog-posts .slick-slide.slick-loading img,
.uabb-blog-posts .slick-arrow.slick-hidden {
	display: none;
}

.uabb-blogs-pagination li a.page-numbers,
.uabb-blogs-pagination li span.page-numbers,
.uabb-blogs-pagination li span.page-numbers {
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}

/* Compatibility CSS - start */
.theme-twentytwentyone .uabb-blog-posts-carousel button.slick-prev.slick-arrow,
.theme-twentytwentyone .uabb-blog-posts-carousel button.slick-next.slick-arrow {
	background: unset;
}

.theme-twentytwentyone .uabb-blog-posts-carousel ul.slick-dots li button{
	background: unset;
}

.uabb-blog-posts-carousel ul.slick-dots li.slick-active button:before {
	opacity: 0.75;
	color: black;
}
/* Compatibility CSS - end */
.fl-node-ce7wfh9uvxkg .uabb-blog-posts .uabb-post-thumbnail img {
	display: inline-block;
}
.fl-node-ce7wfh9uvxkg .uabb-post-wrapper .uabb-post-thumbnail {
	text-align: center;
}
				.fl-node-ce7wfh9uvxkg .uabb-blog-posts .uabb-blog-post-inner-wrap {
							}
			
.fl-node-ce7wfh9uvxkg .uabb-blog-posts .uabb-post-wrapper {
	padding-left: 7.5px;padding-right: 7.5px;}

.fl-node-ce7wfh9uvxkg .uabb-post-wrapper .uabb-blog-post-content {
	padding-top: 25px;padding-bottom: 25px;padding-left: 25px;padding-right: 25px;}
.fl-node-ce7wfh9uvxkg .uabb-posted-on {
	color: ;	background: #723e98;
	left: 0;
}

	.fl-node-ce7wfh9uvxkg .uabb-post-meta a,
	.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-post-meta {
			}
		
.fl-node-ce7wfh9uvxkg .uabb-blog-posts-shadow {
		background: #f2f2f2;
	transition: all 0.3s linear;
	width: 100%;
}



.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text span,
.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text:visited * {
	color:
	#723e98	;
}


.fl-node-ce7wfh9uvxkg .slick-prev i,
.fl-node-ce7wfh9uvxkg .slick-next i,
.fl-node-ce7wfh9uvxkg .slick-prev i:hover,
.fl-node-ce7wfh9uvxkg .slick-next i:hover,
.fl-node-ce7wfh9uvxkg .slick-prev i:focus,
.fl-node-ce7wfh9uvxkg .slick-next i:focus {
	outline: none;
		color: #723e98;
		border-radius: 50%;
	background: #efefef;
			}

	
.fl-node-ce7wfh9uvxkg .fl-node-content .slick-list,
.fl-node-ce7wfh9uvxkg .uabb-blog-posts .slick-list {
		margin: 0 -7.5px;
		}

	
.fl-node-ce7wfh9uvxkg .uabb-blog-post-content {
	text-align: center;
}
.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text,
.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text a,
.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text a:visited,
.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text a:hover {
	color: #723e98;}
	.fl-node-ce7wfh9uvxkg .uabb-text-editor {
		color: #723e98;	}
			.fl-node-ce7wfh9uvxkg .uabb-post-heading,
		.fl-node-ce7wfh9uvxkg .uabb-post-heading a,
		.fl-node-ce7wfh9uvxkg .uabb-post-heading a:hover,
		.fl-node-ce7wfh9uvxkg .uabb-post-heading a:focus,
		.fl-node-ce7wfh9uvxkg .uabb-post-heading a:visited {
			color: #723e98;		}
		


		@media screen and (max-width: 1200px) {

		
	}
	@media ( max-width: 992px ) {

		
		.fl-node-ce7wfh9uvxkg ul.uabb-masonary-filters > li {
					}

		.fl-node-ce7wfh9uvxkg .uabb-post-wrapper .uabb-blog-post-content {
					}

							.fl-node-ce7wfh9uvxkg .uabb-blog-posts .uabb-blog-post-inner-wrap {
										}
					
										.fl-node-ce7wfh9uvxkg .uabb-blog-posts .slick-prev,
		.fl-node-ce7wfh9uvxkg [dir='rtl'] .uabb-blog-posts .slick-next
		{
			left: -15px;
		}
		.fl-node-ce7wfh9uvxkg .uabb-blog-posts .slick-next,
		.fl-node-ce7wfh9uvxkg [dir='rtl'] .uabb-blog-posts .slick-prev
		{
			right: -15px;
		}
		.fl-node-ce7wfh9uvxkg .uabb-blog-posts .slick-prev i,
		.fl-node-ce7wfh9uvxkg .uabb-blog-posts .slick-next i,
		.fl-node-ce7wfh9uvxkg .uabb-blog-posts .slick-prev i:hover,
		.fl-node-ce7wfh9uvxkg .uabb-blog-posts .slick-prev i:focus,
		.fl-node-ce7wfh9uvxkg .uabb-blog-posts .slick-next i:focus,
		.fl-node-ce7wfh9uvxkg .uabb-blog-posts .slick-next i:hover {
			width: 25px;
			height: 25px;
			line-height: 25px;
		}
					.fl-node-ce7wfh9uvxkg .uabb-blog-posts .uabb-post-wrapper {
			padding-left: 7.5px;padding-right: 7.5px;		}
		.fl-node-ce7wfh9uvxkg .fl-node-content .slick-list,
		.fl-node-ce7wfh9uvxkg .uabb-blog-posts .slick-list {
			margin: 0 -7.5px;
		}
						}

	@media ( max-width: 768px ) {

		
		.fl-node-ce7wfh9uvxkg ul.uabb-masonary-filters > li {
				}

		.fl-node-ce7wfh9uvxkg .uabb-post-wrapper .uabb-blog-post-content {
					}

							.fl-node-ce7wfh9uvxkg .uabb-blog-posts .uabb-blog-post-inner-wrap {
										}
					
		
									.fl-node-ce7wfh9uvxkg .fl-node-content .slick-list,
			.fl-node-ce7wfh9uvxkg .uabb-blog-posts .slick-list {
				margin: 0 -7.5px;
			}
			.fl-node-ce7wfh9uvxkg .uabb-blog-posts .uabb-post-wrapper {
				padding-left: 7.5px;padding-right: 7.5px;			}
							}

	@media ( max-width: 767px ) {
			}
	.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text,.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text a,.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text a:visited,.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text a:hover {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
}
.fl-node-ce7wfh9uvxkg .uabb-text-editor {
	font-family: Karla, sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 22px;
}
.fl-node-ce7wfh9uvxkg .uabb-post-heading,.fl-node-ce7wfh9uvxkg .uabb-post-heading a,.fl-node-ce7wfh9uvxkg .uabb-post-heading a:hover,.fl-node-ce7wfh9uvxkg .uabb-post-heading a:focus,.fl-node-ce7wfh9uvxkg .uabb-post-heading a:visited {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 24px;
}
@media(max-width: 768px) {
	.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text,.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text a,.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text a:visited,.fl-node-ce7wfh9uvxkg .uabb-blog-post-content .uabb-read-more-text a:hover {
		font-size: 10px;
		letter-spacing: 1.3px;
	}
}
	.fl-builder-content .fl-node-60dd2e6eebd6b .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60dd2e6eebd6b .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-60dd2e6eebd6b .fl-rich-text, .fl-builder-content .fl-node-60dd2e6eebd6b .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 400;
	font-size: 28px;
	text-transform: uppercase;
}
 .fl-node-60dd2e6eebd6b > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
	.fl-builder-content .fl-node-60dd2ffdbdbac .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60dd2ffdbdbac .fl-module-content .fl-rich-text * {
		color: #4c2a76;
	}
	.fl-builder-content .fl-node-60dd2ffdbdbac .fl-rich-text, .fl-builder-content .fl-node-60dd2ffdbdbac .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 19px;
	text-transform: none;
}
 .fl-node-60dd2ffdbdbac > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-60dd3985387ef .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60dd3985387ef .fl-module-content .fl-rich-text * {
		color: #4c2a76;
	}
	.fl-builder-content .fl-node-60dd3985387ef .fl-rich-text, .fl-builder-content .fl-node-60dd3985387ef .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 400;
	font-size: 25px;
	text-transform: uppercase;
}
 .fl-node-60dd3985387ef > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
	.fl-builder-content .fl-node-60de5f4a72762 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60de5f4a72762 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-60de5f4a72762 .fl-rich-text, .fl-builder-content .fl-node-60de5f4a72762 .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 30px;
	text-align: center;
}
	.fl-builder-content .fl-node-60dd2e8875d9c .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60dd2e8875d9c .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-60dd2e8875d9c .fl-rich-text, .fl-builder-content .fl-node-60dd2e8875d9c .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	text-transform: capitalize;
}
 .fl-node-60dd2e8875d9c > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
	.fl-builder-content .fl-node-60dd39ae94c6d .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60dd39ae94c6d .fl-module-content .fl-rich-text * {
		color: #4c2a76;
	}
	.fl-builder-content .fl-node-60dd39ae94c6d .fl-rich-text, .fl-builder-content .fl-node-60dd39ae94c6d .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	text-transform: capitalize;
}
 .fl-node-60dd39ae94c6d > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
	.fl-builder-content .fl-node-60de5f7e52733 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60de5f7e52733 .fl-module-content .fl-rich-text * {
		color: #e0ac23;
	}
	.fl-builder-content .fl-node-60de5f7e52733 .fl-rich-text, .fl-builder-content .fl-node-60de5f7e52733 .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 22px;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-60de5f7e52733 > .fl-module-content {
	margin-top:0px;
}
	.fl-builder-content .fl-node-60dd3c47a9867 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-60dd3c47a9867 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-60dd3c47a9867 .fl-rich-text, .fl-builder-content .fl-node-60dd3c47a9867 .fl-rich-text *:not(b, strong) {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 24px;
	text-transform: capitalize;
}
 .fl-node-60dd3c47a9867 > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
.fl-node-60de5f422361c .uabb-separator-parent {
	line-height: 0;
	text-align: center;
}

.fl-node-60de5f422361c .uabb-image-outter-wrap {
	width: 50px;
}

.fl-node-60de5f422361c .uabb-separator {
	border-top:1px solid rgba(255,255,255,0.19);
	width: 100%;
	display: inline-block;
}



.fl-builder-content .fl-node-60f12b78212c9 a.fl-button,
.fl-builder-content .fl-node-60f12b78212c9 a.fl-button:visited,
.fl-builder-content .fl-node-60f12b78212c9 a.fl-button *,
.fl-builder-content .fl-node-60f12b78212c9 a.fl-button:visited *,
.fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button,
.fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:visited,
.fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button *,
.fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:visited * {
	color: #ffffff;
}






.fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover,
.fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover span.fl-button-text,
.fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover *,
.fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover,
.fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover span.fl-button-text,
.fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover * {
	color: #ffffff;
}







.fl-node-60f12b78212c9.fl-button-wrap, .fl-node-60f12b78212c9 .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-60f12b78212c9 a.fl-button {
	padding-right: 40px;
	padding-left: 40px;
}
.fl-builder-content .fl-node-60f12b78212c9 a.fl-button, .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button, .fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:visited {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 4px;
	text-align: center;
	text-transform: uppercase;
	border: 1px solid #66328c;
	background-color: #723e98;
}
.fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover, .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:focus {
	border: 1px solid #d19e18;
}
.fl-builder-content .fl-node-60f12b78212c9 a.fl-button, .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:visited, .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover, .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button, .fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-60f12b78212c9 a.fl-button:hover {
	background-color: #ddaa24;
}
/**
 * Horizontal Layout
 */
.fl-button-group-layout-horizontal .fl-button-group-buttons,
.fl-button-group-layout-horizontal.fl-button-group-buttons {
    display: flex;
    flex-wrap: wrap;
}

.fl-button-group-layout-horizontal .fl-button-wrap {
    display: inline-block;
}

/**
 * Vertical Layout
 */
.fl-button-group-layout-vertical .fl-button-group-buttons,
.fl-button-group-layout-vertical.fl-button-group-buttons {
    display: block;
}

.fl-button-group-layout-vertical .fl-button-wrap {
    display: block;
}

.fl-node-60dd3a4f949bb .fl-button-group-layout-vertical .fl-button-group-buttons a.fl-button,
.fl-node-60dd3a4f949bb .fl-button-group-layout-horizontal .fl-button-group-buttons a.fl-button {
	width: 100%;
}
.fl-node-60dd3a4f949bb .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: flex-start}



.fl-builder-content .fl-node-60dd3a4f949bb .fl-button-group .fl-button-group-buttons a.fl-button:hover,
.fl-builder-content .fl-node-60dd3a4f949bb .fl-button-group .fl-button-group-buttons a.fl-button:focus {

	background: #ddaa24;

	}
			#fl-button-group-button-60dd3a4f949bb-0 a.fl-button > span,
		#fl-button-group-button-60dd3a4f949bb-0 a.fl-button > i {
			color: #FFFFFF;
		}
		
	#fl-button-group-button-60dd3a4f949bb-0 a.fl-button {
									background: rgba(255,255,255,0);
					
			}

			#fl-button-group-button-60dd3a4f949bb-0 a.fl-button:hover,
		#fl-button-group-button-60dd3a4f949bb-0 a.fl-button:focus {
			background: #ddaa24;
					}
				#fl-button-group-button-60dd3a4f949bb-0 a.fl-button:hover {
			border-color: #ddaa24;
		}
				#fl-button-group-button-60dd3a4f949bb-1 a.fl-button > span,
		#fl-button-group-button-60dd3a4f949bb-1 a.fl-button > i {
			color: #FFFFFF;
		}
		
	#fl-button-group-button-60dd3a4f949bb-1 a.fl-button {
									background: rgba(255,255,255,0);
					
			}

			#fl-button-group-button-60dd3a4f949bb-1 a.fl-button:hover,
		#fl-button-group-button-60dd3a4f949bb-1 a.fl-button:focus {
			background: #ddaa24;
					}
				#fl-button-group-button-60dd3a4f949bb-1 a.fl-button:hover {
			border-color: #ddaa24;
		}
			.fl-builder-content .fl-node-60dd3a4f949bb .fl-button,
	.fl-builder-content .fl-node-60dd3a4f949bb .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-60dd3a4f949bb .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: left;
}
.fl-node-60dd3a4f949bb .fl-button-group-layout-horizontal .fl-button-group-buttons {
	justify-content: flex-start;
}
.fl-builder-content .fl-node-60dd3a4f949bb .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 5px;
	padding-right: 100px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-builder-content .fl-node-60dd3a4f949bb .fl-button-group a.fl-button, .fl-builder-content .fl-node-60dd3a4f949bb .fl-button-group a.fl-button:visited {
	font-family: Karla, sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 4px;
}
.fl-builder-content .fl-node-60dd3a4f949bb .fl-button-group .fl-button-group-buttons {
	padding-right: 1px;
}
#fl-button-group-button-60dd3a4f949bb-0 a.fl-button {
	padding-right: 40px;
	padding-left: 40px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #FFFFFF;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-60dd3a4f949bb-0 .fl-button, #fl-button-group-button-60dd3a4f949bb-0 .fl-button * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
#fl-button-group-button-60dd3a4f949bb-1 a.fl-button {
	padding-right: 40px;
	padding-left: 40px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #FFFFFF;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-60dd3a4f949bb-1 .fl-button, #fl-button-group-button-60dd3a4f949bb-1 .fl-button * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}

/* Start Global CSS */
strong {
    font-weight: 700 !important;
}
.fas { font-weight:900 !important; }
header.fl-theme-builder-header-sticky.fl-theme-builder-header-scrolled .fl-row-content.fl-row-fixed-width.fl-node-content .fl-col-group.fl-col-group-equal-height.fl-col-group-align-center, header.fl-theme-builder-header-sticky.fl-theme-builder-header-scrolled .fl-row-content.fl-row-fixed-width.fl-node-content .fl-col-group.fl-col-group-equal-height.fl-col-group-align-center .fl-icon i:before  {
    color: #ffffff !important;
}
#fl-main-content .purple-font {
    color: #723e98 !important;
}

/* 
#fl-main-content ul li {
    list-style-type: none;
} */

.homehero-slider h1, .homehero-slider h3{
  text-align: left;
}

.homehero-slider .fl-slide-foreground {
    margin: 0 auto;
    max-width: 1100px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
}

.homehero-slider .fl-slide-bg-photo {
opacity: .75;
}

.homehero-slider .fl-slide-content-wrap {
    display: flex;
    height: 100%;
    vertical-align: middle;
    align-items: center;
}

.homehero-slider .fl-slide-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    vertical-align: middle;
    top: 0px;
    bottom: 0px;
}

.homehero-slider .bx-wrapper .bx-pager {
    display: flex;
    padding: 60px;
    bottom: 0px;
    max-width: 1100px !important;
    margin: 0 auto;
    right: 0px;
    left: 0px;
}

.homehero-slider .fl-module-content-slider .bx-wrapper {
    margin: 0px;
}

.homehero-slider .bx-wrapper .bx-pager.bx-default-pager a {
    background: #ffffff;
    opacity: .2;
}

.homehero-slider .bx-wrapper .bx-pager.bx-default-pager a.active,.homehero-slider .bx-wrapper .bx-pager.bx-default-pager a:focus,.homehero-slider .bx-wrapper .bx-pager.bx-default-pager a:hover {
    opacity: 1;
}

.fl-module-content a, .fl-module-content a:hover, .fl-module-content a:focus {
    font-family: Karla, sans-serif;
    font-weight: 700;
    color: #723e98;
}

.formfield-fullwidth .name_first, .formfield-fullwidth .name_last, .formfield-fullwidth .address_country {
    width: 100%;
    display: contents;
    padding-right: 0px !important;
}

.formfield-fullwidth .name_first {
    padding-right: 0px !important;
}

.white-button, .purple-button, .formfield-fullwidth-container .gform_button {
    padding: 12px 40px !important;
    font-family: Karla, sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 4px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    border: 0px none rgb(102, 50, 140) !important;
    background-clip: border-box !important;
}

.purple-button {
    background: rgb(123, 81, 153);
    color: #ffffff;
}

.white-button, .formfield-fullwidth-container .gform_button {
    background: #ffffff !important;
    color: rgb(114, 62, 152) !important;
}

.white-button:hover, .formfield-fullwidth-container .gform_button:hover {
    background: #ddaa24 !important;
    color: #ffffff !important;
}

.formfield-fullwidth-container .gform_fields {
    display: block !important;
}

.trackoptions-container .pricing-container .fl-module-content.fl-node-content {
    width: 100%;
    text-align: center;
    display: inline-flex;
    margin: 0px;
    justify-content: center;
}

span.currency {
    position: relative;
    float: left;
    top: 14px;
}

.purple-pricing {
    color: #723e98 !important;
    font-size: 55px !important;
    font-weight: 700 !important;
    position: relative;
    float: left;
    left: 3px;
}

.trackoptions-container .pricing-container {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.mini-container {
    position: relative;
    top: 0px;
    float: left;
    width: 70px;
    height: 62px;
    left: 5px;
}

.purple-decimal {
    color: #723e98 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    top: 10px;
    left: -25px;
}

.pricing-mini {
    font-size: 11px !important;
    color: #888888 !important;
    font-style: italic;
    font-weight: 700 !important;
    position: absolute;
    bottom: 0px;
    left: 0px;
    text-align: left;
}

.pricing-wrap {
    width: 100%;
    display: flex;
}

.testimonial-author {
    font-size: 14px;
}

.courseoverview-container .fl-accordion-button, .fl-accordion-button {
    position: relative;
}

.courseoverview-container i.fl-accordion-button-icon.fas.fa-plus, i.fl-accordion-button-icon.fas.fa-plus {
    background: #c2882b !important;
    color: #ffffff !important;
    padding: 1px;
    position: absolute;
    opacity: 1;
    top: 13px;
}

.courseoverview-container i.fl-accordion-button-icon.fas.fa-plus:before, i.fl-accordion-button-icon.fas.fa-plus:before, .courseoverview-container i.fl-accordion-button-icon.fas.fa-minus:before, i.fl-accordion-button-icon.fas.fa-minus:before {
    font-size: 9px !important;
    padding: 3px 5px;
    margin: 0 auto !important;
    display: block;
    height: 19px;
}

.courseoverview-container .fl-accordion-item.fl-accordion-item-active .fl-accordion-button:hover i.fl-accordion-button-icon, .fl-accordion-item.fl-accordion-item-active .fl-accordion-button:hover i.fl-accordion-button-icon {
    background: #723e98 !important;
    color: #ffffff;
    padding: 1px;
    position: absolute;
    opacity: 1;
    top: 13px;
}

.courseoverview-container.inverted-accordion .fl-accordion-item.fl-accordion-item-active .fl-accordion-button:hover i.fl-accordion-button-icon {
    background: #ffffff !important;
    color: #c2882b !important;
}

.courseoverview-container .fl-accordion-button:hover i.fl-accordion-button-icon, .fl-accordion-button:hover i.fl-accordion-button-icon {
    background: #723e98 !important;
    padding: 1px;
    position: absolute;
    opacity: 1;
    top: 13px;
}

.courseoverview-container.inverted-accordion .fl-accordion-button:hover i.fl-accordion-button-icon {
    background: #ffffff !important;
    color: #c2882b !important;
}

.fl-accordion-item.fl-accordion-item-active i.fl-accordion-button-icon.fl-accordion-button-icon-left.fas.fa-minus {
    background: #723e98 !important;
    color: #ffffff;
    padding: 1px;
    position: absolute;
    opacity: 1;
    top: 13px;
}

.courseoverview-container .fl-accordion-button:hover i.fl-accordion-button-icon:before, .fl-accordion-button:hover i.fl-accordion-button-icon:before {
    font-size: 9px !important;
    padding: 3px 5px;
    margin: 0 auto !important;
    display: block;
    height: 19px;
}

.courseoverview-container .fl-accordion-item.fl-accordion-item-active a.fl-accordion-button-label, .fl-accordion-item.fl-accordion-item-active a.fl-accordion-button-label {
    padding-left: 7px !important;
    outline: none;
    font-weight: normal !important;
}

.fl-accordion-item.fl-accordion-item-active .fl-accordion-button:hover a.fl-accordion-button-label, .fl-accordion-item.fl-accordion-item-active .fl-accordion-button a.fl-accordion-button-label {
    padding-left: 35px !important;
    outline: none;
    font-weight: normal !important;
}

.courseoverview-container .fl-accordion-item a.fl-accordion-button-label, .fl-accordion-item a.fl-accordion-button-label, .courseoverview-container .fl-accordion-item a.fl-accordion-button-label, .fl-accordion-item a.fl-accordion-button-label {
    padding-left: 35px !important;
    outline: none;
    font-weight: normal !important;
}

.fl-accordion-item.fl-accordion-item-active ul {
    padding-inline-start: revert !important;
}

.sampleform-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.sampleform-container .gform_button {
    padding: 12px 40px !important;
    margin: 2px 5px 2px 10px !important;
    border: none !important;
    top: 0px !important;
    height: 45px !important;
}

.sampleform-container .gform_fields {
    display: flex !important;
    grid-column-gap: 0% !important;
    grid-row-gap: 0px !important;
}

.sampleform-container .gfield.gfield--width-full input {
    padding: 12px 10px !important;
    margin: 2px 5px !important;
    top: 0px;
    height: 45px !important;
    border-radius: 0px !important;
}

.sampleform-container .ginput_container_email input {
    width: 100% !important;
}

.sampleform-container .gfield.gfield--width-full {
    float: left;
    margin: 0 5px;
}

.sampleform-container .gform_footer {
    padding: 0px !important;
}

.timeline-container i.fl-list-item-icon:before {
    margin: 0 auto;
}

.timeline-container i.fl-list-item-icon {
    background: #4c2a74;
    padding: 13px !important;
    border-radius: 100%;
    margin-right: 20px;
    width: 45px !important;
    height: 45px !important;
    display: block;
    text-align: center;
}

.timeline-container {
    position: relative;
}

.timeline-container .fl-list-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-container .fl-list-item-0:before, .timeline-container .fl-list-item-1:before {
    content: '';
    top: 38px;
    position: absolute;
    bottom: 0;
    left: 22px;
    margin-left: 0;
    height: 60px;
    width: 1px;
    background: #4c2a74;
    display: none;
}

.timeline-container i.fl-list-item-icon:before {
    margin: 0 auto;
    color: #ffffff;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-icon {
    vertical-align: top !important;
}

@media (max-width: 980px){
  .sampleform-container {
      display: grid !important;
  }
  .sampleform-container .gform_footer {
      padding: 5px !important;
  }
}
@media (max-width: 768px){
h1, .fl-builder-content .homehero-slider .fl-module-content-slider .fl-slide .fl-slide-title  {
    font-size: 40px !important;
}
h2 {
    font-size: 35px !important;
}
h3, .fl-builder-content .homehero-slider .fl-module-content-slider .fl-slide .fl-slide-text h3 {
    font-size: 25px !important;
    margin-bottom: 40px !important;
}

.homehero-slider .bx-wrapper .bx-pager {
    padding: 30px;
  }
  #quadmenu.quadmenu-default_theme .quadmenu-navbar-brand > img {
      height: 48px;
  }
  .sampleform-container .gform_fields {
      display: grid !important;
      grid-column-gap: 0% !important;
      grid-row-gap: 0px !important;
      margin: 0px!important;
  }
  .sampleform-container .gfield.gfield--width-full {
      float: none;
      margin: 5px;
      overflow: hidden;
  }
  .sampleform-container .gform_button {
      padding: 12px 40px !important;
      margin: 5px !important;
      border: none !important;
      top: 0px !important;
      height: 45px !important;
  }
  .sampleform-container .gfield.gfield--width-full input {
      margin: 0px !important;
  }
  .sampleform-container .gform_footer {
      padding: 5px 0px !important;
  }
  .timeline-container .fl-list-item {
    position: relative;
    margin-bottom: 10px;
}
.homehero-slider .fl-slide-foreground {
    position: absolute;
    top: 0px;
}
.homehero-slider .fl-content-slider, .fl-content-slider .fl-slide {
    min-height: 300px !important;
}
.homehero-slider .fl-slide-mobile-photo {
    display: none;
}
.fl-content-slider .fl-slide-bg-photo {
    background-image: inherit;
    position: absolute !important;
}
}

@media (max-width: 425px){
h1, .fl-builder-content .homehero-slider .fl-module-content-slider .fl-slide .fl-slide-title {
    font-size: 35px !important;
}
h2 {
    font-size: 30px !important;
}
h3, .fl-builder-content .homehero-slider .fl-module-content-slider .fl-slide .fl-slide-text h3 {
    font-size: 20px !important;
}
.homehero-slider .bx-wrapper .bx-pager {
display: none;
}
}

/*Remove Buttons on Header of Product Wizard*/
.woocommerce-products-wizard-header
{
    display: none !important;
}



/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

.fl-node-60e3ed909d893 .fl-post-feed-post {
  border-bottom: 2px solid #E4C8EF;
}
.fl-node-60e3ed909d893 .fl-post-grid-post {
  font-size: 20px;
}
.fl-node-60e3ed909d893 .fl-post-text {
  color: #4C2A76;
}
.fl-node-60e3ed909d893 .fl-post-title,
.fl-node-60e3ed909d893 .fl-post-title a {
  font-family: "Karla";
  color: #4C2A76;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  margin: 0;
  padding: 0 0 5px;
}
.fl-node-60e3ed909d893 .fl-post-meta {
  padding: 0 0 15px;
}
.fl-node-60e3ed909d893 .fl-post-meta {
  color: #4C2A76;
  font-family: "Karla";
  font-size: 13px;
  font-weight: 700;
}
.fl-node-60e3ed909d893 .fl-post-excerpt {
  color: #A175B2;
  font-family: "Karla";
  font-size: 18px;
  font-weight: 400;
}
.fl-node-60e3ed909d893 .fl-post-image {
  padding-bottom: 15px;
  padding-top: 15px;
  float: left;
  padding-right: 10px;
  padding-left: 0px;
}
.fl-node-60e3ed909d893 .post-container {
  width: 100% !important;
}
/* Generic */
.fl-post-module-woo-ordering {
	padding-bottom: 40px;
}

.fl-product-ordering{
	text-align: center;
}

/* Grid */
.fl-module-post-grid .woocommerce-product-gallery {
	opacity: 1 !important;
}
.woocommerce.fl-post-grid-woo-meta {
	padding-bottom: 5px;
}
.woocommerce.fl-post-grid-woo-meta .star-rating,
.woocommerce.fl-post-grid-woo-meta .price {
	clear: both;
	display: block;
	float: none;
	margin: 0 0 5px;
}
.fl-post-align-center .woocommerce.fl-post-grid-woo-meta .star-rating {
	margin: 0 auto 5px;
}
.fl-post-align-right .woocommerce.fl-post-grid-woo-meta .star-rating {
	float: right;
	margin: 0 0 5px;
}
.fl-module-post-grid .woocommerce.fl-post-grid-woo-button {
	padding-top: 10px;
}
.woocommerce .fl-post-grid-post {
	overflow: inherit;
}

/* Feed */
.fl-post-feed-woo-meta {
	overflow: hidden;
}
.woocommerce.fl-post-feed-woo-meta .price {
	display: inline-block;
}
.woocommerce.fl-post-feed-woo-meta .star-rating {
	display: inline-block;
	float: none;
	margin: 0 0 0 5px;
}
.fl-module-post-grid .woocommerce.fl-post-feed-woo-button {
	margin-top: 20px;
}

/* Gallery */
.woocommerce.fl-post-gallery-woo-meta .star-rating,
.woocommerce.fl-post-gallery-woo-meta .price {
	clear: both;
	display: block;
	float: none;
	margin: 0 0 5px;
}
.woocommerce.fl-post-gallery-woo-meta .star-rating {
	margin: 0 auto 5px;
}
.woocommerce.fl-post-gallery-woo-meta .star-rating:before {
	color: #999 !important;
}
.woocommerce.fl-post-gallery-woo-meta .star-rating span:before {
	color: #fff;
}
 

 

 





/* Add To Cart Button Styles */





.fl-builder-content .fl-node-60e3ed909d893 .fl-post-module-woo-button button[type=submit].alt.disabled,
.fl-builder-content .fl-node-60e3ed909d893 .fl-post-module-woo-button button.button, 
.fl-builder-content .fl-node-60e3ed909d893 .fl-post-module-woo-button a.button {
	display: none;
}
 

 

 





/* Add To Cart Button Styles */





.fl-builder-content .fl-node-61414ca66cd42 .fl-post-module-woo-button button[type=submit].alt.disabled,
.fl-builder-content .fl-node-61414ca66cd42 .fl-post-module-woo-button button.button, 
.fl-builder-content .fl-node-61414ca66cd42 .fl-post-module-woo-button a.button {
	display: none;
}
/* Equal height Column Bottom Alignment */
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
          -webkit-box-align: end;
           -webkit-box-pack: end;
              -ms-flex-pack: end;
}

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

/* Anchor Tag Css */

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

/* Row Separator CSS */

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

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

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

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

@media (max-width: 992px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

.uabb-button-width-custom .uabb-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.fl-builder-content .uabb-button-left {
    text-align: left;
}
.fl-builder-content .uabb-button-center {
    text-align: center;
}
.fl-builder-content .uabb-infobox .uabb-button-center,
.fl-builder-content .uabb-modal-action-wrap .uabb-button-center,
.fl-builder-content .uabb-ultb3-box .uabb-button-center,
.fl-builder-content .uabb-slide-down .uabb-button-center,
.fl-builder-content .uabb-blog-post-content .uabb-button-center,
.fl-builder-content .uabb-cta-wrap .uabb-button-center,
.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center{ 
     text-align: inherit;
}

.fl-builder-content .uabb-button-right {
    text-align: right;
}

.fl-builder-content .uabb-button i,
.fl-builder-content .uabb-button i:before {
    font-size: 1em;
    height: 1em;
    line-height: 1em;
    width: 1em;
}

.uabb-button .uabb-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-button .uabb-button-icon-before {
    margin-left: 0;
    margin-right: 8px;
}
.uabb-button .uabb-button-icon-no-text {
    margin: 0;
}
.uabb-button-has-icon .uabb-button-text {
    vertical-align: middle;
}

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

.uabb-icon-wrap {
    display: inline-block;
}
.uabb-icon a {
    text-decoration: none;
}
.uabb-icon i {
    display: block;
}
.uabb-icon i:before {
    border: none !important;
    background: none !important;
}
.uabb-icon-text {
    display: table-cell;
    text-align: left;
    padding-left: 15px;
    vertical-align: middle;
}
.uabb-icon-text *:last-child {
    margin: 0 !important;
    padding: 0 !important;
}
.uabb-icon-text a {
    text-decoration: none;
}

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

.uabb-photo {
    line-height: 0;
    position: relative;
    z-index: 2;
}
.uabb-photo-align-left {
    text-align: left;
}
.uabb-photo-align-center {
    text-align: center;
}
.uabb-photo-align-right {
    text-align: right;
}
.uabb-photo-content {
    border-radius: 0;
    display: inline-block;
    line-height: 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.uabb-photo-content img {
    border-radius: inherit;
    display: inline;
    height: auto;
    max-width: 100%;
    width: auto;
}
.fl-builder-content .uabb-photo-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-photo-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.uabb-photo-caption {
    font-size: 13px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.uabb-photo-caption-below {
    padding-bottom: 20px;
    padding-top: 10px;
}
.uabb-photo-caption-hover {
    background: rgba(0,0,0,0.7);
    bottom: 0;
    color: #fff;
    left: 0;
    opacity: 0;
    visibility: hidden;
    filter: alpha(opacity = 0);
    padding: 10px 15px;
    position: absolute;
    right: 0;
    -webkit-transition:visibility 200ms linear;
    -moz-transition:visibility 200ms linear;
    transition:visibility 200ms linear;
}
.uabb-photo-content:hover .uabb-photo-caption-hover {
    opacity: 100;
    visibility: visible;
}

/* Panel & Buttons
------------------------------------------------------ */
.uabb-active-btn {
    background: #1e8cbe;
    border-color: #0074a2;
    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    color: white;
}
.fl-builder-bar .fl-builder-add-content-button {
    display: block !important;
    opacity: 1 !important;
}

/* Image Icon Object */
.uabb-imgicon-wrap .uabb-icon {
    display: block;
}
.uabb-imgicon-wrap .uabb-icon i{
    float: none;
}

/* Photo */
.uabb-imgicon-wrap .uabb-image {
    line-height: 0;
    position: relative;
}
.uabb-imgicon-wrap .uabb-image-align-left {
    text-align: left;
}
.uabb-imgicon-wrap .uabb-image-align-center {
    text-align: center;
}
.uabb-imgicon-wrap .uabb-image-align-right {
    text-align: right;
}
.uabb-imgicon-wrap .uabb-image-content {
    display: inline-block;
    border-radius: 0;
    line-height: 0;
    position: relative;
    max-width: 100%;
}
.uabb-imgicon-wrap .uabb-image-content img {
    display: inline;
    height: auto !important;
    max-width: 100%;
    width: auto;
    border-radius: inherit;
    box-shadow: none;
    box-sizing: content-box;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}


/* Creative Button
___________________________________________________________________________*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    background: #fafafa;
    border: 1px solid #ccc;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;

}

.uabb-creative-button-wrap a:focus {
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
}

.uabb-creative-button-wrap a .uabb-creative-button-text,
.uabb-creative-button-wrap a .uabb-creative-button-icon,
.uabb-creative-button-wrap a:visited .uabb-creative-button-text,
.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button-wrap a:hover {
    text-decoration: none;
}

.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {
    display: block;
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.uabb-creative-button-wrap .uabb-creative-button-left {
    text-align: left;
}
.uabb-creative-button-wrap .uabb-creative-button-center {
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-right {
    text-align: right;
}
.uabb-creative-button-wrap .uabb-creative-button i {
    font-size: 1.3em;
    height: auto;
    vertical-align: middle;
    width: auto;
}

.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {
    margin-right: 8px;
    margin-left: 0;
}
.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {
    margin: 0;
}

.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {
    vertical-align: middle;
}
.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    padding: 12px 24px;
}

/*  Translate Button styles */

.uabb-creative-button.uabb-creative-transparent-btn {
    background: transparent;
}
.uabb-creative-button.uabb-creative-transparent-btn:after {
    content: '';
    position: absolute;
    z-index: 1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

/* transparent-fill-top, transparent-fill-bottom  */
.uabb-transparent-fill-top-btn:after,
.uabb-transparent-fill-bottom-btn:after {
    width: 100%;
    height: 0;
    left: 0;
}

/* transparent-fill-top */
.uabb-transparent-fill-top-btn:after {
    top: 0;
}
/* transparent-fill-bottom */
.uabb-transparent-fill-bottom-btn:after {
    bottom: 0;
}

/* transparent-fill-left, transparent-fill-right */
.uabb-transparent-fill-left-btn:after,
.uabb-transparent-fill-right-btn:after {
    width: 0;
    height: 100%;
    top: 0;
}

/* transparent-fill-left */
.uabb-transparent-fill-left-btn:after {
    left: 0;
}
/* transparent-fill-right */
.uabb-transparent-fill-right-btn:after {
    right: 0;
}


/* transparent-fill-center */
.uabb-transparent-fill-center-btn:after{
    width: 0;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

/*  transparent-fill-diagonal, transparent-fill-horizontal  */
.uabb-transparent-fill-diagonal-btn:after,
.uabb-transparent-fill-horizontal-btn:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
}

/*  transparent-fill-diagonal */
.uabb-transparent-fill-diagonal-btn{
    overflow: hidden;
}
.uabb-transparent-fill-diagonal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
       -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
        -ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
         -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
            transform: translateX(-50%) translateY(-50%) rotate( 45deg );
}
/* transparent-fill-horizontal */
.uabb-transparent-fill-horizontal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}


/*  3D Button styles */
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}

.perspective {
    -webkit-perspective: 800px;
       -moz-perspective: 800px;
            perspective: 800px;
            margin: 0;
}
.uabb-creative-button.uabb-creative-threed-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button.uabb-creative-threed-btn {
    outline: 1px solid transparent;
    -webkit-transform-style: preserve-3d;
       -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/*  3D Button styles --- Animate to top */
.uabb-creative-threed-btn.uabb-animate_top-btn:after {
    height: 40%;
    left: 0;
    top: -40%;
    width: 100%;
    -webkit-transform-origin: 0% 100%;
       -moz-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: rotateX(90deg);
       -moz-transform: rotateX(90deg);
            transform: rotateX(90deg);
}

/*  3D Button styles --- Animate to bottom */
.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {
    width: 100%;
    height: 40%;
    left: 0;
    top: 100%;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateX(-90deg);
       -moz-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
}

/*  3D Button styles --- Animate to Left */
.uabb-creative-threed-btn.uabb-animate_left-btn:after {
    width: 20%;
    height: 100%;
    left: -20%;
    top: 0;
    -webkit-transform-origin: 100% 0%;
       -moz-transform-origin: 100% 0%;
        -ms-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-transform: rotateY(-60deg);
       -moz-transform: rotateY(-60deg);
        -ms-transform: rotateY(-60deg);
            transform: rotateY(-60deg);
}

/*  3D Button styles --- Animate to Right */
.uabb-creative-threed-btn.uabb-animate_right-btn:after {
    width: 20%;
    height: 100%;
    left: 104%;
    top: 0;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateY(120deg);
       -moz-transform: rotateY(120deg);
        -ms-transform: rotateY(120deg);
            transform: rotateY(120deg);
}


/* Animate Top */
.uabb-animate_top-btn:hover{
    -webkit-transform: rotateX(-15deg);
       -moz-transform: rotateX(-15deg);
        -ms-transform: rotateX(-15deg);
         -o-transform: rotateX(-15deg);
            transform: rotateX(-15deg);

}

/* Animate Bottom */
.uabb-animate_bottom-btn:hover{
    -webkit-transform: rotateX(15deg);
       -moz-transform: rotateX(15deg);
        -ms-transform: rotateX(15deg);
         -o-transform: rotateX(15deg);
            transform: rotateX(15deg);

}

/* Animate Left */
.uabb-animate_left-btn:hover{
    -webkit-transform: rotateY(6deg);
       -moz-transform: rotateY(6deg);
        -ms-transform: rotateY(6deg);
         -o-transform: rotateY(6deg);
            transform: rotateY(6deg);
}

/* Animate Right */
.uabb-animate_right-btn:hover{
    -webkit-transform: rotateY(-6deg);
       -moz-transform: rotateY(-6deg);
        -ms-transform: rotateY(-6deg);
         -o-transform: rotateY(-6deg);
            transform: rotateY(-6deg);

}

/*  Flat Button styles  */

/*  Common Classes  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn,
.uabb-creative-flat-btn.uabb-animate_to_left-btn,
.uabb-creative-flat-btn.uabb-animate_from_top-btn,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {
    overflow: hidden;
    position: relative;
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    bottom: 0;
    height: 100%;
    margin: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    width: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*  Making Icon position center  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/*  Common Hover Classes */
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {
    left: 0;
}
.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {
    top: 0;
}

/*  Animate Icon to the right */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i {
    top: 0;
    left: -100%;
}
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {
    -webkit-transform: translateX(200%);
       -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
         -o-transform: translateX(200%);
            transform: translateX(200%);
}

/*  Animate Icon to the left */
.uabb-creative-flat-btn.uabb-animate_to_left-btn i {
    top: 0;
    left: 100%;
}

.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {
    -webkit-transform: translateX(-200%);
       -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
         -o-transform: translateX(-200%);
            transform: translateX(-200%);
}


/*  Animate Icon From the Top */
.uabb-creative-flat-btn.uabb-animate_from_top-btn i {
    top: -100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {
    -webkit-transform: translateY(400px);
       -moz-transform: translateY(400px);
        -ms-transform: translateY(400px);
         -o-transform: translateY(400px);
            transform: translateY(400px);
}

/*  Animate Icon From the Bottom */
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    top: 100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {
    -webkit-transform: translateY(-400px);
       -moz-transform: translateY(-400px);
        -ms-transform: translateY(-400px);
         -o-transform: translateY(-400px);
            transform: translateY(-400px);
}

/* Media/Video CSS */
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode, 
.uabb-tab-acc-content .mejs-container:not(.mejs-audio), 
.uabb-tab-acc-content .mejs-overlay.load,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode, 
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio), 
.uabb-adv-accordion-content .mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio),
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {
    padding-top: 56.25%;
}
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode {
    max-width: 100% !important;
}
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content video.wp-video-shortcode {
    position: relative;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.uabb-tab-acc-content .mejs-overlay-play,
.uabb-adv-accordion-content .mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}
.fl-row-content-wrap .uabb-row-particles-background,
.uabb-col-particles-background {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
/* Theme Button
------------------------------------------------------ */
/*.fl-builder-content a.uabb-button,
.fl-builder-content a.uabb-button:visited,
.fl-builder-content a.uabb-creative-button,
.fl-builder-content a.uabb-creative-button:visited*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
		
	
	
	
	}

.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
			
	
	
	}


/* Responsive Js Breakpoint Css */

.uabb-js-breakpoint {
	content:"default";
	display:none;
}
@media screen and (max-width: 992px) {
	.uabb-js-breakpoint {
		content:"992";
	}
}

@media screen and (max-width: 768px) {
	.uabb-js-breakpoint {
		content:"768";
	}
}


																													
					
					
					
																																																																															
					
					
					
																
					
					
					
																										