/**
 * 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: 750px) { /* 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: 751px) 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: 750px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 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; }




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

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

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-qgxc3n9dyrb1.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-qgxc3n9dyrb1.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-qgxc3n9dyrb1.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-qgxc3n9dyrb1.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 850px;
}
@media(max-width: 1200px) {
	.fl-node-qgxc3n9dyrb1.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 700px;
	}
}
@media(max-width: 992px) {
	.fl-node-qgxc3n9dyrb1.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 450px;
	}
}





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

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

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-fep0iq59sx4v.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-fep0iq59sx4v.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-fep0iq59sx4v.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-fep0iq59sx4v > .fl-row-content-wrap:after {
	background-image: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, rgba(255,255,255,0) 100%);
}
.fl-node-fep0iq59sx4v > .fl-row-content-wrap {
	background-image: url(https://pressurepointroofing.com/wp-content/uploads/2024/08/2024-06_PPR_MattHeroShot_CrystalGeyser95812.webp);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-fep0iq59sx4v.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 700px;
}
@media(max-width: 750px) {
	.fl-node-fep0iq59sx4v > .fl-row-content-wrap {
		background-image: url(https://pressurepointroofing.com/wp-content/uploads/2024/08/2024-06_PPR_MattHeroShot_CrystalGeyser95812.jpg);
	}
	.fl-node-fep0iq59sx4v.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 250px;
	}
}





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





.fl-node-6dpgiv3qx54y > .fl-row-content-wrap {
	background-color: #af2042;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-6dpgiv3qx54y .fl-row-content {
	max-width: 1100px;
}





.fl-node-3284egzf5omy > .fl-row-content-wrap {
	background-color: #2a2e38;
}





@media ( max-width: 992px ) {
 .fl-node-a81g2copb0rx.fl-row > .fl-row-content-wrap {
	margin-top:50px;
	margin-bottom:50px;
}
}
 .fl-node-a81g2copb0rx > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}





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

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

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-rjx5vtk4foi0.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-rjx5vtk4foi0.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-rjx5vtk4foi0.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-rjx5vtk4foi0 > .fl-row-content-wrap:after {
	background-color: rgba(63,0,7,0.77);
}
.fl-node-rjx5vtk4foi0 > .fl-row-content-wrap {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
.fl-builder-mobile .fl-node-rjx5vtk4foi0 > .fl-row-content-wrap {
	background-image: url(https://pressurepointroofing.com/wp-content/uploads/2024/02/Roof-Shingles-Background-min.jpeg);
	background-position: center center;
	background-attachment: scroll;
}
.fl-node-rjx5vtk4foi0.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 500px;
}





.fl-node-nu5dmiyrsv8w > .fl-row-content-wrap {
	background-color: #af2042;
}
.fl-node-nu5dmiyrsv8w .fl-row-content {
	max-width: 900px;
}
 .fl-node-nu5dmiyrsv8w > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}





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

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

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-rxnb9tfdeq6a.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-rxnb9tfdeq6a.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-rxnb9tfdeq6a.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-rxnb9tfdeq6a > .fl-row-content-wrap {
	background-color: #181b21;
}
 .fl-node-rxnb9tfdeq6a > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-rxnb9tfdeq6a.fl-row > .fl-row-content-wrap {
	padding-right:0px;
}
}





.fl-node-db63rgneks4a .fl-row-content {
	max-width: 800px;
}





.fl-node-97xhie5y0nwq > .fl-row-content-wrap:after {
	background-color: rgba(14,14,14,0.59);
}
.fl-node-97xhie5y0nwq > .fl-row-content-wrap {
	background-image: url(https://pressurepointroofing.com/wp-content/uploads/2024/02/Roof-Shingles-Background-min.jpeg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}










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

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

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-uvm2as9wj80h.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-uvm2as9wj80h.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-uvm2as9wj80h.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-uvm2as9wj80h > .fl-row-content-wrap:after {
	background-image: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0) 39%);
}
.fl-node-uvm2as9wj80h > .fl-row-content-wrap {
	background-image: url(https://pressurepointroofing.com/wp-content/uploads/2024/02/Matt-on-the-roof-Footer-scaled.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-uvm2as9wj80h.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 500px;
}





.fl-node-vmcuq052rlbn > .fl-row-content-wrap {
	background-color: #af2042;
}




.fl-node-nhf63lbj20r4 {
	width: 63.91%;
}




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




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




.fl-node-an6f7d0pqyhb {
	width: 35%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-an6f7d0pqyhb {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




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




.fl-node-8kwzy5r3j1vi {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-8kwzy5r3j1vi {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




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




.fl-node-njgtqk02edc6 {
	width: 39%;
}




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




.fl-node-1crenw0d8th7 {
	width: 20%;
}
.fl-node-1crenw0d8th7 > .fl-col-content {
	background-color: #ffffff;
	box-shadow: 0px 0px 12px 0px #2a2e38;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-1crenw0d8th7 {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 750px) {
	.fl-builder-content .fl-node-1crenw0d8th7 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-1crenw0d8th7 > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 750px ) {
 .fl-node-1crenw0d8th7.fl-col > .fl-col-content {
	margin-bottom:20px;
}
}




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




.fl-node-upsa2qnwc3rh {
	width: 66%;
}




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




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




.fl-node-371gpah96sfc {
	width: 100%;
}




.fl-node-8lfwmv6biqa4 {
	width: 36.09%;
}




.fl-node-4zowkhmiq59g {
	width: 64%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-4zowkhmiq59g {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-phtdazenkl6f {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-phtdazenkl6f {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 750px) {
	.fl-builder-content .fl-node-phtdazenkl6f {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 992px ) {
 .fl-node-phtdazenkl6f.fl-col > .fl-col-content {
	margin-right:0px;
	margin-left:0px;
}
}




.fl-node-mb32qfntojwg {
	width: 19%;
}




.fl-node-x16shzm4dai2 {
	width: 20%;
}
.fl-node-x16shzm4dai2 > .fl-col-content {
	background-color: #ffffff;
	box-shadow: 0px 0px 12px 0px #2a2e38;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-x16shzm4dai2 {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 750px) {
	.fl-builder-content .fl-node-x16shzm4dai2 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-x16shzm4dai2 > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 750px ) {
 .fl-node-x16shzm4dai2.fl-col > .fl-col-content {
	margin-bottom:20px;
}
}




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




.fl-node-cyfwrbz80v3o {
	width: 34%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-cyfwrbz80v3o {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-2qeo5iz418lj {
	width: 41%;
}




.fl-node-fxy0hdlprujz {
	width: 20%;
}
.fl-node-fxy0hdlprujz > .fl-col-content {
	background-color: #ffffff;
	box-shadow: 0px 0px 12px 0px #2a2e38;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-fxy0hdlprujz {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 750px) {
	.fl-builder-content .fl-node-fxy0hdlprujz {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-fxy0hdlprujz > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 750px ) {
 .fl-node-fxy0hdlprujz.fl-col > .fl-col-content {
	margin-bottom:20px;
}
}




.fl-node-503tuzb1gqek {
	width: 100%;
}




.fl-node-wn4z79ipgmj3 {
	width: 20%;
}
.fl-node-wn4z79ipgmj3 > .fl-col-content {
	background-color: #ffffff;
	box-shadow: 0px 0px 12px 0px #2a2e38;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-wn4z79ipgmj3 {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 750px) {
	.fl-builder-content .fl-node-wn4z79ipgmj3 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-wn4z79ipgmj3 > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 750px ) {
 .fl-node-wn4z79ipgmj3.fl-col > .fl-col-content {
	margin-bottom:20px;
}
}




.fl-node-ns1mizqyogfa {
	width: 20%;
}
.fl-node-ns1mizqyogfa > .fl-col-content {
	background-color: #ffffff;
	box-shadow: 0px 0px 12px 0px #2a2e38;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-ns1mizqyogfa {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 750px) {
	.fl-builder-content .fl-node-ns1mizqyogfa {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-ns1mizqyogfa > .fl-col-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}




.fl-node-iw6tmhkga7ev {
	width: 100%;
}
.fl-node-iw6tmhkga7ev > .fl-col-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}




.fl-node-ahlx804pjeuc {
	width: 88%;
}




.fl-node-cxkgujrzq1li {
	width: 11%;
}




.fl-node-i4tleh0wf7jp {
	width: 100%;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col h2.fl-node-ifw0yebo4uka,
		.fl-row .fl-col h2.fl-node-ifw0yebo4uka a,
		h2.fl-node-ifw0yebo4uka,
		h2.fl-node-ifw0yebo4uka a {
	color: #ffffff;
}
.fl-node-ifw0yebo4uka.fl-module-heading, .fl-node-ifw0yebo4uka.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-ifw0yebo4uka.fl-module-heading, .fl-node-ifw0yebo4uka.fl-module-heading :where(a, q, p, span) {
		text-align: left;
	}
}
 .fl-node-ifw0yebo4uka.fl-module-heading {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-ifw0yebo4uka.fl-module-heading.fl-module {
	margin-bottom:0px;
	margin-left:20px;
}
}
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: 750px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-39pln54igoba, .fl-node-39pln54igoba .fl-photo {
	text-align: center;
}
.fl-node-39pln54igoba .fl-photo-content, .fl-node-39pln54igoba .fl-photo-img {
	width: 330px;
}
.fl-node-39pln54igoba .fl-photo-img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #af2042;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
@media ( max-width: 992px ) {
 .fl-node-39pln54igoba.fl-module-photo.fl-module {
	margin-top:-30px;
}
}
@media ( max-width: 750px ) {
 .fl-node-39pln54igoba.fl-module-photo.fl-module {
	margin-top:20px;
}
}
.fl-animated.fl-fade-right {
	animation: fl-fade-right 1s ease;
	-webkit-animation: fl-fade-right 1s ease;
}
@-webkit-keyframes fl-fade-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fl-row .fl-col h2.fl-node-23vqy5kxotnc,
		.fl-row .fl-col h2.fl-node-23vqy5kxotnc a,
		h2.fl-node-23vqy5kxotnc,
		h2.fl-node-23vqy5kxotnc a {
	color: #ffffff;
}
.fl-node-23vqy5kxotnc.fl-module-heading, .fl-node-23vqy5kxotnc.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-23vqy5kxotnc.fl-module-heading {
	margin-top:30px;
	margin-bottom:30px;
}
@media (max-width: 750px) { .fl-node-23vqy5kxotnc.fl-module-heading { margin-top:20px;margin-bottom:20px; } }.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-ufztj17gdwio.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-ufztj17gdwio.fl-module-rich-text.fl-rich-text * {
		color: #af2042;
	}
	.fl-builder-content .fl-node-ufztj17gdwio.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-ufztj17gdwio.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 700;
	text-transform: uppercase;
}
 .fl-node-ufztj17gdwio.fl-module-rich-text {
	margin-top:0px;
	margin-bottom:0px;
}














.fl-node-5qc24tz0v9ki.fl-button-wrap, .fl-node-5qc24tz0v9ki .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-5qc24tz0v9ki a.fl-button, .fl-builder-content .fl-node-5qc24tz0v9ki a.fl-button:visited, .fl-page .fl-builder-content .fl-node-5qc24tz0v9ki a.fl-button, .fl-page .fl-builder-content .fl-node-5qc24tz0v9ki a.fl-button:visited {
	font-weight: 700;
	text-transform: uppercase;
}
 .fl-node-5qc24tz0v9ki.fl-module-button {
	margin-top:0px;
	margin-left:25px;
}
@media (max-width: 750px) { .fl-node-5qc24tz0v9ki.fl-module-button { margin-left:20px; } }/* Clearfix */
.pp-infobox:before,
.pp-infobox:after {
	content: " ";
	display: table;
}

.pp-infobox:after {
	clear: both;
}
.pp-infobox-wrap .pp-infobox-link {
	text-decoration: none;
	display: block;
}

.pp-infobox-title-prefix {
	display: block;
}
.pp-infobox-title-wrapper .pp-infobox-title {
	margin-bottom: 5px;
	margin-top: 0;
}
.pp-infobox-description p {
	margin-bottom: 15px;
}
.pp-infobox-description p:last-of-type {
	margin-bottom: 0 !important;
}
.pp-more-link {
	color: inherit;
	display: block;
	text-decoration: none;
	box-shadow: none;
}
.pp-infobox .pp-more-link {
	display: inline-block;
}
.pp-more-link:hover {
	text-decoration: none;
}
.pp-infobox-icon-inner .dashicons,
.pp-infobox-icon-inner .dashicons-before:before {
	height: auto;
	width: auto;
}

/* Default layout */
.pp-infobox {
	border-width: 0;
	padding: 20px;
	text-align: center;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}
.pp-infobox-icon {
	border-width: 0;
	display: inline-block;
	margin: 0 auto;
	text-align: center;
}
.pp-infobox-icon-inner {
	display: table;
}
.pp-infobox-icon span {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-image {
	margin: 0 auto 10px;
	text-align: center;
}
.pp-infobox-image img {
	border-width: 0;
	height: 2em;
	width: 2em;
}
.pp-infobox-image a {
	text-decoration: none !important;
	box-shadow: none !important;
	border: none !important;
	outline: none !important;
}

/* Layouts */

/* Layout 1 */
.pp-infobox-wrap .layout-1 {
	text-align: left;
}
.pp-infobox-wrap .layout-1 .pp-heading-wrapper {
	display: table;
	margin-bottom: 5px;
}
.pp-infobox-wrap .layout-1 .pp-icon-wrapper,
.pp-infobox-wrap .layout-1 .pp-infobox-title-wrapper {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-1 .pp-infobox-title-wrapper .pp-infobox-title {
	margin-bottom: 0;
	margin-left: 10px;
}
.pp-infobox-wrap .layout-1 .pp-infobox-title-prefix {
	margin-bottom: 0;
	margin-left: 10px;
}
.pp-infobox-wrap .layout-1 .pp-heading-wrapper-inner {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-1 .pp-more-link.pp-title-link .pp-infobox-title-wrapper {
	display: block;
}

/* Layout 2 */
.pp-infobox-wrap .layout-2 {
	text-align: right;
}
.pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: table;
	float: right;
	margin-bottom: 5px;
}
.pp-infobox-wrap .layout-2 .pp-icon-wrapper {
	float: right;
}
.pp-infobox-wrap .layout-2 .pp-infobox-title-wrapper,
.pp-infobox-wrap .layout-2 .pp-icon-wrapper {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-2 .pp-infobox-title-wrapper .pp-infobox-title {
	margin-bottom: 0;
	margin-right: 10px;
}
.pp-infobox-wrap .layout-2 .pp-infobox-description {
	clear: both;
}
.pp-infobox-wrap .layout-2 .pp-header-wrapper-inner {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-2 .pp-more-link.pp-title-link .pp-infobox-title-wrapper {
	display: block;
}

.pp-infobox-wrap .layout-2 .pp-infobox-title-prefix {
	margin-bottom: 0;
	margin-right: 10px;
}

/* Layout 3 */
.pp-infobox-wrap .layout-3 {
	text-align: left;
}
.pp-infobox-wrap .layout-3-wrapper {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
	flex-shrink: 1;
}
.pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.pp-infobox-wrap .layout-3 .pp-heading-wrapper {
	flex: 1;
}

/* Layout 4 */
.pp-infobox-wrap .layout-4 {
	text-align: right;
}
.pp-infobox-wrap .layout-4-wrapper {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
	flex-shrink: 1;
}
.pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.pp-infobox-wrap .layout-4 .pp-heading-wrapper {
	flex: 1;
}
@media (max-width: 750px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }.fl-col-group-equal-height .fl-node-f3419x2evi6a,
.fl-col-group-equal-height .fl-node-f3419x2evi6a .fl-module-content,
.fl-col-group-equal-height .fl-node-f3419x2evi6a .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-f3419x2evi6a .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-f3419x2evi6a .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-f3419x2evi6a .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-large,
.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-medium,
.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-f3419x2evi6a .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-f3419x2evi6a .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-f3419x2evi6a .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 750px) {
	.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-f3419x2evi6a.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-f3419x2evi6a .pp-infobox .pp-infobox-title-prefix {
				}
.fl-node-f3419x2evi6a .pp-infobox-title-wrapper .pp-infobox-title {
		color: #af2042;
			margin-top: 0px;
			margin-bottom: 0px;
	}
.fl-node-f3419x2evi6a .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #af2042;
	}
.fl-node-f3419x2evi6a .pp-infobox-description {
			}
	.fl-node-f3419x2evi6a .pp-infobox:hover .pp-infobox-title-prefix {
					color: #600019;
			}
	.fl-node-f3419x2evi6a .pp-infobox:hover .pp-infobox-title {
					color: #600019;
			}
	.fl-node-f3419x2evi6a .pp-infobox:hover .pp-infobox-title a {
					color: #600019;
			}
	.fl-node-f3419x2evi6a .pp-infobox:hover .pp-infobox-description {
					color: #600019;
			}
	.fl-node-f3419x2evi6a .pp-infobox-icon {
					padding: 0px;
							background: #ffffff;
			}
	.fl-node-f3419x2evi6a .pp-infobox-icon-inner span.pp-icon {
					color: #af2042;
			}

	.fl-node-f3419x2evi6a .pp-infobox:hover .pp-infobox-icon {
					border-color: #600019;
			}
	.fl-node-f3419x2evi6a .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-f3419x2evi6a .pp-infobox:hover .pp-infobox-icon span.pp-icon {
					color: #600019;
			}

.fl-node-f3419x2evi6a .pp-infobox-icon-inner span.pp-icon,
.fl-node-f3419x2evi6a .pp-infobox-image img {
		border-top-left-radius: 200px;
	border-top-right-radius: 200px;
	border-bottom-left-radius: 200px;
	border-bottom-right-radius: 200px;
	}

.fl-node-f3419x2evi6a .pp-infobox-wrap .pp-infobox {
			background: #ffffff;
				text-align: left;
	}


.fl-node-f3419x2evi6a .pp-infobox:hover {
	}


.fl-node-f3419x2evi6a .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-3-wrapper,
.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-4-wrapper {
							align-items: center;
					}


.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 992px) {
	.fl-node-f3419x2evi6a .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 750px) {
	.fl-node-f3419x2evi6a .pp-infobox-wrap .pp-infobox {
				text-align: left;
			}
						.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-2 .pp-infobox-description,
			.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				float: left;
			}
			/*
			.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
				flex: 0 1 auto;
			}
			*/
		
		
				
}

	@media only screen and (max-width: 200px) {
		.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-f3419x2evi6a .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	font-size: 21px;
}
.fl-node-f3419x2evi6a .pp-infobox-icon, .fl-node-f3419x2evi6a .pp-infobox-image img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #af2042;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 200px;
	border-top-right-radius: 200px;
	border-bottom-left-radius: 200px;
	border-bottom-right-radius: 200px;
}
.fl-node-f3419x2evi6a .pp-infobox-icon-inner span.pp-icon, .fl-node-f3419x2evi6a .pp-infobox-icon-inner span:before {
	font-size: 25px;
}
.fl-node-f3419x2evi6a .pp-infobox-icon-inner {
	width: 50px;
	height: 50px;
}
.fl-node-f3419x2evi6a .pp-infobox {
	padding-top: 0px;
	padding-bottom: 0px;
}
.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-f3419x2evi6a .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-f3419x2evi6a > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-f3419x2evi6a.fl-module > .fl-module-content {
	margin-left:0px;
}
}
@media ( max-width: 750px ) {
 .fl-node-f3419x2evi6a.fl-module > .fl-module-content {
	margin-top:20px;
	margin-left:0px;
}
}
.fl-animated.fl-fade-in {
	animation: fl-fade-in 1s ease;
	-webkit-animation: fl-fade-in 1s ease;
}
@-webkit-keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fl-row .fl-col h2.fl-node-3x4rft5ad6p1,
		.fl-row .fl-col h2.fl-node-3x4rft5ad6p1 a,
		h2.fl-node-3x4rft5ad6p1,
		h2.fl-node-3x4rft5ad6p1 a {
	color: #ffffff;
}
.fl-node-3x4rft5ad6p1.fl-module-heading, .fl-node-3x4rft5ad6p1.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
@media(max-width: 750px) {
	.fl-node-3x4rft5ad6p1.fl-module-heading, .fl-node-3x4rft5ad6p1.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
		text-align: left;
	}
}
 .fl-node-3x4rft5ad6p1.fl-module-heading {
	margin-bottom:10px;
}
.pp-photo-container .pp-photo-align-left {
    text-align: left;
}
.pp-photo-container .pp-photo-align-center {
    text-align: center;
}
.pp-photo-container .pp-photo-align-right {
    text-align: right;
}

.pp-photo {
	line-height: 0;
	position: relative;
}
.pp-photo-align-left {
	text-align: left;
}
.pp-photo-align-center {
	text-align: center;
}
.pp-photo-align-right {
	text-align: right;
}
.pp-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.pp-photo-content img {
	display: inline;
	max-width: 100%;
}
.fl-builder-content[data-shrink="1"] img.pp-photo-img:not([src$=".svg"]) {
    width: auto;
    height: auto;
}
.fl-builder-content[data-shrink="1"] .shrink-header-fix img.pp-photo-img:not([src$=".svg"]) {
	width: auto !important;
}
.pp-photo-crop-circle img {
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
}
.pp-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
    width: 100%;
}
.pp-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.pp-photo-align-center .pp-photo-caption-below {
	margin: 0 auto;
}
.pp-photo-caption-overlay {
	bottom: 0;
	color: #fff;
	left: 0;
	padding: 10px 15px;
	position: absolute;
	right: 0;
	transition:opacity 0.3s ease-in;
}
.pp-overlay-wrap .pp-overlay-bg {
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .3s linear;
}
.pp-photo-caption-hover {
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .3s linear;
}
.pp-photo-container .pp-photo-content:hover .pp-overlay-bg,
.pp-photo-container .pp-photo-content:hover .pp-photo-caption-hover,
.pp-photo-container .pp-photo-content.on-hover .pp-overlay-bg,
.pp-photo-container .pp-photo-content.on-hover .pp-photo-caption-hover {
    opacity: 1;
    transition: opacity .3s linear;
}
.pp-photo-container a:focus {
    outline: none;
}
.pp-photo-container .pp-photo-content .pp-photo-content-inner {
    overflow: hidden;
    position: relative;
}
.pp-photo-content-inner img {
	transition-duration: 0.3s;
}

.pp-photo-rollover .pp-photo-content {
	display: inline-grid;
    grid-template-columns: 1fr;
}
.pp-photo-rollover .pp-photo-content-inner {
	grid-row-start: 1;
    grid-column-start: 1;
	opacity: 1;
	/* transition: none !important; */
}
.pp-photo-rollover .pp-photo-content.is-hover .pp-photo-content-inner:first-child,
.pp-photo-rollover .pp-photo-content:not(.is-hover) .pp-photo-content-inner:last-of-type {
	opacity: 0;
	visibility: hidden;
}

.pp-photo-rollover .pp-overlay-bg,
.pp-photo-rollover .pp-photo-caption-hover {
	display: none !important;
}.fl-node-6tjhevwlpuo0 .pp-photo-container .pp-photo-content {
	}


.fl-node-6tjhevwlpuo0 .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	background-clip: border-box;
	transition: all 0.3s ease-in-out;
}

.fl-node-6tjhevwlpuo0 .pp-photo-container .pp-photo-content:hover .pp-photo-content-inner {
	}

.fl-node-6tjhevwlpuo0 .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-6tjhevwlpuo0 .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
        			border-color: #000000;
		        			border-width: 1px;
				border-style: none;
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }

.fl-node-6tjhevwlpuo0 .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


.fl-node-6tjhevwlpuo0 .pp-overlay-wrap .pp-overlay-bg {
    			background-color: #dddddd;
	    		border-top-left-radius: px;
		border-top-right-radius: px;
		border-bottom-left-radius: px;
		border-bottom-right-radius: px;
	}

@media only screen and (max-width: 992px) {
	    .fl-node-6tjhevwlpuo0 .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}

@media only screen and (max-width: 750px) {
	.fl-node-6tjhevwlpuo0 .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-6tjhevwlpuo0 .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-6tjhevwlpuo0 .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-6tjhevwlpuo0 .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-6tjhevwlpuo0 .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-6tjhevwlpuo0 .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-6tjhevwlpuo0 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
body.fl-builder {
	overflow-x: hidden;
}

.fl-animated.fl-slide-in-left {
  	animation: fl-slide-in-left 1s ease;
  	-webkit-animation: fl-slide-in-left 1s ease;
}
@-webkit-keyframes fl-slide-in-left {
  from {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-slide-in-left {
  from {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fl-row .fl-col h2.fl-node-2tgz6np9yh5b,
		.fl-row .fl-col h2.fl-node-2tgz6np9yh5b a,
		h2.fl-node-2tgz6np9yh5b,
		h2.fl-node-2tgz6np9yh5b a {
	color: #ffffff;
}
.fl-node-2tgz6np9yh5b.fl-module-heading, .fl-node-2tgz6np9yh5b.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
@media(max-width: 750px) {
	.fl-node-2tgz6np9yh5b.fl-module-heading, .fl-node-2tgz6np9yh5b.fl-module-heading :where(a, q, p, span) {
		font-size: 22px;
	}
}
.fl-col-group-equal-height .fl-node-h9fxtvwndzma,
.fl-col-group-equal-height .fl-node-h9fxtvwndzma .fl-module-content,
.fl-col-group-equal-height .fl-node-h9fxtvwndzma .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-h9fxtvwndzma .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-h9fxtvwndzma .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-h9fxtvwndzma .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-large,
.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-medium,
.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-h9fxtvwndzma .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-h9fxtvwndzma .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-h9fxtvwndzma .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 750px) {
	.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h9fxtvwndzma.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-h9fxtvwndzma .pp-infobox .pp-infobox-title-prefix {
			color: #ffffff;
			}
.fl-node-h9fxtvwndzma .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 0px;
			margin-bottom: 0px;
	}
.fl-node-h9fxtvwndzma .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-h9fxtvwndzma .pp-infobox-description {
			}
	.fl-node-h9fxtvwndzma .pp-infobox:hover .pp-infobox-title-prefix {
					color: #e2e2e2;
			}
	.fl-node-h9fxtvwndzma .pp-infobox:hover .pp-infobox-title {
					color: #e2e2e2;
			}
	.fl-node-h9fxtvwndzma .pp-infobox:hover .pp-infobox-title a {
					color: #e2e2e2;
			}
	.fl-node-h9fxtvwndzma .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-h9fxtvwndzma .pp-infobox-icon {
					padding: 0px;
							background: #ffffff;
			}
	.fl-node-h9fxtvwndzma .pp-infobox-icon-inner span.pp-icon {
			}

	.fl-node-h9fxtvwndzma .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-h9fxtvwndzma .pp-infobox:hover .pp-infobox-icon {
					background: #dbdbdb;
			}
	.fl-node-h9fxtvwndzma .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-h9fxtvwndzma .pp-infobox-icon-inner span.pp-icon,
.fl-node-h9fxtvwndzma .pp-infobox-image img {
		border-top-left-radius: 200px;
	border-top-right-radius: 200px;
	border-bottom-left-radius: 200px;
	border-bottom-right-radius: 200px;
	}

.fl-node-h9fxtvwndzma .pp-infobox-wrap .pp-infobox {
			background: #af2042;
				text-align: right;
	}


.fl-node-h9fxtvwndzma .pp-infobox:hover {
	}


.fl-node-h9fxtvwndzma .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-3-wrapper,
.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-4-wrapper {
							align-items: center;
					}


.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}



	.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-2 .pp-heading-wrapper,
	.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: right;
	}
	.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		justify-content: flex-end;
	}
	.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-1 .pp-infobox-description {
		clear: both;
	}
	/*.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-3 .pp-heading-wrapper {
		flex: 0 1 auto;
	}
	.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
		flex: 1;
		text-align: right;
	}*/
	.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 1;
	}
	.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		/*flex: 0 1 auto;*/
		text-align: right;
	}

@media only screen and (max-width: 992px) {
	.fl-node-h9fxtvwndzma .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 750px) {
	.fl-node-h9fxtvwndzma .pp-infobox-wrap .pp-infobox {
				text-align: right;
			}
			
		
					.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-2 .pp-heading-wrapper,
			.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: right;
			}
			.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-1 .pp-infobox-description {
				clear: both;
			}
			.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-3 .pp-heading-wrapper {
				flex: 0 1 auto;
			}
			.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
				flex: 1;
				text-align: right;
			}
			.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
				flex: 1;
			}
			.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: 0;
				text-align: right;
			}
				
}

	@media only screen and (max-width: 200px) {
		.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
																			align-items: flex-end;
									}
	}
.fl-node-h9fxtvwndzma .pp-infobox-title-prefix {
	font-weight: 400;
	font-size: 15px;
}
.fl-node-h9fxtvwndzma .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 17px;
}
.fl-node-h9fxtvwndzma .pp-infobox-icon, .fl-node-h9fxtvwndzma .pp-infobox-image img {
	border-top-left-radius: 200px;
	border-top-right-radius: 200px;
	border-bottom-left-radius: 200px;
	border-bottom-right-radius: 200px;
}
.fl-node-h9fxtvwndzma .pp-infobox-icon-inner span.pp-icon, .fl-node-h9fxtvwndzma .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-h9fxtvwndzma .pp-infobox-icon-inner {
	width: 60px;
	height: 60px;
}
.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-h9fxtvwndzma .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
@media(max-width: 1200px) {
	.fl-node-h9fxtvwndzma .pp-infobox-title-prefix {
		font-size: 13px;
	}
	.fl-node-h9fxtvwndzma .pp-infobox-title-wrapper .pp-infobox-title {
		font-size: 14px;
	}
}
@media(max-width: 750px) {
	.fl-node-h9fxtvwndzma .pp-infobox {
		padding-bottom: 0px;
	}
}
 .fl-node-h9fxtvwndzma > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}


.fl-builder-content .fl-node-qj69hnifb8wl a.fl-button,
.fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:visited,
.fl-builder-content .fl-node-qj69hnifb8wl a.fl-button *,
.fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:visited *,
.fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button,
.fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:visited,
.fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button *,
.fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:visited * {
	color: #af2042;
}












.fl-node-qj69hnifb8wl.fl-button-wrap, .fl-node-qj69hnifb8wl .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-qj69hnifb8wl a.fl-button, .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:visited, .fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button, .fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:visited {
	font-weight: 700;
	text-transform: uppercase;
	border: 1px solid #f3f3f3;
	background-color: #ffffff;
}
.fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:hover, .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:focus, .fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:hover, .fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:focus {
	border: 1px solid #d4d4d4;
}
.fl-builder-content .fl-node-qj69hnifb8wl a.fl-button, .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:visited, .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:hover, .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:focus, .fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button, .fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:visited, .fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:hover, .fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
}
.fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:hover, .fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:hover, .fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-qj69hnifb8wl a.fl-button:hover {
	background-color: #e0e0e0;
}
@media ( max-width: 750px ) {
 .fl-node-qj69hnifb8wl.fl-module-button.fl-module {
	margin-top:10px;
}
}
.fl-row .fl-col h2.fl-node-j98375yplwu2,
		.fl-row .fl-col h2.fl-node-j98375yplwu2 a,
		h2.fl-node-j98375yplwu2,
		h2.fl-node-j98375yplwu2 a {
	color: #ffffff;
}
@media(max-width: 750px) {
	.fl-node-j98375yplwu2.fl-module-heading, .fl-node-j98375yplwu2.fl-module-heading :where(a, q, p, span) {
		font-size: 23px;
	}
}
 .fl-node-j98375yplwu2.fl-module-heading {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-j98375yplwu2.fl-module-heading.fl-module {
	margin-top:40px;
}
}
@media ( max-width: 750px ) {
 .fl-node-j98375yplwu2.fl-module-heading.fl-module {
	margin-top:40px;
}
}
.fl-col-group-equal-height .fl-node-34v61d9fan5u,
.fl-col-group-equal-height .fl-node-34v61d9fan5u .fl-module-content,
.fl-col-group-equal-height .fl-node-34v61d9fan5u .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-34v61d9fan5u .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-34v61d9fan5u .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-34v61d9fan5u .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-large,
.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-medium,
.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-34v61d9fan5u .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-34v61d9fan5u .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-34v61d9fan5u .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 750px) {
	.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-34v61d9fan5u.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-34v61d9fan5u .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-34v61d9fan5u .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 10px;
	}
.fl-node-34v61d9fan5u .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-34v61d9fan5u .pp-infobox-description {
			}
	.fl-node-34v61d9fan5u .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-34v61d9fan5u .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-34v61d9fan5u .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-34v61d9fan5u .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-34v61d9fan5u .pp-infobox-icon {
					padding: 0px;
							background: #af2042;
			}
	.fl-node-34v61d9fan5u .pp-infobox-icon-inner span.pp-icon {
					color: #ffffff;
			}

	.fl-node-34v61d9fan5u .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-34v61d9fan5u .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-34v61d9fan5u .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-34v61d9fan5u .pp-infobox-icon-inner span.pp-icon,
.fl-node-34v61d9fan5u .pp-infobox-image img {
		border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
	}

.fl-node-34v61d9fan5u .pp-infobox-wrap .pp-infobox {
			background: #ffffff;
				text-align: center;
	}


.fl-node-34v61d9fan5u .pp-infobox:hover {
	}


.fl-node-34v61d9fan5u .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-3-wrapper,
.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-34v61d9fan5u .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 750px) {
	.fl-node-34v61d9fan5u .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-34v61d9fan5u .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}
.fl-node-34v61d9fan5u .pp-infobox-description {
	font-size: 14px;
}
.fl-node-34v61d9fan5u .pp-infobox-icon, .fl-node-34v61d9fan5u .pp-infobox-image img {
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
}
.fl-node-34v61d9fan5u .pp-infobox-icon-inner span.pp-icon, .fl-node-34v61d9fan5u .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-34v61d9fan5u .pp-infobox-icon-inner {
	width: 65px;
	height: 65px;
}
.fl-node-34v61d9fan5u .pp-infobox {
	padding-right: 5px;
	padding-left: 5px;
}
.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-34v61d9fan5u .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-91jwgzuph4e0,
.fl-col-group-equal-height .fl-node-91jwgzuph4e0 .fl-module-content,
.fl-col-group-equal-height .fl-node-91jwgzuph4e0 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-91jwgzuph4e0 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-91jwgzuph4e0 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-91jwgzuph4e0 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-large,
.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-medium,
.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-91jwgzuph4e0 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-91jwgzuph4e0 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-91jwgzuph4e0 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 750px) {
	.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-91jwgzuph4e0.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-91jwgzuph4e0 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-91jwgzuph4e0 .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 10px;
	}
.fl-node-91jwgzuph4e0 .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-91jwgzuph4e0 .pp-infobox-description {
			}
	.fl-node-91jwgzuph4e0 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-91jwgzuph4e0 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-91jwgzuph4e0 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-91jwgzuph4e0 .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-91jwgzuph4e0 .pp-infobox-icon {
					padding: 0px;
							background: #af2042;
			}
	.fl-node-91jwgzuph4e0 .pp-infobox-icon-inner span.pp-icon {
					color: #ffffff;
			}

	.fl-node-91jwgzuph4e0 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-91jwgzuph4e0 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-91jwgzuph4e0 .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-91jwgzuph4e0 .pp-infobox-icon-inner span.pp-icon,
.fl-node-91jwgzuph4e0 .pp-infobox-image img {
		border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
	}

.fl-node-91jwgzuph4e0 .pp-infobox-wrap .pp-infobox {
			background: #ffffff;
				text-align: center;
	}


.fl-node-91jwgzuph4e0 .pp-infobox:hover {
	}


.fl-node-91jwgzuph4e0 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-91jwgzuph4e0 .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 750px) {
	.fl-node-91jwgzuph4e0 .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-91jwgzuph4e0 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}
.fl-node-91jwgzuph4e0 .pp-infobox-description {
	font-size: 14px;
}
.fl-node-91jwgzuph4e0 .pp-infobox-icon, .fl-node-91jwgzuph4e0 .pp-infobox-image img {
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
}
.fl-node-91jwgzuph4e0 .pp-infobox-icon-inner span.pp-icon, .fl-node-91jwgzuph4e0 .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-91jwgzuph4e0 .pp-infobox-icon-inner {
	width: 65px;
	height: 65px;
}
.fl-node-91jwgzuph4e0 .pp-infobox {
	padding-right: 5px;
	padding-left: 5px;
}
.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-91jwgzuph4e0 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-hzs4bmofl1cw,
.fl-col-group-equal-height .fl-node-hzs4bmofl1cw .fl-module-content,
.fl-col-group-equal-height .fl-node-hzs4bmofl1cw .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-hzs4bmofl1cw .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-hzs4bmofl1cw .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-hzs4bmofl1cw .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-large,
.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-medium,
.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-hzs4bmofl1cw .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-hzs4bmofl1cw .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-hzs4bmofl1cw .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 750px) {
	.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hzs4bmofl1cw.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-hzs4bmofl1cw .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-hzs4bmofl1cw .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 10px;
	}
.fl-node-hzs4bmofl1cw .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-hzs4bmofl1cw .pp-infobox-description {
			}
	.fl-node-hzs4bmofl1cw .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-hzs4bmofl1cw .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-hzs4bmofl1cw .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-hzs4bmofl1cw .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-hzs4bmofl1cw .pp-infobox-icon {
					padding: 0px;
							background: #af2042;
			}
	.fl-node-hzs4bmofl1cw .pp-infobox-icon-inner span.pp-icon {
					color: #ffffff;
			}

	.fl-node-hzs4bmofl1cw .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-hzs4bmofl1cw .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-hzs4bmofl1cw .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-hzs4bmofl1cw .pp-infobox-icon-inner span.pp-icon,
.fl-node-hzs4bmofl1cw .pp-infobox-image img {
		border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
	}

.fl-node-hzs4bmofl1cw .pp-infobox-wrap .pp-infobox {
			background: #ffffff;
				text-align: center;
	}


.fl-node-hzs4bmofl1cw .pp-infobox:hover {
	}


.fl-node-hzs4bmofl1cw .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-3-wrapper,
.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-hzs4bmofl1cw .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 750px) {
	.fl-node-hzs4bmofl1cw .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-hzs4bmofl1cw .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}
.fl-node-hzs4bmofl1cw .pp-infobox-description {
	font-size: 14px;
}
.fl-node-hzs4bmofl1cw .pp-infobox-icon, .fl-node-hzs4bmofl1cw .pp-infobox-image img {
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
}
.fl-node-hzs4bmofl1cw .pp-infobox-icon-inner span.pp-icon, .fl-node-hzs4bmofl1cw .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-hzs4bmofl1cw .pp-infobox-icon-inner {
	width: 65px;
	height: 65px;
}
.fl-node-hzs4bmofl1cw .pp-infobox {
	padding-right: 5px;
	padding-left: 5px;
}
.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-hzs4bmofl1cw .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-vb14q57thp9d,
.fl-col-group-equal-height .fl-node-vb14q57thp9d .fl-module-content,
.fl-col-group-equal-height .fl-node-vb14q57thp9d .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-vb14q57thp9d .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-vb14q57thp9d .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-vb14q57thp9d .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-large,
.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-medium,
.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-vb14q57thp9d .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-vb14q57thp9d .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-vb14q57thp9d .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 750px) {
	.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vb14q57thp9d.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-vb14q57thp9d .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-vb14q57thp9d .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 10px;
	}
.fl-node-vb14q57thp9d .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-vb14q57thp9d .pp-infobox-description {
			}
	.fl-node-vb14q57thp9d .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-vb14q57thp9d .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-vb14q57thp9d .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-vb14q57thp9d .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-vb14q57thp9d .pp-infobox-icon {
					padding: 0px;
							background: #af2042;
			}
	.fl-node-vb14q57thp9d .pp-infobox-icon-inner span.pp-icon {
					color: #ffffff;
			}

	.fl-node-vb14q57thp9d .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-vb14q57thp9d .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-vb14q57thp9d .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-vb14q57thp9d .pp-infobox-icon-inner span.pp-icon,
.fl-node-vb14q57thp9d .pp-infobox-image img {
		border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
	}

.fl-node-vb14q57thp9d .pp-infobox-wrap .pp-infobox {
			background: #ffffff;
				text-align: center;
	}


.fl-node-vb14q57thp9d .pp-infobox:hover {
	}


.fl-node-vb14q57thp9d .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-3-wrapper,
.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-vb14q57thp9d .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 750px) {
	.fl-node-vb14q57thp9d .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-vb14q57thp9d .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}
.fl-node-vb14q57thp9d .pp-infobox-description {
	font-size: 14px;
}
.fl-node-vb14q57thp9d .pp-infobox-icon, .fl-node-vb14q57thp9d .pp-infobox-image img {
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
}
.fl-node-vb14q57thp9d .pp-infobox-icon-inner span.pp-icon, .fl-node-vb14q57thp9d .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-vb14q57thp9d .pp-infobox-icon-inner {
	width: 65px;
	height: 65px;
}
.fl-node-vb14q57thp9d .pp-infobox {
	padding-right: 5px;
	padding-left: 5px;
}
.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-vb14q57thp9d .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
	.fl-builder-content .fl-node-uj07o6dpivyk.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-uj07o6dpivyk.fl-module-rich-text.fl-rich-text * {
		color: #ffffff;
	}
	@media(max-width: 750px) {
	.fl-builder-content .fl-node-uj07o6dpivyk.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-uj07o6dpivyk.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 37px;
		text-align: center;
	}
}
@media ( max-width: 750px ) {
 .fl-node-uj07o6dpivyk.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-bottom:0px;
}
}
.fl-col-group-equal-height .fl-node-xeabpkqi4rc0,
.fl-col-group-equal-height .fl-node-xeabpkqi4rc0 .fl-module-content,
.fl-col-group-equal-height .fl-node-xeabpkqi4rc0 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-xeabpkqi4rc0 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-xeabpkqi4rc0 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-xeabpkqi4rc0 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-large,
.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-medium,
.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-xeabpkqi4rc0 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-xeabpkqi4rc0 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-xeabpkqi4rc0 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 750px) {
	.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xeabpkqi4rc0.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-xeabpkqi4rc0 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-xeabpkqi4rc0 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 0px;
			margin-bottom: 0px;
	}
.fl-node-xeabpkqi4rc0 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-xeabpkqi4rc0 .pp-infobox-description {
			}
	.fl-node-xeabpkqi4rc0 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-xeabpkqi4rc0 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-xeabpkqi4rc0 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-xeabpkqi4rc0 .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-xeabpkqi4rc0 .pp-infobox-icon {
					padding: 0px;
					}
	.fl-node-xeabpkqi4rc0 .pp-infobox-icon-inner span.pp-icon {
					color: #ffffff;
			}

	.fl-node-xeabpkqi4rc0 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-xeabpkqi4rc0 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-xeabpkqi4rc0 .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-xeabpkqi4rc0 .pp-infobox-icon-inner span.pp-icon,
.fl-node-xeabpkqi4rc0 .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .pp-infobox {
			background: #af2042;
				text-align: center;
	}


.fl-node-xeabpkqi4rc0 .pp-infobox:hover {
		background: #600019;
	}


.fl-node-xeabpkqi4rc0 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-xeabpkqi4rc0 .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 750px) {
	.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-xeabpkqi4rc0 .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 27px;
}
.fl-node-xeabpkqi4rc0 .pp-infobox-icon-inner span.pp-icon, .fl-node-xeabpkqi4rc0 .pp-infobox-icon-inner span:before {
	font-size: 16px;
}
.fl-node-xeabpkqi4rc0 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-xeabpkqi4rc0 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-xeabpkqi4rc0 > .fl-module-content {
	margin-top:100px;
}
@media ( max-width: 992px ) {
 .fl-node-xeabpkqi4rc0.fl-module > .fl-module-content {
	margin-top:130px;
}
}
@media ( max-width: 750px ) {
 .fl-node-xeabpkqi4rc0.fl-module > .fl-module-content {
	margin-top:170px;
	margin-right:0px;
	margin-left:0px;
}
}
.fl-animated.fl-zoom-in {
	animation: fl-zoom-in 1s ease;
	-webkit-animation: fl-zoom-in 1s ease;
}
@-webkit-keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.uabb-info-list .uabb-info-list-left,
.uabb-info-list .uabb-info-list-right {
	float: none;
}

.uabb-info-list .uabb-info-list-wrapper > li {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

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

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

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

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

.uabb-info-list-content .uabb-info-list-description p:last-of-type {
	margin-bottom: 0;
}

.uabb-info-list-connector,
.uabb-info-list-connector-top {
	height: 100%;
	position: absolute;
	z-index: 1;
	border-width: 0 0 0 1px;
}

.uabb-info-list-connector-top {
	top: 0;
}

.uabb-info-list-content-wrapper.uabb-info-list-left .uabb-info-list-icon,
.uabb-info-list-content-wrapper.uabb-info-list-right .uabb-info-list-icon {
	display: inline-block;
	vertical-align: top;
}

.uabb-info-list-content-wrapper.uabb-info-list-left .uabb-info-list-icon {
	margin-right: 20px;
}

.uabb-info-list-content-wrapper.uabb-info-list-right {
	text-align: right;
	direction: rtl;
}

.uabb-info-list-content-wrapper.uabb-info-list-right * {
	direction: ltr;
}

.uabb-info-list-content-wrapper.uabb-info-list-right .uabb-info-list-icon {
	margin-left: 20px;
}

.uabb-info-list-wrapper.uabb-info-list-top li .uabb-info-list-icon {
	float: none;
	margin: 0 auto;
}

.uabb-info-list-wrapper.uabb-info-list-top li .uabb-info-list-content {
	margin: 15px;
	padding-bottom: 0;
	text-align: center;
}

.uabb-info-list-wrapper.uabb-info-list-top li .uabb-info-list-connector {
	height: 0;
	left: 50%;
	margin-left: 0;
	position: absolute;
	width: 100%;
}

.uabb-info-list-content.uabb-info-list-top {
	margin-right: 1em;
	padding: 0;
}

.uabb-info-list-link {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 9;
}
.uabb-info-list-link {
	position: relative;
}

.uabb-info-list-item .uabb-info-list-icon .uabb-icon-wrap {
	vertical-align: middle;
}

.uabb-info-list-item .uabb-info-list-icon a {
	box-shadow: none;
}

.uabb-info-list-wrapper.uabb-info-list-top .uabb-info-list-item {
	width: 100%;
	vertical-align: top;
}

.uabb-imgicon-wrap .uabb-icon i {
	margin: 0;
}

.uabb-info-list .uabb-info-list-wrapper,
.uabb-info-list-content-wrapper .uabb-info-list-content h2,
.uabb-info-list-content-wrapper .uabb-info-list-content h3,
.uabb-info-list-content-wrapper .uabb-info-list-content h4,
.uabb-info-list-content-wrapper .uabb-info-list-content h5,
.uabb-info-list-content-wrapper .uabb-info-list-content h6 {
	margin: 0;
	padding: 0;
}

.uabb-info-list-content-wrapper,
.uabb-info-list-icon {
	position: relative;
	z-index: 4;
}

.uabb-info-list-item:first-child .uabb-info-list-connector-top,
.uabb-info-list-wrapper li:last-child .uabb-info-list-connector {
	display: none;
}

.uabb-info-list-content-wrapper.uabb-info-list-left .uabb-info-list-content,
.uabb-info-list-content-wrapper.uabb-info-list-right .uabb-info-list-content,
.uabb-info-list-wrapper.uabb-info-list-top li,
.uabb-info-list-icon .icon {
	display: inline-block;
}

.uabb-info-list-content-wrapper.uabb-info-list-top .uabb-info-list-icon,
.uabb-info-list-content-wrapper.uabb-info-list-top .uabb-info-list-content,
.uabb-info-list-wrapper.uabb-info-list-top {
	display: block;
}

@media only screen and (max-width:767px) {
	.uabb-info-list-wrapper.uabb-info-list-top .uabb-info-list-item .uabb-info-list-connector {
		display: none;
	}
}

	.fl-builder-content .fl-node-gmvwpoux4dyn .uabb-info-list-icon {
		vertical-align: middle;
	}
	.fl-builder-content .fl-node-gmvwpoux4dyn .uabb-info-list-content {
		vertical-align: middle;
	}
		
.fl-node-gmvwpoux4dyn .uabb-info-list-wrapper .uabb-info-list-item:last-child {
	padding-bottom: 0;
}


	.fl-node-gmvwpoux4dyn .uabb-info-list-content-wrapper.uabb-info-list-left .uabb-info-list-content {
				width: calc( 100% - 95px );
	}
	.fl-node-gmvwpoux4dyn .uabb-info-list-wrapper.uabb-info-list-left li .uabb-info-list-connector,
	.fl-node-gmvwpoux4dyn .uabb-info-list-wrapper.uabb-info-list-left li .uabb-info-list-connector-top {
				left: 37.5px;
	}

			.fl-node-gmvwpoux4dyn .uabb-info-list-wrapper .uabb-info-list-item {
			padding-bottom: 30px;
		}
				.fl-node-gmvwpoux4dyn .uabb-info-list .uabb-info-list-icon .custom-character0 {

		
			text-align: center;
			color: #af2042;
			font-size:37.5px;
			width:75px;
			height:75px;
			line-height:75px;
							background: #af2042;
									border-radius: 100%;
								}
		
	/* Global Alignment Css */
	.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-imgicon-wrap {
					text-align: center;
			}

	
		/* Icon Css */
		.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i,
		.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:before {

			color: #ffffff			;
			font-size: 37.5px;
			height: auto;
			width: auto;
							background: #af2042;
								border-radius: 100%;
				-moz-border-radius: 100%;
				-webkit-border-radius: 100%;
								line-height:
					75px;
				height:
					75px;				width:
					75px;				text-align: center;
				display: flex;
				align-items: center;
				justify-content: center;
					
						
			/* Gradient Style */
					}

		.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
														

			color: ;

								}

		.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
				.fl-node-gmvwpoux4dyn .info-list-icon-dynamic0 .uabb-imgicon-wrap .uabb-photo-img {
							background: #af2042;
							}
					.fl-node-gmvwpoux4dyn .uabb-info-list .uabb-info-list-icon .custom-character1 {

		
			text-align: center;
			color: #af2042;
			font-size:37.5px;
			width:75px;
			height:75px;
			line-height:75px;
							background: #af2042;
									border-radius: 100%;
								}
		
	/* Global Alignment Css */
	.fl-node-gmvwpoux4dyn .info-list-icon-dynamic1 .uabb-imgicon-wrap {
					text-align: center;
			}

	
		.fl-node-gmvwpoux4dyn .info-list-icon-dynamic1 .uabb-image .uabb-photo-img {
							width: 75px;
								}

		.fl-node-gmvwpoux4dyn .info-list-icon-dynamic1 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-gmvwpoux4dyn .info-list-icon-dynamic1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-gmvwpoux4dyn .info-list-icon-dynamic1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
				.fl-node-gmvwpoux4dyn .info-list-icon-dynamic1 .uabb-imgicon-wrap .uabb-photo-img {
							background: #af2042;
							}
			
.fl-node-gmvwpoux4dyn .uabb-icon i {
	float: none;
}
.fl-node-gmvwpoux4dyn .uabb-icon {
	display: block;
}
.fl-node-gmvwpoux4dyn .uabb-info-list-content .uabb-info-list-title,
.fl-node-gmvwpoux4dyn .uabb-info-list-content .uabb-info-list-title * {
			color: #ffffff;
			}
.fl-node-gmvwpoux4dyn .uabb-info-list-content .uabb-info-list-description {
			color: #ffffff;
	}


/* Typography responsive layout starts here */


	@media ( max-width: 992px) {
					.fl-node-gmvwpoux4dyn .uabb-info-list .uabb-info-list-left,
			.fl-node-gmvwpoux4dyn .uabb-info-list .uabb-info-list-right {
				text-align: ;
			}
			}

	@media ( max-width: 750px ) {
					.fl-node-gmvwpoux4dyn .uabb-info-list .uabb-info-list-left,
			.fl-node-gmvwpoux4dyn .uabb-info-list .uabb-info-list-right {
				text-align: ;
			}
				}
	/* Typography responsive layout Ends here */
.fl-node-gmvwpoux4dyn .uabb-info-list-content .uabb-info-list-title,.fl-node-gmvwpoux4dyn .uabb-info-list-content .uabb-info-list-title * {
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
}
 .fl-node-gmvwpoux4dyn > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 992px ) {
 .fl-node-gmvwpoux4dyn.fl-module > .fl-module-content {
	margin-left:40px;
}
}
@media ( max-width: 750px ) {
 .fl-node-gmvwpoux4dyn.fl-module > .fl-module-content {
	margin-bottom:40px;
	margin-left:20px;
}
}


	.fl-builder-content .fl-node-bjgt7cndyz1f .uabb-info-list-icon {
		vertical-align: middle;
	}
	.fl-builder-content .fl-node-bjgt7cndyz1f .uabb-info-list-content {
		vertical-align: middle;
	}
		
.fl-node-bjgt7cndyz1f .uabb-info-list-wrapper .uabb-info-list-item:last-child {
	padding-bottom: 0;
}


	.fl-node-bjgt7cndyz1f .uabb-info-list-content-wrapper.uabb-info-list-left .uabb-info-list-content {
				width: calc( 100% - 95px );
	}
	.fl-node-bjgt7cndyz1f .uabb-info-list-wrapper.uabb-info-list-left li .uabb-info-list-connector,
	.fl-node-bjgt7cndyz1f .uabb-info-list-wrapper.uabb-info-list-left li .uabb-info-list-connector-top {
				left: 37.5px;
	}

			.fl-node-bjgt7cndyz1f .uabb-info-list-wrapper .uabb-info-list-item {
			padding-bottom: 30px;
		}
				.fl-node-bjgt7cndyz1f .uabb-info-list .uabb-info-list-icon .custom-character0 {

		
			text-align: center;
			color: #af2042;
			font-size:37.5px;
			width:75px;
			height:75px;
			line-height:75px;
							background: #af2042;
									border-radius: 100%;
								}
		
	/* Global Alignment Css */
	.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-imgicon-wrap {
					text-align: center;
			}

	
		/* Icon Css */
		.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i,
		.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:before {

			color: #ffffff			;
			font-size: 37.5px;
			height: auto;
			width: auto;
							background: #af2042;
								border-radius: 100%;
				-moz-border-radius: 100%;
				-webkit-border-radius: 100%;
								line-height:
					75px;
				height:
					75px;				width:
					75px;				text-align: center;
				display: flex;
				align-items: center;
				justify-content: center;
					
						
			/* Gradient Style */
					}

		.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
														

			color: ;

								}

		.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
				.fl-node-bjgt7cndyz1f .info-list-icon-dynamic0 .uabb-imgicon-wrap .uabb-photo-img {
							background: #af2042;
							}
					.fl-node-bjgt7cndyz1f .uabb-info-list .uabb-info-list-icon .custom-character1 {

		
			text-align: center;
			color: #af2042;
			font-size:37.5px;
			width:75px;
			height:75px;
			line-height:75px;
							background: #af2042;
									border-radius: 100%;
								}
		
	/* Global Alignment Css */
	.fl-node-bjgt7cndyz1f .info-list-icon-dynamic1 .uabb-imgicon-wrap {
					text-align: center;
			}

	
		.fl-node-bjgt7cndyz1f .info-list-icon-dynamic1 .uabb-image .uabb-photo-img {
							width: 75px;
								}

		.fl-node-bjgt7cndyz1f .info-list-icon-dynamic1 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-bjgt7cndyz1f .info-list-icon-dynamic1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-bjgt7cndyz1f .info-list-icon-dynamic1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
				.fl-node-bjgt7cndyz1f .info-list-icon-dynamic1 .uabb-imgicon-wrap .uabb-photo-img {
							background: #af2042;
							}
			
.fl-node-bjgt7cndyz1f .uabb-icon i {
	float: none;
}
.fl-node-bjgt7cndyz1f .uabb-icon {
	display: block;
}
.fl-node-bjgt7cndyz1f .uabb-info-list-content .uabb-info-list-title,
.fl-node-bjgt7cndyz1f .uabb-info-list-content .uabb-info-list-title * {
			color: #ffffff;
			}
.fl-node-bjgt7cndyz1f .uabb-info-list-content .uabb-info-list-description {
			color: #ffffff;
	}


/* Typography responsive layout starts here */


	@media ( max-width: 992px) {
					.fl-node-bjgt7cndyz1f .uabb-info-list .uabb-info-list-left,
			.fl-node-bjgt7cndyz1f .uabb-info-list .uabb-info-list-right {
				text-align: ;
			}
			}

	@media ( max-width: 750px ) {
					.fl-node-bjgt7cndyz1f .uabb-info-list .uabb-info-list-left,
			.fl-node-bjgt7cndyz1f .uabb-info-list .uabb-info-list-right {
				text-align: ;
			}
				}
	/* Typography responsive layout Ends here */
.fl-node-bjgt7cndyz1f .uabb-info-list-content .uabb-info-list-title,.fl-node-bjgt7cndyz1f .uabb-info-list-content .uabb-info-list-title * {
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
}
 .fl-node-bjgt7cndyz1f > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 750px ) {
 .fl-node-bjgt7cndyz1f.fl-module > .fl-module-content {
	margin-bottom:25px;
}
}
.fl-col-group-equal-height .fl-node-stzaud5jyl08,
.fl-col-group-equal-height .fl-node-stzaud5jyl08 .fl-module-content,
.fl-col-group-equal-height .fl-node-stzaud5jyl08 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-stzaud5jyl08 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-stzaud5jyl08 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-stzaud5jyl08 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-large,
.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-medium,
.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-stzaud5jyl08 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-stzaud5jyl08 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-stzaud5jyl08 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 750px) {
	.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-stzaud5jyl08.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-stzaud5jyl08 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-stzaud5jyl08 .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 10px;
	}
.fl-node-stzaud5jyl08 .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-stzaud5jyl08 .pp-infobox-description {
			}
	.fl-node-stzaud5jyl08 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-stzaud5jyl08 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-stzaud5jyl08 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-stzaud5jyl08 .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-stzaud5jyl08 .pp-infobox-icon {
					padding: 0px;
							background: #af2042;
			}
	.fl-node-stzaud5jyl08 .pp-infobox-icon-inner span.pp-icon {
					color: #ffffff;
			}

	.fl-node-stzaud5jyl08 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-stzaud5jyl08 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-stzaud5jyl08 .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-stzaud5jyl08 .pp-infobox-icon-inner span.pp-icon,
.fl-node-stzaud5jyl08 .pp-infobox-image img {
		border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
	}

.fl-node-stzaud5jyl08 .pp-infobox-wrap .pp-infobox {
			background: #ffffff;
				text-align: center;
	}


.fl-node-stzaud5jyl08 .pp-infobox:hover {
	}


.fl-node-stzaud5jyl08 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-stzaud5jyl08 .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 750px) {
	.fl-node-stzaud5jyl08 .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-stzaud5jyl08 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}
.fl-node-stzaud5jyl08 .pp-infobox-description {
	font-size: 14px;
}
.fl-node-stzaud5jyl08 .pp-infobox-icon, .fl-node-stzaud5jyl08 .pp-infobox-image img {
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
}
.fl-node-stzaud5jyl08 .pp-infobox-icon-inner span.pp-icon, .fl-node-stzaud5jyl08 .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-stzaud5jyl08 .pp-infobox-icon-inner {
	width: 65px;
	height: 65px;
}
.fl-node-stzaud5jyl08 .pp-infobox {
	padding-right: 5px;
	padding-left: 5px;
}
.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-stzaud5jyl08 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-row .fl-col h2.fl-node-4em801b72gvy,
		.fl-row .fl-col h2.fl-node-4em801b72gvy a,
		h2.fl-node-4em801b72gvy,
		h2.fl-node-4em801b72gvy a {
	color: #ffffff;
}
.fl-node-4em801b72gvy.fl-module-heading, .fl-node-4em801b72gvy.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-4em801b72gvy.fl-module-heading {
	margin-top:40px;
	margin-bottom:0px;
}
@media (max-width: 750px) { .fl-node-4em801b72gvy.fl-module-heading { margin-top:20px; } }.fl-node-he7k1njt4lcu, .fl-node-he7k1njt4lcu .fl-photo {
	text-align: center;
}
.fl-node-he7k1njt4lcu .fl-photo-content, .fl-node-he7k1njt4lcu .fl-photo-img {
	width: 330px;
}
.fl-node-he7k1njt4lcu .fl-photo-img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #af2042;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
@media(max-width: 992px) {
	.fl-node-he7k1njt4lcu, .fl-node-he7k1njt4lcu .fl-photo {
		text-align: left;
	}
}
 .fl-node-he7k1njt4lcu.fl-module-photo {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-he7k1njt4lcu.fl-module-photo.fl-module {
	margin-top:20px;
	margin-left:20px;
}
}
@media ( max-width: 750px ) {
 .fl-node-he7k1njt4lcu.fl-module-photo.fl-module {
	margin-top:20px;
}
}
.fl-row .fl-col h1.fl-node-mu9y7lsoqgzv,
		.fl-row .fl-col h1.fl-node-mu9y7lsoqgzv a,
		h1.fl-node-mu9y7lsoqgzv,
		h1.fl-node-mu9y7lsoqgzv a {
	color: #ffffff;
}
.fl-node-mu9y7lsoqgzv.fl-module-heading, .fl-node-mu9y7lsoqgzv.fl-module-heading :where(a, q, p, span) {
	text-shadow: 0px 0px 15px #000000;
}
@media(max-width: 750px) {
	.fl-node-mu9y7lsoqgzv.fl-module-heading, .fl-node-mu9y7lsoqgzv.fl-module-heading :where(a, q, p, span) {
		font-size: 28px;
	}
}
 .fl-node-mu9y7lsoqgzv.fl-module-heading {
	margin-bottom:0px;
}
@media ( max-width: 992px ) {
 .fl-node-mu9y7lsoqgzv.fl-module-heading.fl-module {
	margin-bottom:0px;
}
}
@media ( max-width: 750px ) {
 .fl-node-mu9y7lsoqgzv.fl-module-heading.fl-module {
	margin-bottom:0px;
}
}

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

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


	.uabb-hotspot-hover {
	z-index: 9;
}

.uabb-hotspot-container,
.uabb-hotspot-container * {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.uabb-hotspot-container img {
	border: none;
	box-shadow: none;
	height: auto;
	width: 100%;
	max-width: 100%;
}

.uabb-hotspot-container {
	position: relative;
	clear: both;
	display: block;
	width: auto;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}

.uabb-hotspot-container .uabb-hotspot-items {
	overflow: hidden;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item {
	position: absolute;
	text-align: center;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item .uabb-hotspot-tooltip {
	text-decoration: none;
	border: none;
	border-radius: 0;
	background: 0 0;
	text-align: center;
	cursor: pointer;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item.uabb-hotspot-hover .uabb-hotspot-tooltip {
	-webkit-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
	-webkit-animation: none;
	animation: none;
	cursor: pointer;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item .uabb-hotspot-tooltip:focus {
	outline: 0;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item .uabb-hotspot-text span {
	display: inline-block;
	border-radius: 0;
}

.uabb-hotspot-items .uabb-hotspot-text,
.uabb-hotspot-items .uabb-hotspot-tooltip {
	-wekit-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.uabb-hotspot-tooltip-content {
	position: absolute;
	z-index: 9;
	width: 200px;
	text-align: center;
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	cursor: default;
	pointer-events: none;
	-webkit-font-smoothing: antialiased;
	-webkit-transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, transform .3s;
	transition: opacity 0.3s, transform 0.3s, -webkit-transform .3s;
}

.uabb-hotspot-container .uabb-hotspot-tooltip-content p:last-of-type,
.uabb-hotspot-container .uabb-hotspot-text p:last-of-type {
	margin: 0;
}

.uabb-tooltip-style-curved .uabb-hotspot-tooltip-content.uabb-text-editor,
.uabb-tooltip-style-round .uabb-hotspot-tooltip-content.uabb-text-editor {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.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-tooltip-style-curved .uabb-hotspot-tooltip-content {
	bottom: 50%;
	border-radius: 20px;
	min-height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.uabb-tooltip-style-curved .uabb-hotspot-svg {
	position: absolute;
	top: 54%;
}

.uabb-tooltip-style-classic .uabb-hotspot-tooltip-content {
	-webkit-transition: opacity 0.2s, -webkit-transform .2s;
	transition: opacity 0.2s, -webkit-transform .2s;
	transition: opacity 0.2s, transform .2s;
	transition: opacity 0.2s, transform 0.2s, -webkit-transform .2s;
}

.uabb-tooltip-style-classic .uabb-hotspot-tooltip-content:after {
	content: '';
	border: solid transparent;
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: transparent;
	border-width: 10px;
}

.uabb-hotspot-hover .uabb-tooltip-style-classic .uabb-hotspot-tooltip-content {
	-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
	transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
	pointer-events: auto;
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
	transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
}

.uabb-tooltip-style-round .uabb-hotspot-tooltip-content,
.uabb-tooltip-style-round .uabb-hotspot-svg {
	-webkit-transform: translate3d(0, 10px, 0);
	transform: translate3d(0, 10px, 0);
	-webkit-transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, transform .3s;
	transition: opacity 0.3s, transform 0.3s, -webkit-transform .3s;
}

.uabb-tooltip-style-round .uabb-hotspot-tooltip-content {
	height: 100px;
	width: 100px;
	padding-top: 25px;
	left: 50%;
	margin-left: -50px;
	margin-bottom: 20px;
	bottom: 100%;
	border-radius: 50%;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.uabb-tooltip-style-round .uabb-hotspot-svg {
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin-top: -7px;
}

.uabb-tooltip-style-round .uabb-hotspot-tooltip-content p {
	-webkit-transform: translate3d(0, 15px, 0);
	transform: translate3d(0, 15px, 0);
	-webkit-transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, -webkit-transform .3s;
	transition: opacity 0.3s, transform .3s;
	transition: opacity 0.3s, transform 0.3s, -webkit-transform .3s;
}

.uabb-hotspot-hover .uabb-tooltip-style-round .uabb-hotspot-tooltip-content,
.uabb-hotspot-hover .uabb-tooltip-style-round .uabb-hotspot-tooltip-content p {
	pointer-events: auto;
	-webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

.uabb-hotspot-wrap .uabb-imgicon-wrap .uabb-icon-wrap {
	display: block;
}

.uabb-hspot-sonar {
	width: 150px;
	left: 50%;
	height: 150px;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: opacity .25s cubic-bezier(1, 0, 0, 1);
	transition: opacity .25s cubic-bezier(1, 0, 0, 1);
	z-index: 1;
	pointer-events: none;
}

.uabb-hspot-sonar g {
	-webkit-transform: scale(0);
	transform: scale(0);
}

.uabb-hotspot-hover .uabb-hspot-sonar g {
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	-webkit-animation-name: hotspot-sonar;
	animation-name: hotspot-sonar;
	-webkit-animation-duration: 1.8s;
	animation-duration: 1.8s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.uabb-hotspot-hover .uabb-hspot-sonar g:nth-child(2) {
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}

.uabb-hotspot-hover .uabb-hspot-sonar g:nth-child(3) {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

.uabb-hotspot-hover .uabb-hspot-sonar g:nth-child(4) {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}

.internet-explorer11 .uabb-tooltip-style-round .uabb-hotspot-tooltip-content p,
.internet-explorer11 .uabb-tooltip-style-curved .uabb-hotspot-tooltip-content p {
	max-width: 100px;
}

.internet-explorer11 .uabb-tooltip-style-classic .uabb-hotspot-tooltip-content {
	transform: translateY(-50%) translateX(-100%)!important;
}

.internet-explorer11 .uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item.uabb-hotspot-hover .uabb-hotspot-tooltip,
.internet-explorer .uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item.uabb-hotspot-hover .uabb-hotspot-tooltip {
	-webkit-transform: none;
	transform: none;
}

@-webkit-keyframes hotspot-sonar {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 0;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	}
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 1;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	}
	100% {
		-webkit-transform: scale(3);
		transform: scale(3);
		opacity: 0;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	}
}

@keyframes hotspot-sonar {
	0% {
		-webkit-transform: scale(0);
		transform: scale(0);
		opacity: 0;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	}
	50% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
		opacity: 1;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	}
	100% {
		-webkit-transform: scale(3);
		transform: scale(3);
		opacity: 0;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	}
}

@media only screen and (max-device-width: 1024px) {
	.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item a.uabb-hotspot-tooltip {
		cursor: default;
	}
}

@media only screen and (max-device-width: 768px) {
	.uabb-hotspot-tooltip-content {
		width: 120px;
	}
}

@media only screen and (max-device-width: 320px) {
	.uabb-hotspot-tooltip-content {
		width: auto;
	}
}

.uabb-hotspot-hover .uabb-tour {
	display: none;
}

.uabb-hotspot-item .uabb-tour {
	display: block;
	margin-top: 1em;
}

.uabb-hotspot-item .uabb-tour .uabb-hotspot-tour-tooltip-list-group {
	list-style: none;
	float: right;
	margin-bottom: 0;
	margin-left: .8em;
}

.uabb-actual-step {
	margin-right: .5em;
}

.uabb-hotspot-item .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item {
	display: inline-block;
	float: left;
}

.uabb-hotspot-hover .uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item:first-of-type {
	margin-right: .8em;
}

.uabb-hotspot-item .uabb-tour .inactive {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	opacity: .5;
	cursor: pointer;
}

.uabb-hotspot-end {
	display: block;
	text-align: right;
	padding-top: 4px;
	margin-bottom: -5px;
}

.uabb-hotspot-hover .uabb-hotspot-end .uabb-tour-end {
	cursor: pointer;
	display: block;
	margin-top: .5em;
}

.uabb-hotspot-hover .uabb-hotspot-tooltip-content .uabb-tour .uabb-actual-step,
.uabb-hotspot-hover .uabb-hotspot-tooltip-content .uabb-tour .uabb-hotspot-tour-tooltip-list-group,
.uabb-hotspot-hover .uabb-hotspot-tooltip-content .uabb-hotspot-end .uabb-tour-end {
	font-size: .85em;
}

.uabb-hotspot-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.57);
}

.uabb-overlay-button {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%)translateY(-50%);
	-ms-transform: translateX(-50%)translateY(-50%);
	transform: translateX(-50%)translateY(-50%);
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item .uabb-icon-wrap .uabb-icon i,
.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-item .uabb-icon-wrap .uabb-icon i:before {
	height: auto;
	width: auto;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-marker-nonactive {
	visibility: hidden;
}

.uabb-hotspot-container .uabb-hotspot-items .uabb-hotspot-marker-nonactive.uabb-hotspot-hover {
	visibility: visible;
}

.uabb-button-wrap .uabb-creative-flat-btn .uabb-button-text {
	-webkit-backface-visibility: visible;
	-moz-backface-visibility: visible;
	backface-visibility: visible;
}

.uabb-overlay-button .uabb-button,
.uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-prev,
.uabb-tour .uabb-hotspot-tour-tooltip-list-group .uabb-hotspot-tour-tooltip-list-group-item .uabb-next {
	cursor: pointer;
}.fl-node-ui5gak7ls08h .uabb-button .uabb-btn-img {
	width: 20px;
}




	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a,
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:visited {
		padding-top:;padding-bottom:;padding-left:;padding-right:;background:#af2042;background: rgba(175, 32, 66, 1);}
		.fl-node-ui5gak7ls08h .uabb-module-content.uabb-creative-button-wrap a:hover,
	.fl-node-ui5gak7ls08h .uabb-module-content.uabb-creative-button-wrap a:focus {
		border-color:;	}
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:focus,
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:hover {
		background:#600019;background: rgba(96, 0, 25, 1);	}
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a,
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a *,
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:visited,
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:visited * {
		color: #ffffff;
	}
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:focus,
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:focus *,
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:hover,
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:hover * {
		color: #ffffff;
	}
				


.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:focus,
.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:hover {
			}


@media ( max-width: 750px ) {
	.fl-node-ui5gak7ls08h .uabb-creative-button-wrap.uabb-button-reponsive-center.uabb-creative-button-reponsive-center {
		text-align: center;
	}
}


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

	
	@media ( max-width: 750px ) {
			.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a,
			.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:visited {
			padding-top:;padding-bottom:;padding-left:;padding-right:;}
			}
	
.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a,.fl-node-ui5gak7ls08h .uabb-creative-button-wrap a:visited {
	font-family: , sans-serif;
}
.fl-node-ui5gak7ls08h .uabb-module-content.uabb-creative-button-wrap a {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

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

	
		.fl-node-ui5gak7ls08h .uabb-hotspot-item-0 .uabb-image .uabb-photo-img {
							width: 350px;
								}

		.fl-node-ui5gak7ls08h .uabb-hotspot-item-0 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-ui5gak7ls08h .uabb-hotspot-item-0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-ui5gak7ls08h .uabb-hotspot-item-0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
						.fl-node-ui5gak7ls08h .uabb-hotspot-item-0 {
				top:calc( 81.02441613588111% - 175px);
				left: calc( 13.60176282051282% - 175px);
				width: 350px;			}

			.fl-node-ui5gak7ls08h .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-0 .uabb-hotspot-text {

											}
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-0 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-ui5gak7ls08h .uabb-hotspot-item-0 .uabb-hotspot-text {

					}
					.fl-node-ui5gak7ls08h .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 750px ) {
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-0 .uabb-hotspot-text {
						
					}
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-0 .uabb-hotspot-tooltip-content {
						
					}
				}
				
	/* Global Alignment Css */
	.fl-node-ui5gak7ls08h .uabb-hotspot-item-1 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-ui5gak7ls08h .uabb-hotspot-item-1 .uabb-image .uabb-photo-img {
							width: 350px;
								}

		.fl-node-ui5gak7ls08h .uabb-hotspot-item-1 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-ui5gak7ls08h .uabb-hotspot-item-1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-ui5gak7ls08h .uabb-hotspot-item-1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
						.fl-node-ui5gak7ls08h .uabb-hotspot-item-1 {
				top:calc( 43.88601380042463% - 175px);
				left: calc( 13.321314102564102% - 175px);
				width: 350px;			}

			.fl-node-ui5gak7ls08h .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-1 .uabb-hotspot-text {

											}
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-1 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-ui5gak7ls08h .uabb-hotspot-item-1 .uabb-hotspot-text {

					}
					.fl-node-ui5gak7ls08h .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 750px ) {
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-1 .uabb-hotspot-text {
						
					}
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-1 .uabb-hotspot-tooltip-content {
						
					}
				}
				
	/* Global Alignment Css */
	.fl-node-ui5gak7ls08h .uabb-hotspot-item-2 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-ui5gak7ls08h .uabb-hotspot-item-2 .uabb-image .uabb-photo-img {
							width: 350px;
								}

		.fl-node-ui5gak7ls08h .uabb-hotspot-item-2 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-ui5gak7ls08h .uabb-hotspot-item-2 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-ui5gak7ls08h .uabb-hotspot-item-2 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
						.fl-node-ui5gak7ls08h .uabb-hotspot-item-2 {
				top:calc( 43.67038216560509% - 175px);
				left: calc( 86.65197649572649% - 175px);
				width: 350px;			}

			.fl-node-ui5gak7ls08h .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-2 .uabb-hotspot-text {

											}
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-2 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-ui5gak7ls08h .uabb-hotspot-item-2 .uabb-hotspot-text {

					}
					.fl-node-ui5gak7ls08h .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 750px ) {
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-2 .uabb-hotspot-text {
						
					}
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-2 .uabb-hotspot-tooltip-content {
						
					}
				}
				
	/* Global Alignment Css */
	.fl-node-ui5gak7ls08h .uabb-hotspot-item-3 .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-ui5gak7ls08h .uabb-hotspot-item-3 .uabb-image .uabb-photo-img {
							width: 350px;
								}

		.fl-node-ui5gak7ls08h .uabb-hotspot-item-3 .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-ui5gak7ls08h .uabb-hotspot-item-3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-ui5gak7ls08h .uabb-hotspot-item-3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
						.fl-node-ui5gak7ls08h .uabb-hotspot-item-3 {
				top:calc( 81.24004777070064% - 175px);
				left: calc( 87.70032051282051% - 175px);
				width: 350px;			}

			.fl-node-ui5gak7ls08h .uabb-overlay-button {
			}
							@media ( max-width: 992px ) {
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-3 .uabb-hotspot-text {

											}
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-3 .uabb-hotspot-tooltip-content {
						
					}
					.fl-node-ui5gak7ls08h .uabb-hotspot-item-3 .uabb-hotspot-text {

					}
					.fl-node-ui5gak7ls08h .uabb-hotspot-hover .uabb-hspot-sonar {
						width: 100px;
						height: 100px;
					}
				}

				@media ( max-width: 750px ) {
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-3 .uabb-hotspot-text {
						
					}
										.fl-node-ui5gak7ls08h .uabb-hotspot-item-3 .uabb-hotspot-tooltip-content {
						
					}
				}
				.fl-node-ui5gak7ls08h .uabb-hotspot-container {
	width: 1000px;
}
 .fl-node-ui5gak7ls08h > .fl-module-content {
	margin-top:-130px;
	margin-right:0px;
	margin-bottom:-100px;
	margin-left:0px;
}
@media (max-width: 750px) { .fl-node-ui5gak7ls08h > .fl-module-content { margin-top:20px;margin-bottom:20px; } }@media(max-width: 992px) {
	.fl-node-qt26uw4elngs.fl-module-heading, .fl-node-qt26uw4elngs.fl-module-heading :where(a, q, p, span) {
		font-size: 25px;
	}
}
 .fl-node-qt26uw4elngs.fl-module-heading {
	margin-top:-10px;
	margin-bottom:0px;
}
@media ( max-width: 750px ) {
 .fl-node-qt26uw4elngs.fl-module-heading.fl-module {
	margin-top:-10px;
}
}
	.fl-builder-content .fl-node-0h1l3zofm5qn.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-0h1l3zofm5qn.fl-module-rich-text.fl-rich-text * {
		color: #ffffff;
	}
	.fl-node-32x7ozenbfpj, .fl-node-32x7ozenbfpj .fl-photo {
	text-align: center;
}
.fl-node-32x7ozenbfpj .fl-photo-content, .fl-node-32x7ozenbfpj .fl-photo-img {
	width: 120px;
}
 .fl-node-32x7ozenbfpj.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media (max-width: 750px) { .fl-module-icon {
	text-align: center;
}
 }



.fl-node-sj9ub0nezkm6 .fl-icon i, .fl-node-sj9ub0nezkm6 .fl-icon i:before {
	font-size: 30px;
}
.fl-node-sj9ub0nezkm6 .fl-icon-wrap .fl-icon-text {
	height: 52.5px;
}
.fl-node-sj9ub0nezkm6.fl-module-icon {
	text-align: left;
}
@media(max-width: 1200px) {
	.fl-node-sj9ub0nezkm6 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-sj9ub0nezkm6 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 750px) {
	.fl-node-sj9ub0nezkm6 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
	.fl-builder-content .fl-node-nsw43po1ky8v.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-nsw43po1ky8v.fl-module-rich-text.fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-nsw43po1ky8v.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-nsw43po1ky8v.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 21px;
}
 .fl-node-nsw43po1ky8v.fl-module-rich-text {
	margin-top:0px;
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-tm2r405dxoze.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-tm2r405dxoze.fl-module-rich-text.fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-tm2r405dxoze.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-tm2r405dxoze.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	text-shadow: 0px 0px 5px #000000;
}
@media(max-width: 750px) {
	.fl-builder-content .fl-node-tm2r405dxoze.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-tm2r405dxoze.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-shadow: 0px 0px 10px rgba(7,1,0,0.34);
	}
}



.fl-node-ek9chbftyo5q .uabb-info-list-wrapper .uabb-info-list-item:last-child {
	padding-bottom: 0;
}


	.fl-node-ek9chbftyo5q .uabb-info-list-content-wrapper.uabb-info-list-left .uabb-info-list-content {
				width: calc( 100% - 95px );
	}
	.fl-node-ek9chbftyo5q .uabb-info-list-wrapper.uabb-info-list-left li .uabb-info-list-connector,
	.fl-node-ek9chbftyo5q .uabb-info-list-wrapper.uabb-info-list-left li .uabb-info-list-connector-top {
				left: 37.5px;
	}

			.fl-node-ek9chbftyo5q .uabb-info-list-wrapper .uabb-info-list-item {
			padding-bottom: 20px;
		}
				.fl-node-ek9chbftyo5q .uabb-info-list .uabb-info-list-icon .custom-character0 {

		
			text-align: center;
			color: #af2042;
			font-size:37.5px;
			width:75px;
			height:75px;
			line-height:75px;
							background: #af2042;
									border-radius: 100%;
								}
		
	/* Global Alignment Css */
	.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-imgicon-wrap {
					text-align: center;
			}

	
		/* Icon Css */
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:before {

			color: #ffffff			;
			font-size: 37.5px;
			height: auto;
			width: auto;
							background: #af2042;
								border-radius: 100%;
				-moz-border-radius: 100%;
				-webkit-border-radius: 100%;
								line-height:
					75px;
				height:
					75px;				width:
					75px;				text-align: center;
				display: flex;
				align-items: center;
				justify-content: center;
					
						
			/* Gradient Style */
					}

		.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
														

			color: ;

								}

		.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
				.fl-node-ek9chbftyo5q .info-list-icon-dynamic0 .uabb-imgicon-wrap .uabb-photo-img {
							background: #af2042;
							}
					.fl-node-ek9chbftyo5q .uabb-info-list .uabb-info-list-icon .custom-character1 {

		
			text-align: center;
			color: #af2042;
			font-size:37.5px;
			width:75px;
			height:75px;
			line-height:75px;
							background: #af2042;
									border-radius: 100%;
								}
		
	/* Global Alignment Css */
	.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-imgicon-wrap {
					text-align: center;
			}

	
		/* Icon Css */
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i:before {

			color: #ffffff			;
			font-size: 37.5px;
			height: auto;
			width: auto;
							background: #af2042;
								border-radius: 100%;
				-moz-border-radius: 100%;
				-webkit-border-radius: 100%;
								line-height:
					75px;
				height:
					75px;				width:
					75px;				text-align: center;
				display: flex;
				align-items: center;
				justify-content: center;
					
						
			/* Gradient Style */
					}

		.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
														

			color: ;

								}

		.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
				.fl-node-ek9chbftyo5q .info-list-icon-dynamic1 .uabb-imgicon-wrap .uabb-photo-img {
							background: #af2042;
							}
					.fl-node-ek9chbftyo5q .uabb-info-list .uabb-info-list-icon .custom-character2 {

		
			text-align: center;
			color: #af2042;
			font-size:37.5px;
			width:75px;
			height:75px;
			line-height:75px;
							background: #af2042;
									border-radius: 100%;
								}
		
	/* Global Alignment Css */
	.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-imgicon-wrap {
					text-align: center;
			}

	
		/* Icon Css */
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i:before {

			color: #ffffff			;
			font-size: 37.5px;
			height: auto;
			width: auto;
							background: #af2042;
								border-radius: 100%;
				-moz-border-radius: 100%;
				-webkit-border-radius: 100%;
								line-height:
					75px;
				height:
					75px;				width:
					75px;				text-align: center;
				display: flex;
				align-items: center;
				justify-content: center;
					
						
			/* Gradient Style */
					}

		.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

		.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i:hover,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i:hover:before,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i,
		.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-infobox-module-link:hover .uabb-icon-wrap .uabb-icon i:before {
														

			color: ;

								}

		.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
				.fl-node-ek9chbftyo5q .info-list-icon-dynamic2 .uabb-imgicon-wrap .uabb-photo-img {
							background: #af2042;
							}
			
.fl-node-ek9chbftyo5q .uabb-icon i {
	float: none;
}
.fl-node-ek9chbftyo5q .uabb-icon {
	display: block;
}
.fl-node-ek9chbftyo5q .uabb-info-list-content .uabb-info-list-title,
.fl-node-ek9chbftyo5q .uabb-info-list-content .uabb-info-list-title * {
			color: #ffffff;
			}
.fl-node-ek9chbftyo5q .uabb-info-list-content .uabb-info-list-description {
			color: #ffffff;
	}


/* Typography responsive layout starts here */


	@media ( max-width: 992px) {
					.fl-node-ek9chbftyo5q .uabb-info-list .uabb-info-list-left,
			.fl-node-ek9chbftyo5q .uabb-info-list .uabb-info-list-right {
				text-align: ;
			}
			}

	@media ( max-width: 750px ) {
					.fl-node-ek9chbftyo5q .uabb-info-list .uabb-info-list-left,
			.fl-node-ek9chbftyo5q .uabb-info-list .uabb-info-list-right {
				text-align: ;
			}
				}
	/* Typography responsive layout Ends here */
.fl-node-ek9chbftyo5q .uabb-info-list-content .uabb-info-list-title,.fl-node-ek9chbftyo5q .uabb-info-list-content .uabb-info-list-title * {
	font-weight: 700;
	text-transform: uppercase;
}
 .fl-node-ek9chbftyo5q > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 992px ) {
 .fl-node-ek9chbftyo5q.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
@media ( max-width: 750px ) {
 .fl-node-ek9chbftyo5q.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}
.fl-row-fixed-width {
	min-width: 1px;
}
.fl-col-group.fl-col-group-responsive-reversed,
.fl-col-group.fl-col-group-responsive-reversed .fl-col,
.fl-col-group.fl-col-group-responsive-reversed .fl-col-content,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	min-width: 0px;
}
.pp-posts-wrapper .sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
	border: 0 !important;
	box-shadow: none !important;
}
.pp-posts-loader {
	display: none;
	text-align: center;
}
.pp-posts-wrapper {
	position: relative;
}
.pp-content-post-grid #infscr-loading {
	position: absolute;
	bottom: -10px;
}
/*
.pp-content-post-grid.pp-is-filtering:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 20;
}
.pp-content-post-grid.pp-is-filtering:after {
    content: "";
    position: relative;
    z-index: 21;
    opacity: 1;
    visibility: visible;
    text-align: center;
    left: 50%;
	top: 50px;
	width: 50px;
    height: 50px;
	background-size: 50px;
	background-repeat: no-repeat;
}
*/
.rtl .pp-content-post-grid.pp-is-filtering:after {
	left: auto;
	right: 50%;
}
.pp-content-post-grid.pp-is-filtering .pp-content-post {
	opacity: 0.5;
}
.pp-post-filters-wrapper {
	position: relative;
}
.pp-post-filters-toggle {
    display: none;
    padding: 10px 15px;
    cursor: pointer;
    margin-bottom: 10px;
}
.pp-post-filters-toggle:after {
    content: "+";
    float: right;
	font-size: 18px;
	font-weight: bold;
    line-height: 1;
}
.pp-post-filters-toggle.pp-post-filters-open:after {
	content: "-";
}
.pp-post-filters-wrapper.pp-filter-mobile {
	display: none;
}
.pp-post-filters-wrapper .pp-close-icon {
	background: #ddd;
    padding: 3px 8px;
    position: absolute;
    top: -35px;
    right: 0;
	cursor: pointer;
    display: none;
}
.pp-post-filters-wrapper.pp-filter-mobile .pp-close-icon {
	display: block;
}
.pp-filter-title-mobile {
	display: none;
	font-size: 18px;
	padding: 5px 20px;
	border: 2px solid #222;
    margin-bottom: 20px;
    color: #333;
	cursor: pointer;
}

.pp-post-filters {
	padding-left: 0;
	margin-left: 0;
	text-align: left;
	margin-bottom: 30px;
}
.pp-post-filters li {
	display: inline-block;
	margin-right: 10px;
	cursor: pointer;
	padding: 8px 10px;
	color: #000;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.pp-post-filters li:hover {
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.pp-content-post a {
	border: none;
}
.pp-content-post img {
	contain-intrinsic-size: unset;
}
.pp-content-post a,
.pp-content-post .pp-post-content,
.pp-content-post .pp-post-meta {
	transition: color 0.3s ease-in-out;
}

.pp-content-post-carousel .owl-carousel {
	overflow: hidden;
}
.pp-content-post-carousel:not(.pp-auto-height) .owl-carousel .owl-stage-outer {
	overflow: initial;
}
.pp-content-post-carousel .owl-carousel.owl-loaded:focus {
	outline: none;
}

.pp-content-grid-post .pp-content-category-list,
.pp-content-carousel-post .pp-content-category-list {
	margin-top: 15px;
	padding-top: 10px;
	border-top: 1px solid #eee;
	position: relative;
	z-index: 2;
}

.pp-content-grid-post .pp-content-grid-more,
.pp-content-carousel-post .pp-content-carousel-more {
	display: inline-block;
}

.pp-content-post .pp-post-title a,
.pp-content-post .pp-more-link-button {
	text-decoration: none;
}

.pp-content-post .pp-post-title-divider {
	display: inline-block;
    height: 2px;
    width: 50px;
    margin-bottom: 7px;
}

.pp-content-grid-image > a,
.pp-content-carousel-image > a {
	display: block;
}

.pp-content-post-grid:not(.pp-css-grid) .pp-content-post .pp-post-image,
.pp-content-post-carousel .pp-content-post .pp-post-image {
	position: relative;
}

.pp-content-post .pp-post-image .pp-post-featured-img a {
	display: block;
}
.pp-content-post.pp-grid-style-9 .pp-post-image a {
	width: 100%;
	height: 100%;
}

.pp-content-post .pp-post-image .fl-photo-content {
	display: block;
}

.pp-content-post .pp-post-image .pp-content-category-list {
    position: absolute;
    top: 0;
    margin-top: 0;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-top: 0;
    padding: 10px;
	z-index: 1;
}

.pp-content-post .pp-post-image .pp-content-category-list a {
	color: #fff;
}

.pp-content-post .pp-post-image .pp-post-title {
	position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
}

.pp-content-post.pp-grid-style-4 .pp-post-image {
	overflow: hidden;
	position: relative;
}
.pp-content-post.pp-grid-style-4 .pp-post-image img {
	-moz-transition: all 0.3s;
  	-webkit-transition: all 0.3s;
  	transition: all 0.3s;
}

.pp-content-post.pp-grid-style-4:hover .pp-post-image img {
	-moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.pp-content-post.pp-grid-style-5 .pp-content-post-date {
	float: left;
	text-align: center;
	width: 38px;
}
.pp-content-post.pp-grid-style-5 .pp-content-post-date span.pp-post-day {
	display: block;
	padding: 5px 0px;
    font-size: 15px;
}
.pp-content-post.pp-grid-style-5 .pp-content-post-date span.pp-post-month {
	display: block;
	padding: 5px 0;
    font-size: 13px;
}

.pp-content-post.pp-grid-style-5 .pp-content-post-data {
	margin-left: 20px;
	float: left;
	width: 70%;
	text-align: left;
}

.pp-content-post.pp-grid-style-6 .pp-post-image {
	text-align: center;
}

.pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	display: block;
    margin: 0 auto;
    padding: 10px;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    text-transform: uppercase;
    font-size: 14px;
	line-height: 1.5;
	position: relative;
}
.pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date span {
	display: block;
}

.pp-content-post.pp-grid-style-7 .pp-content-body {
	max-width: 90%;
    margin: 0 auto;
    margin-top: -10%;
    position: relative;
	-webkit-transition: background-color 0.3s ease-in;
	-moz-transition: background-color 0.3s ease-in;
	-ms-transition: background-color 0.3s ease-in;
	-o-transition: background-color 0.3s ease-in;
	transition: background-color 0.3s ease-in;
}

.pp-content-post.pp-grid-style-7:hover .pp-content-body {
	-webkit-transition: background-color 0.3s ease-in;
	-moz-transition: background-color 0.3s ease-in;
	-ms-transition: background-color 0.3s ease-in;
	-o-transition: background-color 0.3s ease-in;
	transition: background-color 0.3s ease-in;
}

.pp-content-post.pp-grid-style-7 .pp-content-post-meta {
	border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap {
	display: flex;
}
.pp-content-post-grid.pp-content-alternate .pp-content-post.pp-post-2n .pp-content-alternate-wrap {
	flex-direction: row-reverse;
}
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-image,
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-inner { 
	width: 50%;
	overflow: hidden;
}
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-image *:not(.pp-post-meta) {
	height: 100% !important;
}
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-image img {
	object-fit: cover;
}

/* Post Grid */

.pp-content-post {
	overflow: hidden;
}

.pp-content-post,
.pp-content-post:hover {
	-webkit-transition: background-color 0.3s ease-in-out;
	-moz-transition: background-color 0.3s ease-in-out;
	-ms-transition: background-color 0.3s ease-in-out;
	-o-transition: background-color 0.3s ease-in-out;
	transition: background-color 0.3s ease-in-out;
}

.pp-content-post-grid {
	margin: 0 auto;
	position: relative;
}
.pp-content-grid-image img {
	height: auto !important;
	width: 100%;
}

.pp-post-featured-img img {
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.pp-content-grid-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}

.pp-content-grid-title,
.pp-content-carousel-title {
	margin: 0;
	padding: 0;
}
.pp-content-post-meta {
	font-size: 14px;
	padding-bottom: 10px;
	position: relative;
    z-index: 2;
}
.pp-content-grid #infscr-loading {
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 0;
	position: absolute;
	text-align: center;
	width: 100%;
}

.pp-content-post .pp-more-link-button,
.pp-content-post .pp-add-to-cart a {
	display: inline-table;
	text-align: center;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}
.pp-content-grid-pagination ul.page-numbers {
	display: inline-block;
}
.pp-content-grid-pagination li {
	text-align: center;
}
.pp-content-post .pp-more-link-button:hover,
.pp-content-grid-pagination li a.page-numbers:hover,
.pp-content-post .pp-add-to-cart a {
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.pp-content-grid-pagination li a.page-numbers {
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

.pp-content-grid-pagination li .page-numbers {
	min-width: 35px !important;
	display: block !important;
}

.pp-content-grid-pagination li .page-numbers:last-child {
	margin-right: 0;
}

.pp-content-grid-load-more a {
	display: inline-block;
}
.pp-content-grid-load-more a.disabled {
	opacity: 0.8;
	pointer-events: none;
}
.pp-content-grid-load-more a .pp-grid-loader-icon {
	display: none;
}
.pp-content-grid-load-more a .pp-grid-loader-icon img {
	height: 18px;
	margin-left: 3px;
	width: auto;
}
.pp-content-grid-load-more a.loading .pp-grid-loader-icon {
	display: inline;
}

.pp-content-grid-loader {
	margin-top: 10px;
}
.pp-content-grid-loader .pp-grid-loader-text {
	color: #999999;
}
.pp-content-grid-loader .pp-grid-loader-icon img {
	height: 18px;
}

.pp-content-post a.pp-post-link {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}


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

/* No posts message */
.pp-content-grid-empty {
	border: 1px dashed #ccc;
	font-size: 16px;
	padding: 20px;
	text-align: center;
}

/* Wrappers */
.pp-post-carousel-navigation{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 20;
	margin-top: -16px;
}
.pp-post-carousel-navigation a{
	position: absolute;
	display: inline-block;
}
.pp-post-carousel-navigation a a {
	display: none;
}
.pp-post-carousel-navigation a:hover{ opacity: 1; }

.pp-post-carousel-navigation .carousel-prev{ left: 0; }
.pp-post-carousel-navigation .carousel-next{ right: 0; }

.pp-post-carousel-navigation .fl-post-carousel-svg-container{
	position: relative;
	width: 32px;
	height: 32px;
}

.pp-content-carousel-image img {
	height: auto;
}


/* Post Carousel */
.pp-content-post-carousel .owl-theme .owl-dots {
	margin-top: 10px;
}
.pp-content-post-carousel .owl-theme .owl-controls .owl-page span {
	margin: 5px;
}

.pp-content-post-carousel {
	position: relative;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div,
.pp-content-post-carousel .owl-nav button {
	position: absolute;
	top: 40%;
	line-height: 0;
    margin: 0;
	padding: 0;
	font-size: 20px;
	background-image: none !important;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pp-content-post-carousel .owl-nav button {
	border: none;
}

.pp-content-post-carousel .owl-nav button svg {
	height: 1em;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div.owl-prev,
.pp-content-post-carousel .owl-nav button.owl-prev {
    left: -15px;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div.owl-next,
.pp-content-post-carousel .owl-nav button.owl-next {
    right: -15px;
}

.pp-content-post-carousel .owl-theme .owl-dots .owl-dot {
	top: 0;
	/* set background none to override BB's Global button style */
	background: none !important;
}

/* Woocommerce Style */

.pp-content-post .star-rating {
	margin-left: auto;
    margin-right: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	float: right;
	overflow: hidden;
	position: relative;
	height: 15px;
	line-height: 1;
	font-size: 15px;
	width: 80px;
	font-family: star;
	display: block;
    float: none;
}

.pp-content-post .star-rating:before {
	content: "\73\73\73\73\73";
    color: #d3ced2;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}

.pp-content-post .star-rating span {
	overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 15px;
}

.pp-content-post .star-rating span:before {
	content: "\53\53\53\53\53";
    top: 0;
    position: absolute;
    left: 0;
	color: #000;
}

.pp-content-post .pp-product-price ins {
	text-decoration: none;
}

.pp-content-post.pp-grid-style-6 .star-rating {
	margin: 0 auto !important;
}

/* Style - 9 */
.pp-content-post.pp-grid-style-9 {
	position: relative;
	overflow: hidden;
	height: 270px;
}
.pp-content-post.pp-grid-style-9 .pp-content-grid-image {
	height: 100%;
}
.pp-content-post.pp-grid-style-9 .pp-post-featured-img {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 100%;
	position: relative;
	overflow: hidden;
	margin: 0;
	-webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.pp-content-post.pp-grid-style-9:hover .pp-post-featured-img {
	-webkit-transform: scale(1.1);
  	-moz-transform: scale(1.1);
  	-o-transform: scale(1.1);
  	-ms-transform: scale(1.1); /* IE 9 */
  	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')"; /* IE8 */
   	filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand'); /* IE6 and 7 */
	transform: scale(1.1);
}
.pp-content-post.pp-grid-style-9 .pp-post-featured-img a:last-child:before {
    content: "";
    display: block;
    height: 70%;
    width: 100%;
    position: absolute;
	bottom: 0;
    z-index: 1;
    background: -moz-linear-gradient(top,rgba(0,0,0,0) 40%,rgba(0,0,0,.7) 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(40%,rgba(0,0,0,0)),color-stop(100%,rgba(0,0,0,.7)));
    background: -webkit-linear-gradient(top,rgba(0,0,0,0) 40%,rgba(0,0,0,.7) 100%);
    background: -o-linear-gradient(top,rgba(0,0,0,0) 40%,rgba(0,0,0,.7) 100%);
    background: -ms-linear-gradient(top,rgba(0,0,0,0) 40%,rgba(0,0,0,.7) 100%);
    background: linear-gradient(to bottom,rgba(0,0,0,0) 40%,rgba(0,0,0,.7) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#b3000000', GradientType=0);
}
.pp-content-post.pp-grid-style-9 .pp-post-featured-img a:last-child:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
	bottom: 0;
    -webkit-transition: background-color .3s ease;
    -moz-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
}
.pp-content-post.pp-grid-style-9:hover .pp-post-featured-img a:last-child:before {
	background-color: rgba(0,0,0,.1);
}
.pp-content-post.pp-grid-style-9 .pp-post-featured-img img {
	display: block;
	height: auto;
	opacity: 1;
	transition: transform 0.3s ease, opacity 0.3s;
    -webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s;
	transition-timing-function: ease !important;
}
.pp-content-post.pp-grid-style-9:hover .pp-post-featured-img img {
	transform: scale3d(1.1,1.1,1);
    -webkit-transform: scale3d(1.1,1.1,1);
    -moz-transform: scale3d(1.1,1.1,1) rotate(.02deg);
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-text {
	position: absolute;
	bottom: 0;
    pointer-events: none;
    z-index: 1;
    width: 100%;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-category.pp-content-category-list {
	border-top: 0;
	margin: 0;
	padding: 0;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-category span {
	display: inline-block;
    background-color: #333333;
    margin-bottom: 10px;
    padding: 2px 8px;
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-info,
.pp-content-post.pp-grid-style-9 .pp-grid-tile-meta {
	width: 80%;
    margin: 0 0 0 20px;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-meta {
	margin-bottom: 20px;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-category,
.pp-content-post.pp-grid-style-9 .pp-grid-tile-meta {
	font-size: 12px;
}
.pp-content-post.pp-grid-style-9 .pp-grid-tile-category,
.pp-content-post.pp-grid-style-9 .pp-grid-tile-category a,
.pp-content-post.pp-grid-style-9 .pp-grid-tile-meta span {
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}

/* The Events Calendar */
.pp-post-event-calendar-date {
	margin-bottom: 5px;
}
.pp-post-event-calendar-date,
.pp-post-event-calendar-date span {
	font-weight: bold;
}
.pp-post-event-calendar-venue {
	font-style: italic;
}
.pp-post-event-calendar-cost {
	margin-top: 12px;
    margin-bottom: 12px;
}

.pp-posts-not-found-text {
	width: 100% !important;
}


.cg-equal-align-button .pp-content-post,
.cg-equal-align-button .pp-content-post .pp-content-body,
.cg-equal-align-button .pp-content-post-data {
	display: flex;
  	flex-direction: column;
}
.cg-equal-align-button .pp-content-post .pp-content-body,
.cg-equal-align-button .pp-content-post-data,
.cg-equal-align-button .pp-content-post .pp-post-content {
  	height: 100%;
}
.cg-equal-align-button .pp-content-post .pp-post-link {
	margin-top: auto !important;
}

.cg-center-align .pp-content-posts {
	margin: 0 auto;
}

.cg-static-grid .pp-content-post.pp-content-grid-post {
    position: static !important;
    left: auto !important;
    top: auto !important;
    margin-right: 2%;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

@media only screen and (min-width: 768px) {
	.cg-css-grid .pp-content-post-grid.pp-equal-height {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: min-content;
		grid-column-gap: 2%;
		grid-row-gap: 2ch;
		height: auto !important;
	}
	.cg-css-grid .pp-content-post-grid.pp-equal-height:before,
	.cg-css-grid .pp-content-post-grid.pp-equal-height:after {
		content: none;
		display: none;
	}
	.cg-css-grid .pp-content-post-grid.pp-equal-height .pp-content-post {
		display: flex;
		flex-direction: column;
		flex-grow: 1;
		position: static !important;
		overflow: visible;
		width: auto;
		height: auto !important;
		margin-bottom: 0 !important;
		transform: none !important;
	}
	.cg-css-grid .pp-content-post-grid.pp-equal-height .pp-grid-space {
		display: none;
	}
}@media (max-width: 750px) { /* Post Feed */
.pp-post-feed-post.pp-post-feed-image-beside {
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.pp-post-feed-image-beside .pp-post-feed-image,
.pp-post-feed-image-beside .pp-post-feed-image img {
	float: none;
	width: 100% !important;
}
.pp-post-feed-image-beside.pp-post-feed-has-image .pp-post-feed-content {
	margin-left: 0;
}

.pp-content-post-carousel .pp-content-post .pp-post-img {
    width: auto;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div.owl-prev {
	left: 0;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div.owl-next {
	right: 0;
}
.pp-content-post-carousel .owl-theme .owl-controls {
	margin-top: 20px;
}


.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap,
.pp-content-post-grid.pp-content-alternate .pp-content-post.pp-post-2n .pp-content-alternate-wrap {
	flex-direction: column;
}
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-image,
.pp-content-post-grid.pp-content-alternate .pp-content-post .pp-content-alternate-wrap .pp-content-grid-inner { 
	width: 100%;
}

.cg-equal-align-button .pp-content-post.pp-content-alternate .pp-content-body,
.cg-equal-align-button .pp-content-post.pp-content-alternate .pp-content-post-data,
.cg-equal-align-button .pp-content-post.pp-content-alternate .pp-content-post .pp-post-content {
	height: auto;
} }

/* Fix for Box module */
.fl-node-r9mhuq1jp6zx {
	min-width: 1px;
}


.fl-node-r9mhuq1jp6zx .pp-content-grid-pagination {
			text-align: center;
	}
.fl-node-r9mhuq1jp6zx .pp-content-grid-pagination.fl-builder-pagination {
    padding-top: 15px;
    padding-bottom: 15px;
}
.fl-node-r9mhuq1jp6zx .pp-content-grid-pagination li a.page-numbers,
.fl-node-r9mhuq1jp6zx .pp-content-grid-pagination li span.page-numbers {
			background-color: #ffffff;
				color: #000000;
		margin-right: 5px;
}

.fl-node-r9mhuq1jp6zx .pp-content-grid-pagination li a.page-numbers:hover,
.fl-node-r9mhuq1jp6zx .pp-content-grid-pagination li span.current,
.fl-node-r9mhuq1jp6zx .pp-content-grid-pagination li span[aria-current] {
			background-color: #eeeeee;
		}

.fl-node-r9mhuq1jp6zx .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-r9mhuq1jp6zx .pp-content-grid-load-more a {
			background-color: #ffffff;
				color: #000000;
		text-align: center;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.fl-node-r9mhuq1jp6zx .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

.fl-node-r9mhuq1jp6zx .pp-content-post .pp-post-title {
			display: none;
				margin-top: 5px;
				margin-bottom: 5px;
	}

.fl-node-r9mhuq1jp6zx .pp-content-post .pp-post-title,
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-post-title a {
	}
.fl-node-r9mhuq1jp6zx .pp-content-post:hover .pp-post-title,
.fl-node-r9mhuq1jp6zx .pp-content-post:hover .pp-post-title a {
	}


.fl-node-r9mhuq1jp6zx .pp-content-post .pp-post-content {
				margin-top: 5px;
				margin-bottom: 5px;
	}
.fl-node-r9mhuq1jp6zx .pp-content-post:hover .pp-post-content {
	}

.fl-node-r9mhuq1jp6zx .pp-post-event-calendar-date,
.fl-node-r9mhuq1jp6zx .pp-post-event-calendar-date span {
		}
.fl-node-r9mhuq1jp6zx .pp-post-event-calendar-venue,
.fl-node-r9mhuq1jp6zx .pp-post-event-calendar-venue span.tribe-address {
	}
.fl-node-r9mhuq1jp6zx .pp-post-event-calendar-cost,
.fl-node-r9mhuq1jp6zx .pp-post-event-calendar-cost span.ticket-cost {
	}
.fl-node-r9mhuq1jp6zx .pp-post-event-calendar-cost form {
	margin-top: 10px;
}

.fl-node-r9mhuq1jp6zx .pp-content-post .pp-more-link-button,
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-more-link-button:visited,
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-add-to-cart a,
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-add-to-cart a:visited,
.fl-node-r9mhuq1jp6zx .pp-post-event-calendar-cost form .tribe-button,
.fl-node-r9mhuq1jp6zx .pp-post-event-calendar-cost form .tribe-button:visited {
	
			color: #ffffff;
	
   cursor: pointer;
}



.fl-node-r9mhuq1jp6zx .pp-content-post .pp-content-grid-more:hover,
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-add-to-cart a:hover,
.fl-node-r9mhuq1jp6zx .pp-post-event-calendar-cost form .tribe-button:hover {
			background: #000000;
					border-color: #eeeeee;
	}

.fl-node-r9mhuq1jp6zx .pp-content-post .pp-post-title-divider {
	background-color: #333333;
}


.fl-node-r9mhuq1jp6zx .pp-content-post .pp-post-image .pp-content-category-list {
	background-color: #000000;
	color: #ffffff;
		right: auto;
	left: 0;
	}
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-post-image .pp-content-category-list a {
	color: #ffffff;
}

.fl-node-r9mhuq1jp6zx .pp-content-post.pp-grid-style-5 .pp-content-post-date span.pp-post-day {
	background-color: #f9f9f9;
	color: #888888;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}
.fl-node-r9mhuq1jp6zx .pp-content-post.pp-grid-style-5 .pp-content-post-date span.pp-post-month {
	background-color: #000000;
	color: #ffffff;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}

.fl-node-r9mhuq1jp6zx .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

.fl-node-r9mhuq1jp6zx .pp-content-post .pp-post-image .pp-post-title {
	background: rgba(0, 0, 0, 0.5);
	text-align: left;
}


.fl-node-r9mhuq1jp6zx .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-r9mhuq1jp6zx .pp-content-post:hover .pp-post-meta {
	}
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-post-meta span {
	}
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-r9mhuq1jp6zx .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

.fl-node-r9mhuq1jp6zx .pp-content-grid-post .pp-content-category-list,
.fl-node-r9mhuq1jp6zx .pp-content-carousel-post .pp-content-category-list {
	}

.fl-node-r9mhuq1jp6zx .pp-content-post.pp-grid-style-7 .pp-content-post-meta {
	}
.fl-node-r9mhuq1jp6zx .pp-content-post.pp-grid-style-7:hover .pp-content-post-meta {
	}

.fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-theme .owl-dots .owl-dot span {
	opacity: 1;
        background: #666666;
            width: 10px;
            height: 10px;
            border-radius: 100px;
        box-shadow: none;
}

.fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	background: #000000;
    	opacity: 1;
    box-shadow: none;
}


.fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button {
		width: 40px;
	height: 40px;
	}
.fl-builder-content .fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-builder-content .fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button[class*=owl]:visited,
.fl-page .fl-builder-content .fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-page .fl-builder-content .fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button[class*=owl]:visited {
	}
.fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button svg {
	height: 30px;
}
.fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button svg path {
	}

.fl-builder-content .fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-builder-content .fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button[class*=owl]:focus,
.fl-page .fl-builder-content .fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-page .fl-builder-content .fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button[class*=owl]:focus {
		}
.fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button:hover svg path {
	}



.fl-node-r9mhuq1jp6zx .pp-content-post {
    opacity: 1;
	text-align: left;
}

.fl-node-r9mhuq1jp6zx .pp-content-post:hover {
	}

.fl-node-r9mhuq1jp6zx .pp-content-post.pp-grid-style-7 .pp-content-body {
	}
.fl-node-r9mhuq1jp6zx .pp-content-post.pp-grid-style-7:hover .pp-content-body {
	}

.woocommerce .fl-node-r9mhuq1jp6zx .pp-content-post {
		margin-bottom: 0px;
	}


.fl-node-r9mhuq1jp6zx .pp-content-post {
	position: relative;
		float: left;
	margin-bottom: 0px;
	width: calc((100% - 0.1px) / 1);/*99.9%;*/
			}
.fl-node-r9mhuq1jp6zx.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 0px;
}

@media only screen and (min-width: 768px) {
	.fl-node-r9mhuq1jp6zx.cg-css-grid .pp-content-post-grid.pp-equal-height {
		grid-column-gap: 0px;
		grid-row-gap: 0ch;
	}
}


.fl-node-r9mhuq1jp6zx .pp-grid-space {
	width: 0px;
}

.fl-node-r9mhuq1jp6zx .pp-content-post .pp-content-grid-more-link,
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-add-to-cart {
	margin-top: 10px;
	margin-bottom: 5px;
    position: relative;
    z-index: 2;
}


.fl-node-r9mhuq1jp6zx .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

.fl-node-r9mhuq1jp6zx .pp-content-post .star-rating {
            margin-left: 0;
    }

.fl-node-r9mhuq1jp6zx .pp-content-post.pp-grid-style-5 .star-rating {
    margin-left: 0;
}

.fl-node-r9mhuq1jp6zx .pp-content-post .star-rating:before,
.fl-node-r9mhuq1jp6zx .pp-content-post .star-rating span:before {
    color: #000000;
}

.fl-node-r9mhuq1jp6zx .pp-content-post .pp-product-price,
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-product-price span.price {
    color: #000000;
    	font-size: px;
	}



.fl-node-r9mhuq1jp6zx.cg-square-layout .pp-content-post.pp-grid-style-9 {
	height: auto !important;
}

.fl-node-r9mhuq1jp6zx.cg-square-layout .pp-content-post-grid.pp-filters-active .pp-content-grid-post .pp-post-image:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.fl-node-r9mhuq1jp6zx.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

	.fl-node-r9mhuq1jp6zx .pp-post-filters-sidebar .pp-content-posts {
		width: 100%;
	}
	.fl-node-r9mhuq1jp6zx .pp-post-filters-sidebar.pp-posts-wrapper {
		display: flex;
		flex-direction: row;
	}
	.fl-node-r9mhuq1jp6zx .pp-post-filters-sidebar-right.pp-posts-wrapper {
		flex-direction: row-reverse;
	}
	.fl-node-r9mhuq1jp6zx .pp-post-filters-sidebar .pp-post-filters-wrapper {
		flex: 1 0 0;
	}
	.fl-node-r9mhuq1jp6zx .pp-post-filters-sidebar .pp-post-filters li {
		display: block;
					margin-bottom: 10px;
			}
		.fl-node-r9mhuq1jp6zx .pp-post-filters-sidebar-right .pp-post-filters li {
		margin-right: 0;
		margin-left: 10px;
	}
	

	@media screen and (max-width: 1200px) {
		
		
		.fl-node-r9mhuq1jp6zx .pp-content-post {
						margin-bottom: 0px;
			width: 100%;
			width: calc((100% - 0px) / 1);
								}

		.fl-node-r9mhuq1jp6zx .pp-grid-space {
			width: 0px;
		}
	}

@media screen and (max-width: 992px) {
	
	
	.fl-node-r9mhuq1jp6zx .pp-content-post {
				margin-bottom: 0px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-r9mhuq1jp6zx .pp-grid-space {
		width: 0px;
	}

	.fl-node-r9mhuq1jp6zx .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-r9mhuq1jp6zx .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-r9mhuq1jp6zx .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0px;
	}
	*/

	.fl-node-r9mhuq1jp6zx .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}
}

@media screen and (max-width: 750px) {
	
	
	.fl-node-r9mhuq1jp6zx .pp-content-post {
				margin-bottom: 0px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-r9mhuq1jp6zx .pp-grid-space {
		width: 0px;
	}

	.fl-node-r9mhuq1jp6zx .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-r9mhuq1jp6zx .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-r9mhuq1jp6zx .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0px;
	}
	*/

	.fl-node-r9mhuq1jp6zx .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}

	.fl-node-r9mhuq1jp6zx .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-r9mhuq1jp6zx .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-r9mhuq1jp6zx .pp-content-grid-pagination li a.page-numbers, .fl-node-r9mhuq1jp6zx .pp-content-grid-pagination li span.page-numbers, .fl-node-r9mhuq1jp6zx .pp-content-grid-load-more a {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 14px;
}
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-more-link-button, .fl-node-r9mhuq1jp6zx .pp-content-post .pp-add-to-cart a, .fl-node-r9mhuq1jp6zx .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-r9mhuq1jp6zx .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-r9mhuq1jp6zx .pp-content-post {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-r9mhuq1jp6zx .pp-content-post .pp-content-body {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-r9mhuq1jp6zx .pp-content-post.pp-grid-style-9 {
	height: 275px;
}
 .fl-node-r9mhuq1jp6zx > .fl-module-content {
	margin-top:0px;
}
	.fl-builder-content .fl-node-je9y5i2uockq.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-je9y5i2uockq.fl-module-rich-text.fl-rich-text * {
		color: #ffffff;
	}
	 .fl-node-je9y5i2uockq.fl-module-rich-text {
	margin-top:0px;
	margin-bottom:0px;
}
/**
 * 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-69rikaws10v3.fl-button-group-layout-vertical.fl-button-group-buttons a.fl-button,
.fl-node-69rikaws10v3.fl-button-group-layout-horizontal.fl-button-group-buttons a.fl-button {
	width: 100%;
}
.fl-node-69rikaws10v3.fl-button-group-layout-horizontal.fl-button-group-buttons {
		justify-content: flex-start}




	#fl-button-group-button-69rikaws10v3-0 a.fl-button {
		
			}

	
	#fl-button-group-button-69rikaws10v3-1 a.fl-button {
		
			}

		.fl-builder-content .fl-node-69rikaws10v3 .fl-button,
	.fl-builder-content .fl-node-69rikaws10v3 .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-69rikaws10v3.fl-button-group-layout-vertical.fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: left;
}
.fl-node-69rikaws10v3.fl-button-group-layout-horizontal.fl-button-group-buttons {
	justify-content: flex-start;
}
.fl-builder-content .fl-node-69rikaws10v3.fl-button-group.fl-button-group-buttons .fl-button-group-button {
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 5px;
}
#fl-button-group-button-69rikaws10v3-0 a.fl-button, #fl-button-group-button-69rikaws10v3-0 a.fl-button:visited {
	font-weight: 700;
	text-transform: uppercase;
}
#fl-button-group-button-69rikaws10v3-1 a.fl-button, #fl-button-group-button-69rikaws10v3-1 a.fl-button:visited {
	font-weight: 700;
	text-transform: uppercase;
}
@media(max-width: 750px) {
	.fl-builder-content .fl-node-69rikaws10v3.fl-button-group.fl-button-group-buttons .fl-button-group-button {
		padding-bottom: 20px;
	}
}
 .fl-node-69rikaws10v3.fl-module-button-group {
	margin-top:0px;
}
.fl-builder-content .fl-node-t794wmcvo8qp.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-t794wmcvo8qp.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 1.0em;
}
.fl-row .fl-col .fl-node-fiax3rngzbdm h2.fl-heading a,
.fl-row .fl-col .fl-node-fiax3rngzbdm h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-fiax3rngzbdm h2.fl-heading .fl-heading-text *,
.fl-node-fiax3rngzbdm h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-fiax3rngzbdm.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-fiax3rngzbdm > .fl-module-content {
	margin-bottom:30px;
}
@media (max-width: 750px) { .fl-node-fiax3rngzbdm > .fl-module-content { margin-bottom:20px; } }.uabb-image-carousel {
	position: relative;
	text-align: center;
}

.fl-col-group.fl-col-group-responsive-reversed:has(.fl-module-uabb-image-carousel),
.fl-col-group.fl-col-group-responsive-reversed .fl-col:has(.fl-module-uabb-image-carousel),
.fl-col-group.fl-col-group-responsive-reversed .fl-col-content:has(.fl-module-uabb-image-carousel) {
   min-width: 0px;
}

.internet-explorer9 .uabb-background-mask .uabb-overlay-icon {
	top: 50%;
	position: absolute;
	transform: translateX(-50%) translateY(-50%);
	left: 50%;
}

.uabb-image-carousel-item {
	float: left;
	text-align: center;
	display: none;
}

.uabb-image-carousel-content {
	position: relative;
	text-align: center;
	overflow: hidden;
}

.uabb-image-carousel img {
	width: 100%!important;
	height: auto!important;
	max-width: 100%;
}

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

.uabb-image-carousel .slick-prev,
.uabb-image-carousel .slick-next,
.uabb-image-carousel .slick-prev:hover,
.uabb-image-carousel .slick-prev:focus,
.uabb-image-carousel .slick-next:hover,
.uabb-image-carousel .slick-next:focus {
	display: block;
	position: absolute;
	font-size: 0;
	line-height: 0;
	width: auto;
	height: auto;
	top: 50%;
	padding: 0;
	cursor: pointer;
	color: #000;
	border: none;
	outline: none;
	background: transparent;
	border-radius: 0;
}

.uabb-image-carousel .slick-prev:hover:before,
.uabb-image-carousel .slick-prev:focus:before,
.uabb-image-carousel .slick-next:hover:before,
.uabb-image-carousel .slick-next:focus:before {
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}

.uabb-image-carousel .slick-prev.slick-disabled:before,
.uabb-image-carousel .slick-next.slick-disabled:before {
	opacity: .25;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=25);
}

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

.uabb-image-carousel .slick-prev,
.uabb-image-carousel .slick-prev:hover {
	left: -20px;
	z-index: 1;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.uabb-image-carousel .slick-next,
.uabb-image-carousel .slick-next:hover {
	right: -20px;
	z-index: 1;
	-webkit-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
}

.uabb-image-carousel.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-image-carousel .slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.uabb-image-carousel .slick-list:focus {
	outline: none;
}

.uabb-image-carousel .slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.uabb-image-carousel.slick-slider .slick-track,
.uabb-image-carousel.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

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

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

.uabb-image-carousel .slick-track:after {
	clear: both;
}

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

.uabb-image-carousel .slick-slide.dragging img {
	pointer-events: none;
}

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

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

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

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

.uabb-image-carousel 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-image-carousel 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-image-carousel-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.uabb-image-carousel-caption-below {
	padding: 15px;
}

.uabb-image-carousel-caption-hover {
	background: rgba(0, 0, 0, 0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	filter: alpha(opacity=0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition: opacity .3s linear;
	transition: opacity .3s linear;
}

.uabb-image-carousel-content:hover .uabb-image-carousel-caption-hover {
	opacity: 100;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=10000);
	filter: alpha(opacity=100);
}

.uabb-background-mask {
	background: rgba(0, 0, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	overflow: hidden;
	-webkit-transition: all 150ms linear;
	transition: all 150ms linear;
}

.uabb-background-mask .uabb-overlay-icon i {
	line-height: 1em;
	width: 1.3em;
	height: 1em;
}

.uabb-background-mask .uabb-caption {
	margin-bottom: 10px;
}

.uabb-background-mask .uabb-inner-mask {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
}

.uabb-background-mask.from-left {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

.uabb-background-mask.from-right {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

.uabb-background-mask.from-top {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

.uabb-background-mask.from-bottom {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

.uabb-image-carousel-content:hover .uabb-background-mask {
	opacity: 1;
	-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	-webkit-transform: translate(0);
	transform: translate(0);
	-webkit-transition-delay: 150ms;
	transition-delay: 150ms;
}

.uabb-image-carousel .uabb-image-carousel-content .uabb-gallery-img,
.uabb-masonary-content .uabb-image-carousel-content .uabb-gallery-img {
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

.uabb-image-carousel.zoom-in .uabb-image-carousel-content:hover .uabb-gallery-img,
.uabb-masonary-content.zoom-in .uabb-image-carousel-content:hover .uabb-gallery-img,
.uabb-image-carousel.zoom-out .uabb-image-carousel-content .uabb-gallery-img,
.uabb-masonary-content.zoom-out .uabb-image-carousel-content .uabb-gallery-img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.uabb-image-carousel.zoom-out .uabb-image-carousel-content:hover .uabb-gallery-img,
.uabb-masonary-content.zoom-out .uabb-image-carousel-content:hover .uabb-gallery-img {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.uabb-image-carousel-link a,
.uabb-image-carousel-link img,
.uabb-image-carousel .slick-slide img,
.uabb-image-carousel.slick-initialized .slick-slide {
	display: block;
}

.uabb-image-carousel .slick-loading .slick-track,
.uabb-image-carousel .slick-loading .slick-slide {
	visibility: hidden;
}

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

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

.theme-twentytwentyone .uabb-image-carousel ul.slick-dots li button{
	background: unset;
}
.uabb-image-carousel ul.slick-dots li.slick-active button:before {
	opacity: 0.75;
	color: black;
}
/* Compatibility CSS - end */

.fl-node-hl60e9ry75kn .uabb-image-carousel {
	margin: -15px;
}

.fl-node-hl60e9ry75kn .uabb-image-carousel-item {
	width: 14.285714285714%;
	padding: 15px;
}

/* Arrow Style */

.fl-node-hl60e9ry75kn .slick-prev i,
.fl-node-hl60e9ry75kn .slick-next i,
.fl-node-hl60e9ry75kn .slick-prev i:hover,
.fl-node-hl60e9ry75kn .slick-next i:hover,
.fl-node-hl60e9ry75kn .slick-prev i:focus,
.fl-node-hl60e9ry75kn .slick-next i:focus {
	outline: none;
		color: #ffffff;
					border-radius: 50%;
				background: #600019;
			}



	.fl-node-hl60e9ry75kn div.uabb-image-carousel .slick-prev,
	.fl-node-hl60e9ry75kn [dir='rtl'] div.uabb-image-carousel .slick-next {
		left: 15px;

	}
	.fl-node-hl60e9ry75kn div.uabb-image-carousel .slick-next,
	.fl-node-hl60e9ry75kn [dir='rtl'] div.uabb-image-carousel .slick-prev
	{
		right: 15px;
		transform: translate(50%, -50%);
	}
	.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-prev i,
	.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-next i,
	.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-prev i:hover,
	.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-prev i:focus,
	.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-next i:focus,
	.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-next i:hover {
		width: 28px;
		height: 28px;
		line-height: 28px;
	}



.fl-node-hl60e9ry75kn .uabb-image-carousel-caption {
	background-color: #f7f7f7;
}
.fl-node-hl60e9ry75kn .uabb-image-carousel-caption,
.fl-node-hl60e9ry75kn .uabb-background-mask .uabb-caption  {
	}
	@media ( max-width: 992px ) {
			}
	@media ( max-width: 750px ) {

		.fl-node-hl60e9ry75kn div.uabb-image-carousel .slick-prev,
		.fl-node-hl60e9ry75kn [dir='rtl'] div.uabb-image-carousel .slick-next {
			left: 15px;
		}
		.fl-node-hl60e9ry75kn div.uabb-image-carousel .slick-next,
		.fl-node-hl60e9ry75kn [dir='rtl'] div.uabb-image-carousel .slick-prev
		{
			right: 15px;
			transform: translate(50%, -50%);
		}
		.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-prev i,
		.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-next i,
		.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-prev i:hover,
		.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-prev i:focus,
		.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-next i:focus,
		.fl-node-hl60e9ry75kn .uabb-image-carousel .slick-next i:hover {
			width: 20px;
			height: 20px;
			line-height: 20px;
			font-size: 15px;
		}

				
			.fl-node-hl60e9ry75kn .uabb-module-content .slick-prev.slick-arrow,
			.fl-node-hl60e9ry75kn .uabb-module-content .slick-next.slick-arrow {
				display:none !important;
			}
				}
 .fl-node-hl60e9ry75kn > .fl-module-content {
	margin-top:0px;
}


.fl-builder-content .fl-node-83m4659oyczx a.fl-button,
.fl-builder-content .fl-node-83m4659oyczx a.fl-button:visited,
.fl-builder-content .fl-node-83m4659oyczx a.fl-button *,
.fl-builder-content .fl-node-83m4659oyczx a.fl-button:visited *,
.fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button,
.fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button:visited,
.fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button *,
.fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button:visited * {
	color: #af2042;
}












.fl-node-83m4659oyczx.fl-button-wrap, .fl-node-83m4659oyczx .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-83m4659oyczx a.fl-button, .fl-builder-content .fl-node-83m4659oyczx a.fl-button:visited, .fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button, .fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button:visited {
	font-weight: 700;
	text-transform: uppercase;
	border: 1px solid #f3f3f3;
	background-color: #ffffff;
}
.fl-builder-content .fl-node-83m4659oyczx a.fl-button:hover, .fl-builder-content .fl-node-83m4659oyczx a.fl-button:focus, .fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button:hover, .fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button:focus {
	border: 1px solid #d4d4d4;
}
.fl-builder-content .fl-node-83m4659oyczx a.fl-button, .fl-builder-content .fl-node-83m4659oyczx a.fl-button:visited, .fl-builder-content .fl-node-83m4659oyczx a.fl-button:hover, .fl-builder-content .fl-node-83m4659oyczx a.fl-button:focus, .fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button, .fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button:visited, .fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button:hover, .fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
}
.fl-builder-content .fl-node-83m4659oyczx a.fl-button:hover, .fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button:hover, .fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-83m4659oyczx a.fl-button:hover {
	background-color: #e0e0e0;
}
 .fl-node-83m4659oyczx.fl-module-button {
	margin-top:10px;
	margin-left:25px;
}
@media ( max-width: 750px ) {
 .fl-node-83m4659oyczx.fl-module-button.fl-module {
	margin-top:10px;
}
}
@media (max-width: 750px) { .fl-node-83m4659oyczx.fl-module-button { margin-left:20px; } }.fl-node-hz2wlg8it9p0.fl-module-heading .fl-heading {
	text-align: left;
}
.fl-node-ful8exacgdhi .pp-photo-container .pp-photo-content {
	}


.fl-node-ful8exacgdhi .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	background-clip: border-box;
	transition: all 0.3s ease-in-out;
}

.fl-node-ful8exacgdhi .pp-photo-container .pp-photo-content:hover .pp-photo-content-inner {
	}

.fl-node-ful8exacgdhi .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-ful8exacgdhi .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
        			border-color: #000000;
		        			border-width: 1px;
				border-style: none;
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }

.fl-node-ful8exacgdhi .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


.fl-node-ful8exacgdhi .pp-overlay-wrap .pp-overlay-bg {
    			background-color: #dddddd;
	    		border-top-left-radius: px;
		border-top-right-radius: px;
		border-bottom-left-radius: px;
		border-bottom-right-radius: px;
	}

@media only screen and (max-width: 992px) {
	    .fl-node-ful8exacgdhi .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}

@media only screen and (max-width: 750px) {
	.fl-node-ful8exacgdhi .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-ful8exacgdhi .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-ful8exacgdhi .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-ful8exacgdhi .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-ful8exacgdhi .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-ful8exacgdhi .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.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-vuk2j4d7zl60 .bx-pager.bx-default-pager a,
	.fl-node-vuk2j4d7zl60 .bx-pager.bx-default-pager a.active {
		background: #af2042;
		opacity: 1;
	}
		.fl-node-vuk2j4d7zl60 .bx-pager.bx-default-pager a {
		opacity: 0.2;
	}


/* Style Navigations */

	

/* When Overall position top */
	
	
	/* Global Alignment Css */
	.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial0 .uabb-imgicon-wrap {
					text-align: center;
			}

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

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

		.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial0 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

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

			color: ;

								}

		.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial0 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial0 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial0 .uabb-image .uabb-photo-img {
	width: 75px;
}
							.fl-node-vuk2j4d7zl60 .uabb-testimonials .uabb-testimonial0 .uabb-testimonial-photo .uabb-imgicon-wrap {
										width: 75px;
				}
				.fl-node-vuk2j4d7zl60 .uabb-testimonials .uabb-testimonial0 .uabb-testimonial-photo {
									}
			
			.fl-node-vuk2j4d7zl60 .uabb-testimonial0 .uabb-testimonial-info {
									
				width: 100%;
							}
					@media ( max-width: 750px ) {
							.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial0 .uabb-icon-wrap .uabb-icon i,
				.fl-node-vuk2j4d7zl60 .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-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial1 .uabb-imgicon-wrap {
					text-align: center;
			}

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

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

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

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

			color: ;

								}

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

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

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

		.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial2 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

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

			color: ;

								}

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

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

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

		.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

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

			color: ;

								}

		.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial3 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
								.fl-node-vuk2j4d7zl60 .uabb-testimonials .uabb-testimonial3 .uabb-testimonial-photo .uabb-imgicon-wrap {
										width: 75px;
				}
				.fl-node-vuk2j4d7zl60 .uabb-testimonials .uabb-testimonial3 .uabb-testimonial-photo {
									}
			
			.fl-node-vuk2j4d7zl60 .uabb-testimonial3 .uabb-testimonial-info {
									
				width: 100%;
							}
					@media ( max-width: 750px ) {
							.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial3 .uabb-icon-wrap .uabb-icon i,
				.fl-node-vuk2j4d7zl60 .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-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial4 .uabb-imgicon-wrap {
					text-align: center;
			}

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

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

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

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

			color: ;

								}

		.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial4 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial4 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
								.fl-node-vuk2j4d7zl60 .uabb-testimonials .uabb-testimonial4 .uabb-testimonial-photo .uabb-imgicon-wrap {
										width: 75px;
				}
				.fl-node-vuk2j4d7zl60 .uabb-testimonials .uabb-testimonial4 .uabb-testimonial-photo {
									}
			
			.fl-node-vuk2j4d7zl60 .uabb-testimonial4 .uabb-testimonial-info {
									
				width: 100%;
							}
					@media ( max-width: 750px ) {
							.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial4 .uabb-icon-wrap .uabb-icon i,
				.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial4 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
		
	/* Global Alignment Css */
	.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial5 .uabb-imgicon-wrap {
					text-align: center;
			}

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

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

		.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial5 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

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

			color: ;

								}

		.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial5 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial5 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial5 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
								.fl-node-vuk2j4d7zl60 .uabb-testimonials .uabb-testimonial5 .uabb-testimonial-photo .uabb-imgicon-wrap {
										width: 75px;
				}
				.fl-node-vuk2j4d7zl60 .uabb-testimonials .uabb-testimonial5 .uabb-testimonial-photo {
									}
			
			.fl-node-vuk2j4d7zl60 .uabb-testimonial5 .uabb-testimonial-info {
									
				width: 100%;
							}
					@media ( max-width: 750px ) {
							.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial5 .uabb-icon-wrap .uabb-icon i,
				.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial5 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
		
	/* Global Alignment Css */
	.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial6 .uabb-imgicon-wrap {
					text-align: center;
			}

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

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

		.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial6 .uabb-icon-wrap .uabb-icon i:before {
			background: none;
		}

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

			color: ;

								}

		.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial6 .uabb-icon-wrap .uabb-icon i:hover:before {
			background: none;
		}
		/* Icon Css End */
		
			@media ( max-width: 992px ) {
			.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial6 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 750px ) {
			.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial6 .uabb-imgicon-wrap {
									text-align: ;
							}
		}
								.fl-node-vuk2j4d7zl60 .uabb-testimonials .uabb-testimonial6 .uabb-testimonial-photo .uabb-imgicon-wrap {
										width: 75px;
				}
				.fl-node-vuk2j4d7zl60 .uabb-testimonials .uabb-testimonial6 .uabb-testimonial-photo {
									}
			
			.fl-node-vuk2j4d7zl60 .uabb-testimonial6 .uabb-testimonial-info {
									
				width: 100%;
							}
					@media ( max-width: 750px ) {
							.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial6 .uabb-icon-wrap .uabb-icon i,
				.fl-node-vuk2j4d7zl60 .uabb-testimonial.uabb-testimonial6 .uabb-icon-wrap .uabb-icon i:before {
					font-size: 0px;
					line-height: px;
					height: px;
					width: px;
				}
						}
			.fl-node-vuk2j4d7zl60 .uabb-testimonial .uabb-rating .uabb-rating__ico {
		color: #af2042;
			}


/* Box Layout starts Here */



/* Typography */
.fl-node-vuk2j4d7zl60 .uabb-testimonial-info .testimonial-author-namevuk2j4d7zl60 {
			color: #af2042;
				margin-top: 10px;
		margin-bottom: 5px;
}
.fl-node-vuk2j4d7zl60 .uabb-testimonial-info .testimonial-author-designationvuk2j4d7zl60 {
		margin-top: 5px;
	}
.fl-node-vuk2j4d7zl60 .uabb-testimonial-info .testimonial-author-descriptionvuk2j4d7zl60 {
		padding-top: 10px;
	}

/* Typography Media queries*/

	@media ( max-width: 992px ) {
		.fl-node-vuk2j4d7zl60 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			.fl-node-vuk2j4d7zl60 .uabb-icon-wrap .uabb-icon i,
			.fl-node-vuk2j4d7zl60 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
				}
		@media ( max-width: 750px ) {
					.fl-node-vuk2j4d7zl60 .uabb-icon-wrap .uabb-icon i,
			.fl-node-vuk2j4d7zl60 .uabb-icon-wrap .uabb-icon i:before {
				font-size: 0px;
				line-height: px;
				height: px;
				width: px;
			}
					.fl-node-vuk2j4d7zl60 .uabb-testimonial .uabb-rating .uabb-rating__ico {
					}
			}
	.fl-node-vuk2j4d7zl60 .uabb-testimonial-info .testimonial-author-namevuk2j4d7zl60  {
	font-weight: 700;
	font-size: 20px;
}
.fl-node-vuk2j4d7zl60 .uabb-testimonial-info .testimonial-author-descriptionvuk2j4d7zl60 {
	font-size: 16px;
}
 .fl-node-vuk2j4d7zl60 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-ucoi265zdh3n.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-ucoi265zdh3n > .fl-module-content {
	margin-top:40px;
	margin-bottom:0px;
}
@media (max-width: 750px) { .fl-node-ucoi265zdh3n > .fl-module-content { margin-top:20px; } }div.fancybox-container {
	z-index: 999992;
}
.pp-photo-gallery {
    position: relative;
	text-align: center;
	text-decoration: none;
	opacity: 0;
}
.pp-photo-gallery:before,
.pp-photo-gallery:after {
	content: " ";
	display: table;
}
.pp-photo-gallery:after {
	clear: both;
}
.pp-photo-gallery .pp-photo-gallery-item {
    float: left;
    text-align: center;
}
.pp-photo-gallery .pp-photo-gallery-content {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.pp-photo-gallery .pp-photo-gallery-content > a {
	display: block;
    padding: unset;
	isolation: isolate;
	overflow: hidden;
	transform: translateZ(0);
}

/* Overlay */
.pp-photo-gallery .pp-gallery-overlay {
	position: absolute;
	overflow: hidden;
	transition: .5s ease;
}

.pp-photo-gallery .pp-gallery-overlay .pp-caption {
	margin-bottom: 10px;
}

.pp-photo-gallery .pp-photo-gallery-content .pp-gallery-img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    will-change: transform;
    width: 100%;
}

.pp-photo-gallery.justified-gallery > a,
.pp-photo-gallery.justified-gallery > div {
	opacity: 0;
	visibility: hidden !important;
}
.pp-photo-gallery.justified-gallery > .entry-visible {
	opacity: 1;
	visibility: visible !important;
}

.pp-photo-gallery.justified-gallery .pp-photo-gallery-content {
	height: 100%;
}

.pp-gallery-pagination .pp-gallery-load-more {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	-webkit-transition: 0.2s all ease-in-out;
	-moz-transition: 0.2s all ease-in-out;
	transition: 0.2s all ease-in-out;
}
.pp-gallery-pagination .pp-gallery-load-more.disabled {
	opacity: 0.5;
	pointer-events: none;
}
.pp-gallery-pagination a,
.pp-gallery-pagination a:visited {
	text-decoration: none;
}

.pp-gallery-fancybox-axis-x.fancybox-show-thumbs .fancybox-inner {
	right: 0;
	bottom: 95px;
}
.pp-gallery-fancybox-axis-x .fancybox-thumbs {
	top: auto;
	width: auto;
	bottom: 0;
	left: 0;
	right : 0;
	height: 95px;
	padding: 10px 10px 5px 10px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.3);
}
.fancybox-13o0zmla7eu2 button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}





.fl-node-13o0zmla7eu2 .pp-photo-gallery-item {
	width: 23.4%;
		margin-bottom: 2%;
	}


.fl-node-13o0zmla7eu2 .pp-gallery-masonry-item {
	width: calc( 23.4% - 1px );
}

.fl-node-13o0zmla7eu2 .pp-photo-gallery-item:hover {
	}
	.fl-node-13o0zmla7eu2 .pp-photo-gallery-item:nth-child(4n+1){
		clear: left;
	}
	.fl-node-13o0zmla7eu2 .pp-photo-gallery-item:nth-child(4n+0){
		clear: right;
	}
	.fl-node-13o0zmla7eu2 .pp-photo-gallery-item:nth-child(4n){
		margin-right: 0;
	}

.fl-node-13o0zmla7eu2 .pp-photo-gallery-item img,
.fl-node-13o0zmla7eu2 .pp-gallery-overlay,
.fl-node-13o0zmla7eu2 .pp-photo-gallery-content,
.fl-node-13o0zmla7eu2 .pp-photo-gallery-content > a {
				}


.fl-node-13o0zmla7eu2 .pp-photo-space {
	width: 2%;
}





.fl-node-13o0zmla7eu2 .pp-gallery-overlay .pp-overlay-icon span {
	width: auto;
	height: auto;
	color: ;
	font-size: 30px;
	background-color: ;
					}

.fl-node-13o0zmla7eu2 .pp-gallery-overlay .pp-overlay-icon span:before {
	font-size: 30px;
	width: auto;
	height: auto;
}

.fl-node-13o0zmla7eu2 .pp-photo-gallery-caption,
.fl-node-13o0zmla7eu2 .pp-gallery-overlay .pp-caption {
	}















.fl-node-13o0zmla7eu2 .pp-gallery-pagination.pagination-scroll {
	display: none;
}
.fl-node-13o0zmla7eu2 .pp-gallery-pagination .pp-gallery-load-more {
			background-color: #eee;
		}
.fl-node-13o0zmla7eu2 .pp-gallery-pagination .pp-gallery-load-more:hover {
			}

.fancybox-13o0zmla7eu2-overlay {
	background-image: none;
			background-color: rgba(0,0,0,0.5);
	}
.fancybox-is-open .fancybox-13o0zmla7eu2-overlay {
	opacity: 1;
}

@media only screen and ( max-width: 1200px ) {
	
			.fl-node-13o0zmla7eu2 .pp-photo-gallery-item {
			width: 23.4%;
		}

			}

@media only screen and ( max-width: 992px ) {
	
			.fl-node-13o0zmla7eu2 .pp-photo-gallery-item {
			width: 48.9%;
		}

			}

@media only screen and ( max-width: 750px ) {
			.fl-node-13o0zmla7eu2 .pp-photo-gallery-item {
			width: 99.9%;
		}
			}
.fl-node-13o0zmla7eu2 .pp-photo-gallery-caption {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-13o0zmla7eu2 .pp-gallery-pagination {
	text-align: left;
}
.fl-node-13o0zmla7eu2 .pp-gallery-pagination .pp-gallery-load-more {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-animated.fl-fade-up {
	animation: fl-fade-up 1s ease;
	-webkit-animation: fl-fade-up 1s ease;
}
@-webkit-keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */
.client-reviews .fl-module-adv-testimonials {
-webkit-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.34);
-moz-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.34);
box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.34);
padding-top:30px;
padding-left:20px
padding-right:20px;
border-radius:50px;
}.partners-awards .uabb-image-carousel-content {
    background:#FFFFFF!important;
    border-radius: 15px;
    padding:5px;
-webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.17);
-moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.17);
box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.17);
}
/* End Global Nodes CSS */


/* Start Layout CSS */
.chairman-award {
    position: relative;
    z-index: 99;
}
.about-us-photo .fl-photo-img{
        outline-offset: 7px!important;
    outline: 2px solid #af2042!important;
}
.white-outline .fl-photo-img{
        outline-offset: 7px!important;
    outline: 2px solid #FFFFFF!important;
}
#gform_submit_button_7 {
    margin-top:10px;
    margin-left:7px;
    background: #FFFFFF!important;
    color:#af2042;
    border-radius:0px!important;
    outline-offset:4px!important;
    outline:2px solid #FFFFFF;
}
.join-us .pp-infobox {
         outline-offset: 7px!important;
    outline: 2px solid #af2042!important;   
}
#consultation .gfield_checkbox label {
    color:#FFFFFF!important;
}

.ppr-btn-group a{
        outline-offset: 4px!important;
    outline: 2px solid #af2042!important;
}
.uabb-hspot-sonar {
    display:none!important;
}
/* End Layout CSS */

		.fl-node-uvm2as9wj80h .fl-row-content {
			position: inherit;
		}
		
							.fl-node-uvm2as9wj80h .uabb-top-row-separator.uabb-has-svg svg {
									width: calc( 100% + 1.5px );
							}
		
					.fl-node-uvm2as9wj80h .uabb-bottom-row-separator.uabb-has-svg svg {
									width: calc( 100% + 1.5px ) ;
							}
		
		.fl-node-uvm2as9wj80h #uabb-top-slit2,
		.fl-node-uvm2as9wj80h #uabb-top-slit3 {
						fill: #afafaf;
		}

		.fl-node-uvm2as9wj80h #uabb-bottom-slit2,
		.fl-node-uvm2as9wj80h #uabb-bottom-slit3 {
						fill: #5f0000;
		}

		.fl-node-uvm2as9wj80h #uabb-top-pine-tree-separator2 {
						fill: #ffffff;
			stroke: #ffffff;
		}

		.fl-node-uvm2as9wj80h #uabb-bottom-pine-tree-separator2 {
						fill: #ff7092;
			stroke: #ff7092;
		}

		.fl-node-uvm2as9wj80h #uabb-top-pine-tree-bend-separator2 {
						fill: #ffffff;
			stroke: #ffffff;
		}

		.fl-node-uvm2as9wj80h #uabb-bottom-pine-tree-bend-separator2 {
						fill: #ff7092;
			stroke: #ff7092;
		}

		.fl-node-uvm2as9wj80h #uabb-top-slime-separator2 {
						fill: #ffffff;
			stroke: #ffffff;
		}

		.fl-node-uvm2as9wj80h #uabb-bottom-slime-separator2 {
						fill: #ff7092;
			stroke: #ff7092;
		}

		.fl-node-uvm2as9wj80h #uabb-top-wave-slide-separator2 {
						fill: #ffffff;
			stroke: #ffffff;
		}

		.fl-node-uvm2as9wj80h #uabb-bottom-wave-slide-separator2 {
						fill: #ff7092;
			stroke: #ff7092;
		}


					.fl-node-uvm2as9wj80h .uabb-top-row-separator {
			z-index: 9;
		}
							.fl-node-uvm2as9wj80h .uabb-bottom-row-separator {
			z-index: 9;
		}
		
		/* Responsive Sizes */
					@media(max-width: 992px) {
																	.fl-node-uvm2as9wj80h .uabb-top-row-separator.uabb-has-svg svg {
													width: 100%;
											}
				
									.fl-node-uvm2as9wj80h .uabb-bottom-row-separator.uabb-has-svg svg {
													width: 100%;
											}
				
			}

			@media(max-width: 750px) {

																		.fl-node-uvm2as9wj80h .uabb-bottom-row-separator svg {
						height: 20px;
					}
									
									.fl-node-uvm2as9wj80h .uabb-top-row-separator.uabb-has-svg svg {
													width: 100%;
											}
				
									.fl-node-uvm2as9wj80h .uabb-bottom-row-separator.uabb-has-svg svg {
													width: 100%;
											}
				
			}
			/* 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: 750px) {
	.uabb-js-breakpoint {
		content:"750";
	}
}


																																
					
					
					
																														
					
					
					
																							
					
					
					
																																												
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																														
					
					
					
																
					
					
					
																														
					
					
					
																
					
					
					
																																																			
					
					
					
																																	
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-qgxc3n9dyrb1 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-fep0iq59sx4v .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-gw5bk1s9fve2 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6dpgiv3qx54y .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-3284egzf5omy .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-a81g2copb0rx .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-rjx5vtk4foi0 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-nu5dmiyrsv8w .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-db63rgneks4a .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-hra0dgm1lqin .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-uvm2as9wj80h .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-vmcuq052rlbn .fl-row-content {
				min-width: 0px;
			}
		