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

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:before,
.fl-module:after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

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

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

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

.fl-visible-large,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: none;
}

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

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

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

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

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

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

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

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

/* Full Height Rows */
.fl-row-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-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.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-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%;
}

/* IE 11 - Row full height - vertical alignment center/bottom fix */
.fl-builder-ie-11 .fl-row.fl-row-full-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile),
.fl-builder-ie-11 .fl-row.fl-row-custom-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile) {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Stupid IE Full Height Row Fixes */
.fl-builder-ie-11 .fl-row-full-height .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content-wrap {
	height: auto;
}

.fl-builder-ie-11 .fl-row-full-height .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content {
	flex: 0 0 auto;
	flex-basis: 100%;
	margin: 0;
}

.fl-builder-ie-11 .fl-row-full-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content {
    margin: 0 auto;
}

.fl-builder-ie-11 .fl-row-full-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height),
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height) {
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

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

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

/* IE 11 - height bottom > row align bottom - center fix */
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}

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

.fl-col-group-equal-height,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.fl-col-group-equal-height{
    -webkit-flex-wrap: wrap;
    	-ms-flex-wrap: wrap;
    		flex-wrap: wrap;
			    width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
    -webkit-flex-wrap: nowrap;
    	-ms-flex-wrap: nowrap;
    		flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-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-col-group-equal-height .fl-col-content{
	    -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%;
            	 	 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;
	-webkit-justify-content: flex-start;	
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: 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;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
}

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

/* IE11 fix for images with height:auto in equal height columns. */
.fl-builder-ie-11 .fl-col-group-equal-height,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-col,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-col-content,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-module,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	min-height: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/* Columns
------------------------------------------------------ */

.fl-col {
	float: right;
}.fl-row-fixed-width { max-width: 1200px; }.fl-row-content-wrap{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.fl-row-content-wrap{padding-top: 20px;padding-right: 20px;padding-bottom: 20px;padding-left: 20px;}.fl-col-content{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.fl-col-content{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.fl-module-content{margin-top: 20px;margin-right: 20px;margin-bottom: 20px;margin-left: 20px;}@media (max-width: 1200px) { /* Responsive Utilities
------------------------------------------------------ */
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl {
	display: none !important;
}
.fl-visible-xl,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: none;
}
.fl-visible-desktop,
.fl-visible-desktop-medium,
.fl-visible-large,
.fl-visible-large-medium,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col {
	display: block;
}
.fl-col-group-equal-height .fl-visible-desktop.fl-col,
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col {
	display: flex;
}
 }@media (max-width: 992px) { /* Responsive Utilities
------------------------------------------------------ */
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large {
	display: none !important;
}
.fl-visible-xl,
.fl-visible-desktop,
.fl-visible-large,
.fl-visible-mobile,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-large.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: none;
}
.fl-visible-desktop-medium,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col {
	display: block;
}
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium-mobile.fl-col {
	display: flex;
}
 }@media (max-width: 768px) { /* Responsive Utilities
------------------------------------------------------ */
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop-medium,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop-medium,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large-medium,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large-medium {
	display: none !important;
}

.fl-visible-xl,
.fl-visible-desktop,
.fl-visible-desktop-medium,
.fl-visible-large,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group-equal-height .fl-visible-xl.fl-col,
.fl-col-group-equal-height .fl-visible-desktop.fl-col,
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium.fl-col {
	display: none;
}

.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: block;
}

/* 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: -ms-flexbox;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap-reverse;
	-webkit-flex-wrap: wrap-reverse;
	-ms-box-orient: horizontal;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col {
	-webkit-box-flex: 0 0 100%;
	-moz-box-flex: 0 0 100%;
	-webkit-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	min-width: 0;
}

/* 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;
}
 }.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





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

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

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-6uji91d50mr7.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-6uji91d50mr7.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 (device-aspect-ratio: 40/71) {
	.fl-node-6uji91d50mr7.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-6uji91d50mr7 > .fl-row-content-wrap:after {
	background-image: linear-gradient(90deg, rgba(66,139,202,0) 0%, #624360 100%);
}
.fl-node-6uji91d50mr7 > .fl-row-content-wrap {
	background-image: url(https://armansuleh.com/wp-content/uploads/2023/05/بنر-طراحی-و-محاسبات-سوله-آرمان-سوله.jpg);
	background-repeat: no-repeat;
	background-position: 0% 30%;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-6uji91d50mr7.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 300px;
}
.fl-node-6uji91d50mr7 .fl-row-content {
	max-width: 1200px;
}
@media(max-width: 768px) {
	.fl-node-6uji91d50mr7 > .fl-row-content-wrap {
		background-position: 15% 0%;
	}
}
 .fl-node-6uji91d50mr7 > .fl-row-content-wrap {
	padding-top:100px;
}






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

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

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-jvqw802u4f5t.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-jvqw802u4f5t.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 (device-aspect-ratio: 40/71) {
	.fl-node-jvqw802u4f5t.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-jvqw802u4f5t.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 670px;
}
.fl-node-jvqw802u4f5t .fl-builder-bottom-edge-layer {
	bottom: -1px;
}
.fl-node-jvqw802u4f5t .fl-builder-bottom-edge-layer > * {
	width: 2150px;
	left: calc( 50% - 1075px );
	right: auto;
	height: 50px;
	top: auto;
	bottom: 0;
	transform: scaleX(1) scaleY(-1);
}
.fl-node-jvqw802u4f5t .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #624360;
}
 .fl-node-jvqw802u4f5t > .fl-row-content-wrap {
	padding-top:50px;
	padding-bottom:20px;
}






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

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

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-d0gar3quk12j.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-d0gar3quk12j.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 (device-aspect-ratio: 40/71) {
	.fl-node-d0gar3quk12j.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-d0gar3quk12j > .fl-row-content-wrap {
	background-color: #624360;
}
.fl-node-d0gar3quk12j.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 212px;
}
.fl-node-d0gar3quk12j .fl-row-content {
	max-width: 1294px;
}
 .fl-node-d0gar3quk12j > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}






.fl-node-hb103lapkxoi .fl-builder-top-edge-layer > * {
	width: 2150px;
	left: calc( 50% - 1075px );
	right: auto;
	height: 50px;
	top: 0;
	bottom: auto;
	transform: scaleX(-1) scaleY(1);
}
.fl-node-hb103lapkxoi .fl-builder-top-edge-layer .fl-shape-content .fl-shape {
	fill: #624360;
}
.fl-node-hb103lapkxoi .fl-builder-bottom-edge-layer > * {
	width: 2150px;
	left: calc( 50% - 1075px );
	right: auto;
	height: 50px;
	top: auto;
	bottom: 0;
	transform: scaleX(-1) scaleY(-1);
}
.fl-node-hb103lapkxoi .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
 .fl-node-hb103lapkxoi > .fl-row-content-wrap {
	margin-bottom:20px;
}
 .fl-node-hb103lapkxoi > .fl-row-content-wrap {
	padding-top:40px;
}






.fl-node-ynsrl97wmcuo > .fl-row-content-wrap {
	background-color: #624360;
}
.fl-node-ynsrl97wmcuo .fl-builder-bottom-edge-layer {
	bottom: -1px;
}
.fl-node-ynsrl97wmcuo .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 50px;
	top: auto;
	bottom: 0;
	transform: scaleX(1) scaleY(-1);
}
.fl-node-ynsrl97wmcuo .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
 .fl-node-ynsrl97wmcuo > .fl-row-content-wrap {
	padding-bottom:40px;
}






























.fl-node-o1dx0itpk9va > .fl-row-content-wrap {
	background-color: #f9a229;
}
.fl-node-o1dx0itpk9va .fl-row-content {
	max-width: 1190px;
}
.fl-node-o1dx0itpk9va .fl-builder-top-edge-layer {
	top: -1px;
}
.fl-node-o1dx0itpk9va .fl-builder-top-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: auto;
	top: 0;
	bottom: auto;
	transform: scaleX(1) scaleY(1);
}
.fl-node-o1dx0itpk9va .fl-builder-top-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
.fl-node-o1dx0itpk9va .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: auto;
	top: auto;
	bottom: 0;
	transform: scaleX(1) scaleY(-1);
}
.fl-node-o1dx0itpk9va .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
 .fl-node-o1dx0itpk9va > .fl-row-content-wrap {
	margin-top:0px;
}












.fl-node-bvwut6gerh8n > .fl-row-content-wrap {
	background-color: #f9a229;
}
.fl-node-bvwut6gerh8n .fl-row-content {
	max-width: 1190px;
}
.fl-node-bvwut6gerh8n .fl-builder-top-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: auto;
	top: 0;
	bottom: auto;
	transform: scaleX(1) scaleY(1);
}
.fl-node-bvwut6gerh8n .fl-builder-top-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
.fl-node-bvwut6gerh8n .fl-builder-bottom-edge-layer {
	bottom: -1px;
}
.fl-node-bvwut6gerh8n .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 100px;
	top: auto;
	bottom: 0;
	transform: scaleX(1) scaleY(-1);
}
.fl-node-bvwut6gerh8n .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
 .fl-node-bvwut6gerh8n > .fl-row-content-wrap {
	margin-top:0px;
}






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

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

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-fiy1cgal28p5.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-fiy1cgal28p5.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 (device-aspect-ratio: 40/71) {
	.fl-node-fiy1cgal28p5.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-fiy1cgal28p5.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 280px;
}




.fl-node-8zmwvld2jt6e {
	width: 40%;
}




.fl-node-rbet9j4pndko {
	width: 26.67%;
}




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




.fl-node-pekb1ztdryv9 {
	width: 20%;
}




.fl-node-fipe2ha4rl90 {
	width: 20%;
}




.fl-node-w57mlhx9fvje {
	width: 20%;
}




.fl-node-8w3qdpe2yhlk {
	width: 20%;
}




.fl-node-5nux2013r9yv {
	width: 20%;
}




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




.fl-node-g2vrt45wk1on {
	width: 50%;
}
.fl-node-g2vrt45wk1on > .fl-col-content:after {
	background-color: rgba(255,255,255,0.52);
}
.fl-node-g2vrt45wk1on > .fl-col-content {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: contain;
}




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




.fl-node-47xyoh0zj8ga {
	width: 100%;
}




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




.fl-node-3nr0gjdwcq8e {
	width: 33%;
}
.fl-node-3nr0gjdwcq8e > .fl-col-content {
	background-color: #f9a229;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
 .fl-node-3nr0gjdwcq8e > .fl-col-content {
	margin-top:-50px;
	margin-right:0px;
}




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




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




.fl-node-65impcvueo8y {
	width: 100%;
}




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




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




.fl-node-1dngciq2v850 {
	width: 20%;
}




.fl-node-cm5u8ljrfwkx {
	width: 20%;
}




.fl-node-i6fabxjgqtzd {
	width: 20%;
}




.fl-node-15zu0tfg9hw6 {
	width: 20%;
}




.fl-node-rwt4kqxsgo91 {
	width: 20%;
}




.fl-node-95ycjhi4lso1 {
	width: 100%;
}
.fl-node-95ycjhi4lso1 > .fl-col-content {
	background-color: #624360;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}




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




.fl-node-61n0exy2qic5 {
	width: 100%;
}
.fl-node-61n0exy2qic5 > .fl-col-content {
	background-color: #624360;
	border-color: #f9a229;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}




.fl-node-g6bq28zxwdsu {
	width: 16%;
}




.fl-node-8xzlo951i0ep {
	width: 8%;
}




.fl-node-4jmxp6ub7yl8 {
	width: 75%;
}




.fl-node-839cjndz1bug {
	width: 100%;
}




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




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




.fl-node-q1hytop5g9wd {
	width: 76%;
}




.fl-node-g0vwems2yoxt {
	width: 23%;
}




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




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




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




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




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




.fl-node-nc4vq8dfajib {
	width: 33.33%;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
	.fl-builder-content .fl-node-sfqywaztnve9 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-sfqywaztnve9 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-sfqywaztnve9 .fl-rich-text, .fl-builder-content .fl-node-sfqywaztnve9 .fl-rich-text *:not(b, strong) {
	font-size: 30px;
	text-align: center;
}
.fl-node-1pj0atzrxb9l .fl-separator {
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: #f9a229;
	max-width: 100%;
	margin: auto;
}

			.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}a.pp-button,
a.pp-button:visited {
	display: inline-block;
	overflow: hidden;
    position: relative;
	text-decoration: none;
	text-shadow: none;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	-ms-transition: all .3s linear;
	transition: all .3s linear;
}
.pp-button:hover {
	text-decoration: none;
}
.pp-button:active {
	position: relative;
	top: 1px;
}
.pp-button-width-full .pp-button {
	display: block;
	text-align: center;
}
.pp-button-width-custom .pp-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.pp-button-left {
	text-align: left;
}
.pp-button-center {
	text-align: center;
}
.pp-button-right {
	text-align: right;
}
.pp-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.pp-button i.pp-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.pp-button-has-icon .pp-button-text {
	vertical-align: middle;
}

.pp-button-wrap a.pp-button:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    -o-transition-property: transform;
    -ms-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.pp-button .dashicons,
.pp-button .dashicons-before:before {
	font-size: inherit;
	height: auto;
	width: auto;
}
.pp-button .pp-button-has-subtext {
	display: flex;
	flex-direction: column;
}@media (max-width: 768px) { .fl-module-button .pp-button-left,
.fl-module-button .pp-button-right {
	text-align: center;
}
 }


.fl-node-4d6ufoy702hx .pp-button-wrap a.pp-button,
.fl-node-4d6ufoy702hx .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
			background: #ffffff;
	
		background-clip: border-box;
}

.fl-node-4d6ufoy702hx .pp-button-wrap a.pp-button:hover,
.fl-node-4d6ufoy702hx .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #624360;
			
	}


.fl-node-4d6ufoy702hx a.pp-button {
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.fl-node-4d6ufoy702hx a.pp-button,
.fl-node-4d6ufoy702hx a.pp-button * {
	color: #f9a229;
}

.fl-node-4d6ufoy702hx a.pp-button:hover,
.fl-node-4d6ufoy702hx a.pp-button:focus,
.fl-node-4d6ufoy702hx a.pp-button:hover *,
.fl-node-4d6ufoy702hx a.pp-button:focus * {
	color: #ffffff;
}

	    .fl-node-4d6ufoy702hx .pp-button-wrap a.pp-button,
		.fl-node-4d6ufoy702hx .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-4d6ufoy702hx .pp-button-wrap {
	text-align: center;
}
.fl-node-4d6ufoy702hx a.pp-button {
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
.fl-node-4d6ufoy702hx .pp-button-wrap a.pp-button, .fl-node-4d6ufoy702hx .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #efefef;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	width: 200px;
}
.fl-node-4d6ufoy702hx .pp-button-wrap a.pp-button:hover, .fl-node-4d6ufoy702hx .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
}
.fl-node-4d6ufoy702hx .pp-button .pp-button-icon {
	font-size: 18px;
}
 .fl-node-4d6ufoy702hx > .fl-module-content {
	margin-top:0px;
}



.fl-node-lex1y06rtug2 .pp-button-wrap a.pp-button,
.fl-node-lex1y06rtug2 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
			background: #ffffff;
	
		background-clip: border-box;
}

.fl-node-lex1y06rtug2 .pp-button-wrap a.pp-button:hover,
.fl-node-lex1y06rtug2 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #624360;
			
	}


.fl-node-lex1y06rtug2 a.pp-button {
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.fl-node-lex1y06rtug2 a.pp-button,
.fl-node-lex1y06rtug2 a.pp-button * {
	color: #f9a229;
}

.fl-node-lex1y06rtug2 a.pp-button:hover,
.fl-node-lex1y06rtug2 a.pp-button:focus,
.fl-node-lex1y06rtug2 a.pp-button:hover *,
.fl-node-lex1y06rtug2 a.pp-button:focus * {
	color: #ffffff;
}

	    .fl-node-lex1y06rtug2 .pp-button-wrap a.pp-button,
		.fl-node-lex1y06rtug2 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-lex1y06rtug2 .pp-button-wrap {
	text-align: center;
}
.fl-node-lex1y06rtug2 a.pp-button {
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
}
.fl-node-lex1y06rtug2 .pp-button-wrap a.pp-button, .fl-node-lex1y06rtug2 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #efefef;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	font-weight: 500;
	font-size: 18px;
	text-align: center;
	width: 200px;
}
.fl-node-lex1y06rtug2 .pp-button-wrap a.pp-button:hover, .fl-node-lex1y06rtug2 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
}
.fl-node-lex1y06rtug2 .pp-button .pp-button-icon {
	font-size: 18px;
}
 .fl-node-lex1y06rtug2 > .fl-module-content {
	margin-top:0px;
}
.bb-heading-input.input-small {
	width: 46px !important;
}

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

.pp-heading-content .pp-heading-link {
	text-decoration: none;
}
.pp-heading-content span.heading-title {
	display: block;
}
.pp-heading-content .pp-heading.pp-separator-inline .heading-title {
	display: inline-block;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span {
	position: relative;
	display: inline-block;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before,
.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	border-width: 0;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
	right: 100%;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
	left: 100%;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-left .heading-title span {
	padding-left: 0 !important;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-right .heading-title span {
	padding-right: 0 !important;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-left .heading-title span:before {
	display: none;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-right .heading-title span:after {
	display: none;
}

.pp-heading-content .pp-heading-separator {
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.pp-heading-content .pp-heading-separator.line_with_icon:before {
	right: 50%;
	left: auto;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-left:before {
	display: none;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-right:after {
	display: none;
}

.pp-heading-content .pp-heading-separator.line_with_icon:after {
	left: 50%;
	right: auto;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

.pp-heading-content .pp-heading-separator.line_with_icon:before,
.pp-heading-content .pp-heading-separator.line_with_icon:after {
	content: "";
	position: absolute;
	bottom: 50%;
	border-width: 0;
	top: 50%;
}

.pp-heading-content .pp-heading-separator .heading-icon-image {
	vertical-align: middle;
	box-shadow: none !important;
	max-width: 100%;
}

.pp-heading-content .pp-heading-separator .pp-separator-line {
	max-width: 100%;
	display: block;
}

.pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
}

.pp-heading-content .pp-heading-separator.icon_only span {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-left .heading-title span {
		padding-left: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-right .heading-title span {
		padding-right: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-left .heading-title span:before {
		display: none;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-right .heading-title span:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-right:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-left:after {
		left: 2%;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-right:before {
		right: 2%;
	}
}

@media only screen and (max-width: 480px) {
	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-left .heading-title span {
		padding-left: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-right .heading-title span {
		padding-right: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-left .heading-title span:before {
		display: none;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-right .heading-title span:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-right:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:after {
		left: 2%;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-right:before {
		right: 2%;
	}
}@media (max-width: 768px) { /**
 * 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.
 */ }
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-dj4nfvxpzcow .pp-heading-content {
	text-align: right;
}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading {
			display: inline-flex;
		align-items: center;
		}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #000000;
									display: inline;
	}
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
	}


div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
				margin-left: 0px;
		display: inline;
	}
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
	}


div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading .heading-title {
	margin-top: 10px;
	margin-bottom: 10px;
}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 15px;
			border-style: dotted;
			border-color: #f9a229;
			border-bottom-width: 30px;
	}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 15px;
			border-style: dotted;
			border-color: #f9a229;
			border-bottom-width: 30px;
	}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-sub-heading,
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: right;
	}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 15px;
			border-style: dotted;
			border-color: #f9a229;
			border-bottom-width: 30px;
	}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: dotted;
			border-bottom-width: 30px;
			border-bottom-color: #f9a229;
			width: 15px;
			float: right;
	}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator {
	}


div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-dj4nfvxpzcow .pp-heading-content {
				text-align: ;
			}
	div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-dj4nfvxpzcow .pp-heading-content {
				text-align: ;
			}
	div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-dj4nfvxpzcow div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span {
	padding-left: 20px;
	padding-right: 20px;
}
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator {
	margin-left: 20px;
}
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-dj4nfvxpzcow .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-dj4nfvxpzcow > .fl-module-content {
	margin-bottom:0px;
}
img.mfp-img {
    padding-bottom: 40px !important;
}
@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content {
	width: 100%;
} }.fl-node-6n3ud2s0tml8 .fl-photo {
	text-align: center;
}
.fl-node-6n3ud2s0tml8 .fl-photo-img, .fl-node-6n3ud2s0tml8 .fl-photo-content {
	width: 300px;
}
.fl-node-6n3ud2s0tml8 .fl-photo-img {
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 1200px) {
	.fl-node-6n3ud2s0tml8 .fl-photo-img, .fl-node-6n3ud2s0tml8 .fl-photo-content {
		width: 200px;
	}
}



.fl-node-py8egxb7izra .pp-button-wrap a.pp-button,
.fl-node-py8egxb7izra .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
			background: #f9a229;
	
		background-clip: border-box;
}

.fl-node-py8egxb7izra .pp-button-wrap a.pp-button:hover,
.fl-node-py8egxb7izra .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #624360;
			
	}


.fl-node-py8egxb7izra a.pp-button {
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.fl-node-py8egxb7izra a.pp-button,
.fl-node-py8egxb7izra a.pp-button * {
	color: #ffffff;
}

.fl-node-py8egxb7izra a.pp-button:hover,
.fl-node-py8egxb7izra a.pp-button:focus,
.fl-node-py8egxb7izra a.pp-button:hover *,
.fl-node-py8egxb7izra a.pp-button:focus * {
	color: #ffffff;
}

	    .fl-node-py8egxb7izra .pp-button-wrap a.pp-button,
		.fl-node-py8egxb7izra .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-py8egxb7izra .pp-button-wrap {
	text-align: center;
}
.fl-node-py8egxb7izra a.pp-button {
	padding-top: 10px;
	padding-right: 60px;
	padding-bottom: 10px;
	padding-left: 60px;
}
.fl-node-py8egxb7izra .pp-button-wrap a.pp-button, .fl-node-py8egxb7izra .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #efefef;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
}
.fl-node-py8egxb7izra .pp-button-wrap a.pp-button:hover, .fl-node-py8egxb7izra .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
}
.fl-node-py8egxb7izra .pp-button .pp-button-icon {
	font-size: 18px;
}
 .fl-node-py8egxb7izra > .fl-module-content {
	margin-top:0px;
}
.fl-row .fl-col .fl-node-juymw604x1g2 h2.fl-heading a,
.fl-row .fl-col .fl-node-juymw604x1g2 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-juymw604x1g2 h2.fl-heading .fl-heading-text *,
.fl-node-juymw604x1g2 h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-juymw604x1g2.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-juymw604x1g2 > .fl-module-content {
	margin-top:20px;
}
.fl-node-n817wuxmfa9y .fl-separator {
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: #f9a229;
	max-width: 15%;
	margin: auto;
}

			 .fl-node-n817wuxmfa9y > .fl-module-content {
	margin-top:10px;
	margin-right:020px;
	margin-bottom:10px;
	margin-left:020px;
}
	.fl-builder-content .fl-node-n638z7hkpd5b .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-n638z7hkpd5b .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-wr7quxs0om6t .pp-heading-content {
	text-align: right;
}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading {
			display: inline-flex;
		align-items: center;
		}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
									display: inline;
	}
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
	}


div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
				margin-left: 0px;
		display: inline;
	}
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
	}


div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading .heading-title {
	margin-top: 10px;
	margin-bottom: 10px;
}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 15px;
			border-style: dotted;
			border-color: #f9a229;
			border-bottom-width: 30px;
	}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 15px;
			border-style: dotted;
			border-color: #f9a229;
			border-bottom-width: 30px;
	}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-wr7quxs0om6t .pp-heading-content .pp-sub-heading,
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: right;
	}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 15px;
			border-style: dotted;
			border-color: #f9a229;
			border-bottom-width: 30px;
	}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: dotted;
			border-bottom-width: 30px;
			border-bottom-color: #f9a229;
			width: 15px;
			float: right;
	}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator {
	}


div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-wr7quxs0om6t .pp-heading-content {
				text-align: ;
			}
	div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-wr7quxs0om6t .pp-heading-content {
				text-align: ;
			}
	div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-wr7quxs0om6t div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span {
	padding-left: 20px;
	padding-right: 20px;
}
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator {
	margin-left: 20px;
}
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-wr7quxs0om6t .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-wr7quxs0om6t > .fl-module-content {
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-53d1wj8ankx9 h2.fl-heading a,
.fl-row .fl-col .fl-node-53d1wj8ankx9 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-53d1wj8ankx9 h2.fl-heading .fl-heading-text *,
.fl-node-53d1wj8ankx9 h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-53d1wj8ankx9.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-53d1wj8ankx9 > .fl-module-content {
	margin-top:20px;
}
	.fl-builder-content .fl-node-vtnbmswfj81g .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-vtnbmswfj81g .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	/* 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: 768px) { /**
 * 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-mbelhdk8690v,
.fl-col-group-equal-height .fl-node-mbelhdk8690v .fl-module-content,
.fl-col-group-equal-height .fl-node-mbelhdk8690v .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-mbelhdk8690v .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-mbelhdk8690v .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-mbelhdk8690v .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-col-group-align-center .fl-node-mbelhdk8690v .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-mbelhdk8690v .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-mbelhdk8690v .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

.fl-node-mbelhdk8690v .pp-infobox-icon-inner span.pp-icon,
.fl-node-mbelhdk8690v .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-mbelhdk8690v .pp-infobox {
			background: #ffffff;
		text-align: center;}


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


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

@media only screen and (min-width: 768px) {
	.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-3-wrapper,
	.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-4-wrapper {
														}
}


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


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


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

@media only screen and (max-width: 768px) {
	.fl-node-mbelhdk8690v .pp-infobox {
				text-align: center;
			}
	.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-3-wrapper {
		flex-direction: column;
	}
	.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
		margin-right: 0 !important;
	}
	.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-4-wrapper {
		flex-direction: column-reverse;
	}
	.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		margin-left: 0 !important;
	}
			.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-3 .layout-3-wrapper,
		.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-4 .layout-4-wrapper {
			align-items: normal;
		}
		
					.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}
.fl-node-mbelhdk8690v .pp-infobox-title-prefix {
	text-align: right;
}
.fl-node-mbelhdk8690v .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	letter-spacing: 0px;
	text-align: right;
}
.fl-node-mbelhdk8690v .pp-infobox-icon-inner span.pp-icon, .fl-node-mbelhdk8690v .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-mbelhdk8690v .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-mbelhdk8690v .pp-infobox {
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	box-shadow: 0px 5px 10px 0px rgba(98,67,96,0.5);
}
.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-mbelhdk8690v .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-3wrfjciz6y95,
.fl-col-group-equal-height .fl-node-3wrfjciz6y95 .fl-module-content,
.fl-col-group-equal-height .fl-node-3wrfjciz6y95 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-3wrfjciz6y95 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-3wrfjciz6y95 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-3wrfjciz6y95 .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-col-group-align-center .fl-node-3wrfjciz6y95 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-3wrfjciz6y95 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-3wrfjciz6y95 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

.fl-node-3wrfjciz6y95 .pp-infobox-icon-inner span.pp-icon,
.fl-node-3wrfjciz6y95 .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-3wrfjciz6y95 .pp-infobox {
			background: #ffffff;
		text-align: center;}


.fl-node-3wrfjciz6y95 .pp-infobox:hover {
	}


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

@media only screen and (min-width: 768px) {
	.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-3-wrapper,
	.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-4-wrapper {
														}
}


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


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


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

@media only screen and (max-width: 768px) {
	.fl-node-3wrfjciz6y95 .pp-infobox {
				text-align: center;
			}
	.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-3-wrapper {
		flex-direction: column;
	}
	.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
		margin-right: 0 !important;
	}
	.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-4-wrapper {
		flex-direction: column-reverse;
	}
	.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		margin-left: 0 !important;
	}
			.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
		.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-4 .layout-4-wrapper {
			align-items: normal;
		}
		
					.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}
.fl-node-3wrfjciz6y95 .pp-infobox-title-prefix {
	text-align: right;
}
.fl-node-3wrfjciz6y95 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	letter-spacing: 0px;
	text-align: right;
}
.fl-node-3wrfjciz6y95 .pp-infobox-icon-inner span.pp-icon, .fl-node-3wrfjciz6y95 .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-3wrfjciz6y95 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-3wrfjciz6y95 .pp-infobox {
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	box-shadow: 0px 5px 10px 0px rgba(98,67,96,0.5);
}
.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-3wrfjciz6y95 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-9nlmyd5i4kte,
.fl-col-group-equal-height .fl-node-9nlmyd5i4kte .fl-module-content,
.fl-col-group-equal-height .fl-node-9nlmyd5i4kte .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-9nlmyd5i4kte .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-9nlmyd5i4kte .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-9nlmyd5i4kte .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-col-group-align-center .fl-node-9nlmyd5i4kte .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-9nlmyd5i4kte .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-9nlmyd5i4kte .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

.fl-node-9nlmyd5i4kte .pp-infobox-icon-inner span.pp-icon,
.fl-node-9nlmyd5i4kte .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-9nlmyd5i4kte .pp-infobox {
			background: #ffffff;
		text-align: center;}


.fl-node-9nlmyd5i4kte .pp-infobox:hover {
	}


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

@media only screen and (min-width: 768px) {
	.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-3-wrapper,
	.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-4-wrapper {
														}
}


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


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


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

@media only screen and (max-width: 768px) {
	.fl-node-9nlmyd5i4kte .pp-infobox {
				text-align: center;
			}
	.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-3-wrapper {
		flex-direction: column;
	}
	.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
		margin-right: 0 !important;
	}
	.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-4-wrapper {
		flex-direction: column-reverse;
	}
	.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		margin-left: 0 !important;
	}
			.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-3 .layout-3-wrapper,
		.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-4 .layout-4-wrapper {
			align-items: normal;
		}
		
					.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}
.fl-node-9nlmyd5i4kte .pp-infobox-title-prefix {
	text-align: right;
}
.fl-node-9nlmyd5i4kte .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	letter-spacing: 0px;
	text-align: right;
}
.fl-node-9nlmyd5i4kte .pp-infobox-icon-inner span.pp-icon, .fl-node-9nlmyd5i4kte .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-9nlmyd5i4kte .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-9nlmyd5i4kte .pp-infobox {
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	box-shadow: 0px 5px 10px 0px rgba(98,67,96,0.5);
}
.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-9nlmyd5i4kte .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-t6q5pu84b920,
.fl-col-group-equal-height .fl-node-t6q5pu84b920 .fl-module-content,
.fl-col-group-equal-height .fl-node-t6q5pu84b920 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-t6q5pu84b920 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-t6q5pu84b920 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-t6q5pu84b920 .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-col-group-align-center .fl-node-t6q5pu84b920 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-t6q5pu84b920 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-t6q5pu84b920 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

.fl-node-t6q5pu84b920 .pp-infobox-icon-inner span.pp-icon,
.fl-node-t6q5pu84b920 .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-t6q5pu84b920 .pp-infobox {
			background: #ffffff;
		text-align: center;}


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


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

@media only screen and (min-width: 768px) {
	.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-3-wrapper,
	.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-4-wrapper {
														}
}


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


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


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

@media only screen and (max-width: 768px) {
	.fl-node-t6q5pu84b920 .pp-infobox {
				text-align: center;
			}
	.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-3-wrapper {
		flex-direction: column;
	}
	.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
		margin-right: 0 !important;
	}
	.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-4-wrapper {
		flex-direction: column-reverse;
	}
	.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		margin-left: 0 !important;
	}
			.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
		.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-4 .layout-4-wrapper {
			align-items: normal;
		}
		
					.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}
.fl-node-t6q5pu84b920 .pp-infobox-title-prefix {
	text-align: right;
}
.fl-node-t6q5pu84b920 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	letter-spacing: 0px;
	text-align: right;
}
.fl-node-t6q5pu84b920 .pp-infobox-icon-inner span.pp-icon, .fl-node-t6q5pu84b920 .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-t6q5pu84b920 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-t6q5pu84b920 .pp-infobox {
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	box-shadow: 0px 5px 10px 0px rgba(98,67,96,0.5);
}
.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-t6q5pu84b920 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-3im54xcqjsnk,
.fl-col-group-equal-height .fl-node-3im54xcqjsnk .fl-module-content,
.fl-col-group-equal-height .fl-node-3im54xcqjsnk .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-3im54xcqjsnk .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-3im54xcqjsnk .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-3im54xcqjsnk .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-col-group-align-center .fl-node-3im54xcqjsnk .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-3im54xcqjsnk .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-3im54xcqjsnk .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

.fl-node-3im54xcqjsnk .pp-infobox-icon-inner span.pp-icon,
.fl-node-3im54xcqjsnk .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-3im54xcqjsnk .pp-infobox {
			background: #ffffff;
		text-align: center;}


.fl-node-3im54xcqjsnk .pp-infobox:hover {
	}


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

@media only screen and (min-width: 768px) {
	.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-3-wrapper,
	.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-4-wrapper {
														}
}


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


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


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

@media only screen and (max-width: 768px) {
	.fl-node-3im54xcqjsnk .pp-infobox {
				text-align: center;
			}
	.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-3-wrapper {
		flex-direction: column;
	}
	.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
		margin-right: 0 !important;
	}
	.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-4-wrapper {
		flex-direction: column-reverse;
	}
	.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		margin-left: 0 !important;
	}
			.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-3 .layout-3-wrapper,
		.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-4 .layout-4-wrapper {
			align-items: normal;
		}
		
					.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}
.fl-node-3im54xcqjsnk .pp-infobox-title-prefix {
	text-align: right;
}
.fl-node-3im54xcqjsnk .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	letter-spacing: 0px;
	text-align: right;
}
.fl-node-3im54xcqjsnk .pp-infobox-icon-inner span.pp-icon, .fl-node-3im54xcqjsnk .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-3im54xcqjsnk .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-3im54xcqjsnk .pp-infobox {
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	box-shadow: 0px 5px 10px 0px rgba(98,67,96,0.5);
}
.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-3im54xcqjsnk .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-9yl8cbrhnu2t,
.fl-col-group-equal-height .fl-node-9yl8cbrhnu2t .fl-module-content,
.fl-col-group-equal-height .fl-node-9yl8cbrhnu2t .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-9yl8cbrhnu2t .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-9yl8cbrhnu2t .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-9yl8cbrhnu2t .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-col-group-align-center .fl-node-9yl8cbrhnu2t .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-9yl8cbrhnu2t .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-9yl8cbrhnu2t .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

.fl-node-9yl8cbrhnu2t .pp-infobox-icon-inner span.pp-icon,
.fl-node-9yl8cbrhnu2t .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-9yl8cbrhnu2t .pp-infobox {
			background: #ffffff;
		text-align: center;}


.fl-node-9yl8cbrhnu2t .pp-infobox:hover {
	}


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

@media only screen and (min-width: 768px) {
	.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-3-wrapper,
	.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-4-wrapper {
														}
}


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


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


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

@media only screen and (max-width: 768px) {
	.fl-node-9yl8cbrhnu2t .pp-infobox {
				text-align: center;
			}
	.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-3-wrapper {
		flex-direction: column;
	}
	.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
		margin-right: 0 !important;
	}
	.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-4-wrapper {
		flex-direction: column-reverse;
	}
	.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		margin-left: 0 !important;
	}
			.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-3 .layout-3-wrapper,
		.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-4 .layout-4-wrapper {
			align-items: normal;
		}
		
					.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}
.fl-node-9yl8cbrhnu2t .pp-infobox-title-prefix {
	text-align: right;
}
.fl-node-9yl8cbrhnu2t .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	letter-spacing: 0px;
	text-align: right;
}
.fl-node-9yl8cbrhnu2t .pp-infobox-icon-inner span.pp-icon, .fl-node-9yl8cbrhnu2t .pp-infobox-icon-inner span:before {
	font-size: 30px;
}
.fl-node-9yl8cbrhnu2t .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-9yl8cbrhnu2t .pp-infobox {
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	box-shadow: 0px 5px 10px 0px rgba(98,67,96,0.5);
}
.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-9yl8cbrhnu2t .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-ox58payrcdei .pp-heading-content {
	text-align: right;
}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading {
			display: inline-flex;
		align-items: center;
		}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-ox58payrcdei .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
									display: inline;
	}
div.fl-node-ox58payrcdei .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
	}


div.fl-node-ox58payrcdei .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
				margin-left: 0px;
		display: inline;
	}
div.fl-node-ox58payrcdei .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
	}


div.fl-node-ox58payrcdei .pp-heading-content .pp-heading .heading-title {
	margin-top: 10px;
	margin-bottom: 10px;
}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-ox58payrcdei .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-ox58payrcdei .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 15px;
			border-style: dotted;
			border-color: #f9a229;
			border-bottom-width: 30px;
	}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 15px;
			border-style: dotted;
			border-color: #f9a229;
			border-bottom-width: 30px;
	}

div.fl-node-ox58payrcdei .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-ox58payrcdei .pp-heading-content .pp-sub-heading,
div.fl-node-ox58payrcdei .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-ox58payrcdei .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: right;
	}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 15px;
			border-style: dotted;
			border-color: #f9a229;
			border-bottom-width: 30px;
	}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: dotted;
			border-bottom-width: 30px;
			border-bottom-color: #f9a229;
			width: 15px;
			float: right;
	}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator {
	}


div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-ox58payrcdei .pp-heading-content {
				text-align: ;
			}
	div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-ox58payrcdei .pp-heading-content {
				text-align: ;
			}
	div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-ox58payrcdei div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span {
	padding-left: 20px;
	padding-right: 20px;
}
div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator {
	margin-left: 20px;
}
div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-ox58payrcdei .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-ox58payrcdei > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-nva1z0cf34rg .fl-photo {
	text-align: center;
}
.fl-node-ti9vpeornz86 .fl-photo {
	text-align: center;
}
.fl-node-g9nl60cps142 .fl-photo {
	text-align: center;
}
.fl-node-w46iuy02exn5 .fl-photo {
	text-align: center;
}
.fl-node-g8fud2w3anxi .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-1cbzp2lrv786 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-1cbzp2lrv786 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-row .fl-col .fl-node-8gvtonmxfj63 h2.fl-heading a,
.fl-row .fl-col .fl-node-8gvtonmxfj63 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-8gvtonmxfj63 h2.fl-heading .fl-heading-text *,
.fl-node-8gvtonmxfj63 h2.fl-heading .fl-heading-text {
	color: #000000;
}
.fl-node-8gvtonmxfj63.fl-module-heading .fl-heading {
	text-align: right;
}
 .fl-node-8gvtonmxfj63 > .fl-module-content {
	margin-top:20px;
}
.fl-node-82thqswcy3li .fl-separator {
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: #f9a229;
	max-width: 15%;
	margin: 0 0 0 auto;
}

			 .fl-node-82thqswcy3li > .fl-module-content {
	margin-top:0px;
}
/*  Labels
------------------------------------ */

.pp-tabs-label {
	outline: 0;
	cursor: pointer;
	transition: all 0.2s ease-in;
	-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;
}
.pp-tabs-label:hover,
.pp-tab-active {
	transition: all 0.2s ease-in;
	-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;
}
.pp-tabs-label.pp-tab-active {
	position: relative;
	z-index: 1;
}
.pp-tab-label-flex {
	display: flex;
    flex-direction: row;
    flex: 1 1 auto;
}
.pp-tabs-label .pp-tab-label-flex {
	align-items: center;
}
.pp-tabs-label.pp-tab-icon-top .pp-tab-label-flex,
.pp-tabs-label.pp-tab-icon-bottom .pp-tab-label-flex {
	flex-direction: column;
}

.pp-tab-description {
	position: relative;
	margin-top: 10px;
}

.pp-clearfix:before,
.pp-clearfix:after {
	content: "";
	display: table;
}

.pp-clearfix:after {
	clear: both;
}

/*  Panel Labels
------------------------------------ */

.pp-tabs-panel-label {
	display: none;
}
.pp-tabs-panel-label span {
	display: table-cell;
	width: 100%;
}
.pp-tabs-panel-label .pp-toggle-icon {
	display: table-cell;
	line-height: inherit;
	opacity: .5;
	filter: alpha(opacity = 50);
	padding-left: 15px;
	vertical-align: middle;
	width: auto;
}

.pp-tabs-panel-label .pp-tab-close {
	display: none;
}

.pp-tabs-panel-label.pp-tabs-label.pp-tab-active .pp-tab-close {
	display: table-cell;
}

.pp-tabs-panel-label.pp-tabs-label.pp-tab-active .pp-tab-open {
	display: none;
}

/*  Panels
------------------------------------ */

.pp-tabs-default .pp-tabs-panels {
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
}

.pp-tabs-horizontal.pp-tabs-default .pp-tabs-panels {
	clear: both;
}
.pp-tabs-panel-content {
	display: none !important;
	padding: 30px;
	clear: both;
}

.pp-tabs-panel-content.pp-tab-active {
	display: block !important;
}
.pp-tabs-panel-content p:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

.pp-tabs-vertical .pp-tabs-panel-content.pp-tab-active {
    display: table;
    width: 100%;
}

.pp-tabs-panel .pp-tabs-label .pp-tab-label-inner {
	display: flex;
	align-items: center;
}

/* .pp-tabs-label .pp-tab-label-inner .pp-tab-icon,
.pp-tabs-label .pp-tab-label-inner .pp-tab-title {
	display: inline-table;
	vertical-align: middle;
} */

/* .pp-tabs-label.pp-tab-icon-top .pp-tab-label-inner .pp-tab-icon,
.pp-tabs-label.pp-tab-icon-top .pp-tabs-label .pp-tab-title,
.pp-tabs-label.pp-tab-icon-bottom .pp-tab-label-inner .pp-tab-icon,
.pp-tabs-label.pp-tab-icon-bottom .pp-tabs-label .pp-tab-title {
	display: block;
} */

/*  Horizontal
------------------------------------ */

.pp-tabs-horizontal .pp-tabs-label {
	float: left;
}
.pp-tabs-horizontal.pp-tabs-default .pp-tabs-labels {
	display: inherit;
}
.pp-tabs-horizontal.pp-tabs-default .pp-tabs-labels .pp-tabs-label {
	flex: initial;
}
.pp-tabs-horizontal.pp-tabs-default .pp-tabs-label {
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
	border-bottom: none !important;
}
.pp-tabs-horizontal.pp-tabs-default .pp-tabs-label.pp-tab-active {
	top: 1px;
}

/*  Vertical
------------------------------------ */

.pp-tabs-vertical .pp-tabs-labels {
	float: left;
	width: 30%;
}
.pp-tabs-vertical.pp-tabs-vertical-right .pp-tabs-labels {
	float: right;
}
.pp-tabs-vertical .pp-tabs-label {
	text-align: center;
	padding: 20px 10px;
}
.pp-tabs-vertical .pp-tabs-label.pp-tab-active {
	border-width: 0px;
	border-style: solid;
}
.pp-tabs-vertical.pp-tabs-default .pp-tabs-label {
	margin-right: -1px;
}
.pp-tabs-vertical.pp-tabs-vertical-right.pp-tabs-default .pp-tabs-label {
	margin-right: auto;
	margin-left: -1px;
}
.pp-tabs-vertical.pp-tabs-default .pp-tabs-label.pp-tab-active {
	border-width: 1px;
}
.pp-tabs-vertical .pp-tabs-panels {
	float: left;
	width: 70%;
}
.pp-tabs-vertical.pp-tabs-style-4 .pp-tabs-labels .pp-tabs-label {
	margin-right: 0;
}

.pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-labels .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	bottom: -45px;
}

/*  Horizontal
------------------------------------ */

.pp-tabs-horizontal .pp-tabs-labels {
	position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    -ms-box-orient: horizontal;
    -ms-box-pack: center;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
}

.pp-tabs-horizontal .pp-tabs-labels .pp-tabs-label {
	position: relative;
    z-index: 1;
    display: block;
    margin: 0;
    text-align: center;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
	padding: 15px 18px 12px;
}

/* .pp-tab-icon-top .pp-tab-icon,
.pp-tab-icon-bottom .pp-tab-icon {
    display: block;
    margin: 0 auto;
} */


/*.pp-tabs-horizontal.pp-tabs-style-5 .pp-tabs-labels .pp-tabs-label {
	padding: 0;
}*/

.pp-tabs-labels .pp-tabs-label .pp-tab-label-inner {
	position: relative;
}


/*  Style 1
------------------------------------ */

.pp-tabs-style-1 .pp-tabs-labels {
	border: 4px solid #eee;
}

.pp-tabs-horizontal.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label {
	margin: 0 2px;
}

.pp-tabs-horizontal.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label:first-child {
	margin-left: 0;
}

.pp-tabs-horizontal.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label:last-child {
	margin-right: 0;
}

.pp-tabs-vertical.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label {
	margin: 2px 0;
}

.pp-tabs-vertical.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label:first-child {
	margin-top: 0;
}

.pp-tabs-vertical.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label:last-child {
	margin-bottom: 0;
}

.pp-tabs-style-1 .pp-tabs-labels .pp-tabs-label.pp-tab-active {
	border: 0;
}

/*  Style 2
------------------------------------ */

.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-inner {
	position: relative;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
	overflow: visible;
    line-height: 1;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.pp-tabs-style-2 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -40px;
	display: block;
	border: solid 15px transparent;
	width: 0px;
	margin: 0 auto;
}

.pp-tabs-style-2 .pp-tabs-label.pp-tab-active {
	z-index: 50;
	border: 0;
}

.pp-tabs-style-2 .pp-tabs-label:first-child:before, .pp-tabs-style-2 .pp-tabs-label::after {
	position: absolute;
	top: 20%;
	right: 0;
	z-index: -1;
	width: 1px;
	height: 60%;
	content: '';
}

.pp-tabs-style-2 .pp-tabs-label.pp-no-border:after {
	display: none;
}

.pp-tabs-style-2 .pp-tabs-label:last-child:after,
.pp-tabs-style-2 .pp-tabs-label.pp-tab-active:after,
.pp-tabs-style-2 .pp-tabs-label.pp-tab-active:before,
.pp-tabs-style-2 .pp-tabs-label:first-child:before {
	display: none;
}

.pp-tabs-style-2 .pp-tabs-labels .pp-tabs-label:first-child:before {
	right: auto;
    left: 0;
}

.pp-tabs-style-2 .pp-tabs-labels .pp-tabs-label.pp-tab-active {
	border: 0;
}

/*  Style 3
------------------------------------ */

.pp-tabs-style-3 .pp-tabs-label {
    margin-left: 1px;
	overflow: hidden;
	position: relative;
}

.pp-tabs-style-3:not(.pp-tabs-vertical-left) .pp-tabs-labels .pp-tabs-label:first-child {
	margin-left: 0;
}

.pp-tabs-style-3 .pp-tabs-label:after {
	position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate3d(0,150%,0);
    transform: translate3d(0,150%,0);
}

.pp-tabs-style-3 .pp-tabs-label.pp-tab-active:after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.pp-tabs-style-3 .pp-tabs-label.pp-tab-active {
	border: 0;
}

/*  Style 4
------------------------------------ */

.pp-tabs-style-4 .pp-tabs-label {
    margin-right: 1px;
	position: relative;
	overflow: hidden;
}

.pp-tabs-style-4 .pp-tabs-label:before {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    -webkit-transform: translate3d(0,-150%,0);
    transform: translate3d(0,-150%,0);
}

.pp-tabs-style-4 .pp-tabs-label.pp-tab-active:before {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.pp-tabs-style-4  .pp-tabs-label.pp-tab-active {
	border-bottom: 0;
}

/*  Style 5
------------------------------------ */
.pp-tabs-style-5 .pp-tabs-label {
	padding: 0 !important;
	background-color: transparent !important;
	overflow: hidden;
}

.pp-tabs-style-5 .pp-tabs-label .pp-tab-label-inner {
	padding: 20px 10px;
	position: relative;
}

.pp-tabs-style-5 .pp-tabs-label .pp-tab-label-inner:after {
	position: absolute;
    top: 0;
    left: 0px;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    content: '';
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s;
    -webkit-transform: perspective(900px) rotate3d(1,0,0,90deg);
    transform: perspective(900px) rotate3d(1,0,0,90deg);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-perspective-origin: 50% 100%;
    perspective-origin: 50% 100%;
}

.pp-tabs-style-5 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	background-color: #eee;
    -webkit-transform: perspective(900px) rotate3d(1,0,0,0deg);
    transform: perspective(900px) rotate3d(1,0,0,0deg);
}

/*  Style 6
------------------------------------ */
.pp-tabs-style-6 .pp-tabs-label .pp-tab-label-inner {
	-webkit-transition: color 0.3s, -webkit-transform 0.3s;
    transition: color 0.3s, transform 0.3s;
	position: relative;
}

.pp-tabs-style-6 .pp-tabs-label.pp-tab-active .pp-tab-label-inner {
	-webkit-transform: translate3d(0,8px,0);
    transform: translate3d(0,8px,0);
}

.pp-tabs-style-6 .pp-tabs-label:last-child:before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #2CC185;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
}

.pp-tabs-vertical.pp-tabs-style-6 .pp-tabs-label:last-child:before {
	display: none;
}

/*  Style 7
------------------------------------ */
.pp-tabs-style-7 .pp-tabs-label {
	padding: 0 !important;
	background-color: transparent !important;
}

.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
	overflow: visible;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
	padding: 20px 10px;
}

/* .pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after, */
.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
	position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border: solid transparent;
    content: '';
    pointer-events: none;
}

.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
	/* margin-left: -11px; */
	border-width: 11px;
	border-top-color: rgba(0,0,0,0.2);
}
.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	margin-left: -10px;
    border-width: 10px;
    border-top-color: #e7ecea;
}

/*  Style 8
------------------------------------ */
.pp-tabs-style-8 .pp-tabs-label {
	padding: 0 !important;
	background-color: transparent !important;
	margin: 0 15px;
	overflow: hidden;
}

.pp-tabs-vertical.pp-tabs-style-8 .pp-tabs-label {
	margin: 0 !important;
}

.pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner {
	padding: 20px 10px;
	position: relative;
	overflow: hidden;
}

.pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner:after {
	position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #d2d8d6;
    content: '';
    -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
    transition: background-color 0.3s, transform 0.3s;
    -webkit-transition-timing-function: ease, cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: ease, cubic-bezier(0.7,0,0.3,1);
    -webkit-transform: translate3d(0,100%,0) translate3d(0,-3px,0);
    transform: translate3d(0,100%,0) translate3d(0,-3px,0);
}

.pp-tabs-style-8 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.pp-tabs-vertical.pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner:after {
	opacity: 0;
}
.pp-tabs-vertical.pp-tabs-style-8 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	opacity: 1;
}




/* Media Queries */

@media only screen and (min-width: 769px) {

	/* Style 2 */
	.pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-inner:after {
		border-top-color: transparent !important;
		border-left-color: #e4e4e4;
		bottom: 0;
		margin: auto 0;
		right: -40px;
		left: auto;
		top: -45px;
		height: 0;
		content: "";
		position: absolute;
	}
	.pp-tabs-vertical.pp-tabs-vertical-right.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-inner:after {
		right: auto;
		left: -40px;
		transform: rotate(180deg);
	}

	.pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-label:first-child:before,
	.pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-label::after {
		display: none;
	}

	/* Style 7 */
	.pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
		border-bottom: 0;
		border-right: 1px solid rgba(0,0,0,0.2);
	}
	.pp-tabs-vertical.pp-tabs-vertical-right.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
		border-left: 1px solid rgba(0,0,0,0.2);
		border-right: 0;
	}

	/*.pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after,*/
	.pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
		position: absolute;
		top: 35%;
	    right: -22px;
		left: auto;
	    width: 0;
	    height: 0;
	    border: solid transparent;
	    content: '';
	    pointer-events: none;
		border-top-color: transparent !important;
	}
	.pp-tabs-vertical.pp-tabs-vertical-right.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
		right: auto;
		left: -22px;
		transform: rotate(180deg);
	}

	.pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
		/* margin-left: -11px; */
		border-width: 11px;
		border-left-color: rgba(0,0,0,0.2);
	}
	/* .pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
		margin-left: -10px;
	    border-width: 10px;
	    border-left-color: #e7ecea;
	} */

}
@media (max-width: 768px) { /*  Labels
------------------------------------ */

.pp-tabs-labels {
	display: none !important;
}

/*  Panel Labels
------------------------------------ */

.pp-tabs-panel-label {
	display: table;
	width: 100%;
	padding: 20px 15px;
}

.pp-tabs-panel-label span {
	width: auto;
}

/*  Panels
------------------------------------ */

.pp-tabs-panel:last-child {
	border-bottom: none;
}


.pp-tabs-default .pp-tabs-panels {
	border: 0;
}

/*  Horizontal
------------------------------------ */

.pp-tabs-horizontal .pp-tabs-label {
	float: none;
}
.pp-tabs-horizontal .pp-tabs-label.pp-tab-active {
	border: none;
}

/*  Vertical
------------------------------------ */

.pp-tabs-vertical .pp-tabs-labels {
	float: none;
	width: auto;
}
.pp-tabs-vertical .pp-tabs-label.pp-tab-active {
	border: none;
}
.pp-tabs-vertical .pp-tabs-panels {
	float: none;
	width: auto;
}


.pp-tabs-panel-content {
	padding: 20px;
}
.pp-tabs .pp-tabs-label {
	text-align: left;
	border-bottom: 2px solid #e7e7e7;
}
.pp-tabs .pp-tabs-label.pp-tab-active {
	border-bottom: 0;
}

.pp-tabs .pp-tabs-default .pp-tabs-label,
.pp-tabs .pp-tabs-default .pp-tabs-label.pp-tab-active,
.pp-tabs .pp-tabs-style-5 .pp-tabs-label,
.pp-tabs .pp-tabs-style-6 .pp-tabs-label,
.pp-tabs .pp-tabs-style-6 .pp-tabs-label.pp-tab-active,
.pp-tabs .pp-tabs-style-7 .pp-tabs-label,
.pp-tabs .pp-tabs-style-7 .pp-tabs-label.pp-tab-active,
.pp-tabs .pp-tabs-style-8 .pp-tabs-label {
	background-color: transparent !important;
}

.pp-tabs-style-1 .pp-tabs-label {
	border: 0 !important;
	border-bottom: 2px solid #e7e7e7 !important;
}
.pp-tabs-style-1 .pp-tabs-label.pp-tab-active {
	border-bottom: 0 !important;
}
.pp-tabs-style-2 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after,
.pp-tabs-style-3 .pp-tabs-label:after,
.pp-tabs-style-4 .pp-tabs-label.pp-tab-active:before,
.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after,
.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
	display: none;
}
.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
	border-bottom: 0;
}

.pp-tabs-horizontal .pp-tabs-label .pp-tab-label-inner:before {
	content: "";
	display: block;
	height: auto;
	vertical-align: middle;
}
.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-inner {
	display: table;
}
.pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-label .pp-tab-label-inner:after {
	display: none;
}
.pp-tabs-style-2 .pp-tabs-label:first-child:before, .pp-tabs-style-2 .pp-tabs-label::after {
	display: none;
}
.pp-tabs .pp-tab-title {
	display: inline-block;
	width: auto;
}
.pp-tab-icon {
	padding-left: 0 !important;
	display: inline-table !important;
	margin-bottom: 0 !important;
	margin-top: 0 !important;
	margin-right: 15px !important;
}
.pp-tab-icon-right .pp-tab-icon,
.pp-tab-icon-bottom .pp-tab-icon {
	margin-right: 0 !important;
	margin-left: 15px !important;
}
.pp-tabs-panel-label .pp-toggle-icon {
	text-align: right;
}
.pp-tabs-style-5 .pp-tabs-label .pp-tab-label-inner:after {
	display: none;
}

.pp-tabs-horizontal.pp-tabs-default .pp-tabs-label.pp-tab-active {
	/*border: none;*/
}

.pp-tabs-style-8 .pp-tabs-label {
	margin: 0 !important;
}

.pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner:after {
	display: none;
} }/*  Labels
------------------------------------ */

.fl-node-4gd6mtperonj .pp-tabs-default .pp-tabs-label.pp-tab-active {
	border-color: #ffffff;
}

/*  Panels
------------------------------------ */

.fl-node-4gd6mtperonj .pp-tabs-default .pp-tabs-panels,
.fl-node-4gd6mtperonj .pp-tabs-default .pp-tabs-panel {
	border-color: #ffffff;
}

.fl-node-4gd6mtperonj .pp-tabs-label .pp-tab-icon {
	font-size: 20px;
			margin-right: 15px;
					}

.fl-node-4gd6mtperonj .pp-tabs-label .pp-tab-icon:before {
	font-size: 20px;
}

	.fl-node-4gd6mtperonj .pp-tabs-vertical .pp-tabs-label {
				text-align: center;
			}
	

.fl-node-4gd6mtperonj .pp-tabs-labels .pp-tabs-label .pp-tab-label-flex {
								justify-content: center;
					}
.fl-node-4gd6mtperonj .pp-tabs-panels .pp-tabs-panel-content {
			color: #ffffff;
			border-style: solid;
		border-color: #;
				border-top-width: 0px;
						border-right-width: 0px;
						border-bottom-width: 0px;
						border-left-width: 0px;
			}

.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label {
		background-color: #ffffff;
			color: #f9a229;
	}

.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label.pp-tab-active,
.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label.pp-tab-active:hover,
.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label:hover,
.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label:focus {
		background-color: #f9a229;
			color: #ffffff;
	}

.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label .pp-tab-description {
	}

.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label.pp-tab-active .pp-tab-description,
.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label.pp-tab-active:hover .pp-tab-description,
.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label:hover .pp-tab-description {
	}

.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label.pp-tab-active .pp-tab-icon,
.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label.pp-tab-active:hover .pp-tab-icon,
.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label:hover .pp-tab-icon {
	}

.fl-node-4gd6mtperonj .pp-tabs-panel-label .pp-toggle-icon {
		font-size: 16px;
		color: #333333;
}

.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-label.pp-tab-active .pp-toggle-icon {
	color: #ffffff;
}

.fl-node-4gd6mtperonj .pp-tabs-horizontal.pp-tabs-default .pp-tabs-label.pp-tab-active {
		top: 0;
	}

/*  Style 1
------------------------------------ */

.fl-node-4gd6mtperonj .pp-tabs-style-1 .pp-tabs-labels {
	background-color: #ffffff;
	border-color: #ffffff;
}

.fl-node-4gd6mtperonj .pp-tabs-style-1 .pp-tabs-label:hover {
	color: #ffffff;
}

/*  Style 2
------------------------------------ */

.fl-node-4gd6mtperonj .pp-tabs-style-2 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	border-top-color: #f9a229;
}

.fl-node-4gd6mtperonj .pp-tabs-style-2 .pp-tabs-label:first-child:before,
.fl-node-4gd6mtperonj .pp-tabs-style-2 .pp-tabs-label::after {
	background: rgba(255, 255, 255, 0.7);
}

/*  Style 3
------------------------------------ */

.fl-node-4gd6mtperonj .pp-tabs-style-3 .pp-tabs-label:after {
	background-color: #ffffff;
}

.fl-node-4gd6mtperonj .pp-tabs-style-3 .pp-tabs-label:hover {
	color: #f9a229;
	background-color: #ffffff;
}


/*  Style 4
------------------------------------ */

.fl-node-4gd6mtperonj .pp-tabs-style-4 .pp-tabs-label:before {
	background-color: #ffffff;
}

.fl-node-4gd6mtperonj .pp-tabs-style-4 .pp-tabs-label:hover {
	color: #f9a229;
	background-color: #ffffff;
}

/*  Style 5
------------------------------------ */
.fl-node-4gd6mtperonj .pp-tabs-style-5 .pp-tabs-label .pp-tab-label-inner:after {
	background-color: #f9a229;
}

.fl-node-4gd6mtperonj .pp-tabs-style-5 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	background-color: #f9a229;
}

.fl-node-4gd6mtperonj .pp-tabs-style-5 .pp-tabs-label:hover {
	color: #f9a229;
}

/*  Style 6
------------------------------------ */

				.fl-node-4gd6mtperonj .pp-tabs-style-6 .pp-tabs-label:first-child.pp-tab-active ~ .pp-tabs-label:last-child::before {
			-webkit-transform: translate3d(-400%,0,0);
			transform: translate3d(-400%,0,0);
		}
							.fl-node-4gd6mtperonj .pp-tabs-style-6 .pp-tabs-label:nth-child(2).pp-tab-active ~ .pp-tabs-label:last-child::before {
			-webkit-transform: translate3d(-300%,0,0);
			transform: translate3d(-300%,0,0);
		}
						.fl-node-4gd6mtperonj .pp-tabs-style-6 .pp-tabs-label:nth-child(3).pp-tab-active ~ .pp-tabs-label:last-child::before {
			-webkit-transform: translate3d(-200%,0,0);
			transform: translate3d(-200%,0,0);
		}
						.fl-node-4gd6mtperonj .pp-tabs-style-6 .pp-tabs-label:nth-child(4).pp-tab-active ~ .pp-tabs-label:last-child::before {
			-webkit-transform: translate3d(-100%,0,0);
			transform: translate3d(-100%,0,0);
		}
		
.fl-node-4gd6mtperonj .pp-tabs-style-6 .pp-tabs-label,
.fl-node-4gd6mtperonj .pp-tabs-style-6 .pp-tabs-label.pp-tab-active,
.fl-node-4gd6mtperonj .pp-tabs-style-6 .pp-tabs-label.pp-tab-active:hover,
.fl-node-4gd6mtperonj .pp-tabs .pp-tabs-style-6 .pp-tabs-label:hover {
	background-color: transparent !important;
	color: #f9a229 !important;
}

.fl-node-4gd6mtperonj .pp-tabs-style-6 .pp-tabs-label:last-child:before {
	background-color: #ffffff;
}


/*  Style 7
------------------------------------ */

.fl-node-4gd6mtperonj .pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
	border-bottom-color: #ffffff;
}

.fl-node-4gd6mtperonj .pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after,
.fl-node-4gd6mtperonj .pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
	border-top-color: #ffffff;
}

/*  Style 8
------------------------------------ */

.fl-node-4gd6mtperonj .pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner:after {
	background-color: #ffffff;
}

.fl-node-4gd6mtperonj .pp-tabs-style-8 .pp-tabs-label:hover .pp-tab-label-inner:after {
	background-color: #f9a229;
}

.fl-node-4gd6mtperonj .pp-tabs-style-8 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	background-color: #f9a229;
}

.fl-node-4gd6mtperonj .pp-tabs-style-8 .pp-tabs-label:hover {
	color: #f9a229;
}

.fl-node-4gd6mtperonj .pp-tabs-horizontal.pp-tabs-style-8 .pp-tabs-label {
	margin-left: 15px;
	margin-right: 15px;
}

@media only screen and (min-width: 769px) {
	.fl-node-4gd6mtperonj .pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
		border-left-color: #f9a229;
	}
	.fl-node-4gd6mtperonj .pp-tabs-vertical.pp-tabs-style-6 .pp-tabs-label {
		border-bottom: 4px solid transparent;
	}

	.fl-node-4gd6mtperonj .pp-tabs-vertical.pp-tabs-style-6 .pp-tabs-label.pp-tab-active {
		border-bottom: 4px solid #ffffff;
	}

	.fl-node-4gd6mtperonj .pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
		border-right-color: #ffffff;
	}
	.fl-node-4gd6mtperonj .pp-tabs-vertical.pp-tabs-vertical-right.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
		border-left-color: #ffffff;
	}
	.fl-node-4gd6mtperonj .pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before,
	.fl-node-4gd6mtperonj .pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
		border-left-color: #ffffff;
	}
}

@media only screen and (max-width: 768px) {
	.fl-node-4gd6mtperonj .pp-tabs-style-1 .pp-tabs-label {
		border: 4px solid #ffffff;
		margin: 2px 0;
	}
	.fl-node-4gd6mtperonj .pp-tabs-style-5 .pp-tabs-label.pp-tab-active {
		background-color: #f9a229 !important;
	}
	.fl-node-4gd6mtperonj .pp-tabs-style-8 .pp-tabs-label.pp-tab-active {
		background-color: #f9a229 !important;
	}
}.fl-node-4gd6mtperonj .pp-tabs-labels .pp-tabs-label .pp-tab-title, .fl-node-4gd6mtperonj .pp-tabs-panels .pp-tabs-label .pp-tab-title {
	font-weight: 700;
	font-size: 14px;
	text-align: center;
}
.fl-node-4gd6mtperonj .pp-tabs-panels .pp-tabs-panel-content {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
 .fl-node-4gd6mtperonj > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
.fl-node-j5wz4k8hc96x.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-j5wz4k8hc96x > .fl-module-content {
	margin-top:50px;
}
@media (max-width: 768px) { .fl-node-j5wz4k8hc96x > .fl-module-content { margin-top:20px; } }.fl-node-hsbpfgn3xa2m .fl-separator {
	border-top-width: 100px;
	border-top-style: solid;
	border-top-color: #f9a229;
	max-width: 20%;
	margin: auto;
}

			 .fl-node-hsbpfgn3xa2m > .fl-module-content {
	margin-top:100px;
}
@media (max-width: 768px) { .fl-node-hsbpfgn3xa2m > .fl-module-content { margin-top:20px; } } .fl-node-49notmzb8vc6 > .fl-module-content {
	margin-top:35px;
}
@media (max-width: 768px) { .fl-node-49notmzb8vc6 > .fl-module-content { margin-top:20px; } }.fl-node-6fan3c9h28kl.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-6fan3c9h28kl > .fl-module-content {
	margin-top:50px;
}
@media (max-width: 768px) { .fl-node-6fan3c9h28kl > .fl-module-content { margin-top:20px; } }.fl-node-7fzegijdar4p .fl-separator {
	border-top-width: 10px;
	border-top-style: solid;
	border-top-color: #f9a229;
	max-width: 20%;
	margin: auto;
}

		@media (max-width: 1200px) {
		.fl-node-7fzegijdar4p .fl-separator {
							border-top-width: 5px;
											}
	}
			 .fl-node-7fzegijdar4p > .fl-module-content {
	margin-top:50px;
}
@media ( max-width: 1200px ) {
 .fl-node-7fzegijdar4p.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-row .fl-col .fl-node-tfe1joxzlb7a h2.fl-heading a,
.fl-row .fl-col .fl-node-tfe1joxzlb7a h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-tfe1joxzlb7a h2.fl-heading .fl-heading-text *,
.fl-node-tfe1joxzlb7a h2.fl-heading .fl-heading-text {
	color: #624360;
}
.fl-node-tfe1joxzlb7a.fl-module-heading .fl-heading {
	text-align: center;
}
.uabb-image-carousel {
	position: relative;
	text-align: center;
}

.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-gohv89aeutcp .uabb-image-carousel {
	margin: -10px;
}

.fl-node-gohv89aeutcp .uabb-image-carousel-item {
	width: 33.333333333333%;
	padding: 10px;
}

/* Arrow Style */

.fl-node-gohv89aeutcp .slick-prev i,
.fl-node-gohv89aeutcp .slick-next i,
.fl-node-gohv89aeutcp .slick-prev i:hover,
.fl-node-gohv89aeutcp .slick-next i:hover,
.fl-node-gohv89aeutcp .slick-prev i:focus,
.fl-node-gohv89aeutcp .slick-next i:focus {
	outline: none;
		color: #428bca;
					border-radius: 50%;
				background: #efefef;
			}




.mfp-gallery img.mfp-img {
	padding: 40px 0;
}	

.mfp-counter {
	display: block !important;
}

.fl-node-gohv89aeutcp .uabb-background-mask {
	background: rgba(0,0,0,0.7);
}
.fl-node-gohv89aeutcp .uabb-background-mask .uabb-overlay-icon i {
	color: ;
	font-size: 16px;
}

.fl-node-gohv89aeutcp .uabb-image-carousel-caption {
	background-color: #f7f7f7;
}
.fl-node-gohv89aeutcp .uabb-image-carousel-caption,
.fl-node-gohv89aeutcp .uabb-background-mask .uabb-caption  {
	}
	@media ( max-width: 992px ) {
			}
	@media ( max-width: 768px ) {

		.fl-node-gohv89aeutcp div.uabb-image-carousel .slick-prev,
		.fl-node-gohv89aeutcp [dir='rtl'] div.uabb-image-carousel .slick-next {
			left: 10px;
		}
		.fl-node-gohv89aeutcp div.uabb-image-carousel .slick-next,
		.fl-node-gohv89aeutcp [dir='rtl'] div.uabb-image-carousel .slick-prev
		{
			right: 10px;
			transform: translate(50%, -50%);
		}
		.fl-node-gohv89aeutcp .uabb-image-carousel .slick-prev i,
		.fl-node-gohv89aeutcp .uabb-image-carousel .slick-next i,
		.fl-node-gohv89aeutcp .uabb-image-carousel .slick-prev i:hover,
		.fl-node-gohv89aeutcp .uabb-image-carousel .slick-prev i:focus,
		.fl-node-gohv89aeutcp .uabb-image-carousel .slick-next i:focus,
		.fl-node-gohv89aeutcp .uabb-image-carousel .slick-next i:hover {
			width: 20px;
			height: 20px;
			line-height: 20px;
			font-size: 15px;
		}

					}
.fl-row .fl-col .fl-node-qh75ne0via39 h2.fl-heading a,
.fl-row .fl-col .fl-node-qh75ne0via39 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-qh75ne0via39 h2.fl-heading .fl-heading-text *,
.fl-node-qh75ne0via39 h2.fl-heading .fl-heading-text {
	color: #624360;
}
.fl-node-qh75ne0via39.fl-module-heading .fl-heading {
	font-size: 24px;
}
.fl-builder-content .fl-node-92lp1uvo4mbq .fl-rich-text, .fl-builder-content .fl-node-92lp1uvo4mbq .fl-rich-text *:not(b, strong) {
	font-size: 18px;
}
 .fl-node-92lp1uvo4mbq > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button,
.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button:hover,
.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button:visited {
	}

.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button:hover {
	background-color: #ffffff;
}

.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button,
.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button:visited,
.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button *,
.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button:visited * {
	color: #ffffff;
}






.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button:hover,
.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button:hover span.fl-button-text,
.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button:hover * {
	color: #f9a229;
}





.fl-builder-content .fl-node-5av6nbwxfs7e .fl-button,
.fl-builder-content .fl-node-5av6nbwxfs7e .fl-button * {
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}


.fl-node-5av6nbwxfs7e .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button:hover, .fl-builder-content .fl-node-5av6nbwxfs7e a.fl-button:focus {
	border: 1px solid #f3f3f3;
}
 .fl-node-5av6nbwxfs7e > .fl-module-content {
	margin-top:60px;
}
@media (max-width: 768px) { .fl-node-5av6nbwxfs7e > .fl-module-content { margin-top:20px; } }.fl-row .fl-col .fl-node-2ydsikjleruq h2.fl-heading a,
.fl-row .fl-col .fl-node-2ydsikjleruq h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-2ydsikjleruq h2.fl-heading .fl-heading-text *,
.fl-node-2ydsikjleruq h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-2ydsikjleruq.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-module-pp-reviews .fl-module-content.fl-node-content {
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
}

.pp-reviews-wrapper {
	width: 94%;
	margin: auto;
}

.pp-reviews-wrapper .swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	z-index: 1;
	width: 100%;
}

.pp-reviews-wrapper .swiper-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.pp-reviews-wrapper .swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
}

.pp-reviews-wrapper .pp-review-item.swiper-slide {
	width: 100%;
	text-align: center;
	padding: 0;
	height: auto;
}

.pp-reviews-wrapper .pp-swiper-button {
	background-image: none;
	width: auto;
	height: auto;
	line-height: 1;
	position: absolute;
	display: inline-flex;
	z-index: 1;
	cursor: pointer;
	font-size: 25px;
	top: calc(50% - (30px / 2));
	transform: translateY(-50%);
	color: hsla(0,0%,93%,.9);
}

.pp-reviews-wrapper .pp-swiper-button-prev {
	left: 0;
}

.pp-reviews-wrapper .pp-swiper-button-next {
	right: 0;
}

.pp-reviews-wrapper .pp-reviews-swiper {
	padding-bottom: 30px;
}

.pp-reviews-wrapper .swiper-container-horizontal .swiper-pagination {
	position: relative;
	top: 0 !important;
	bottom: unset !important;
}

.pp-reviews-wrapper .swiper-container-horizontal > .swiper-pagination-bullets,
.pp-reviews-wrapper .swiper-pagination-custom,
.pp-reviews-wrapper .swiper-pagination-fraction {
	bottom: unset;
}

.pp-reviews-wrapper .dashicons,
.pp-reviews-wrapper .dashicons-before:before {
	width: unset !important;
}

.pp-review {
	border: 1px solid #e8e8e8;
	height: 100%;
	background-color: #fff;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
}

.pp-review-header,
.pp-review-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.pp-review-content {
	flex-direction: column;
	flex: 1;
}
.pp-review-link {
	margin-top: auto;
}
.pp-review-link a {
	text-decoration: none;
}

.pp-review-header {
	padding-top: 15px;
	padding-bottom: 6px;
	font-family: "Roboto", Sans-serif;
	font-weight: 600;
}

.pp-review-name {
	color: #1c2022;
	font-size: 12.5px;
	font-weight: 400;
	font-family: inherit;
	text-align:  left;
}

.pp-review-title {
	font-size: 12.5px;
	font-weight: 400;
	font-family: inherit;
	text-align:  left;
}

.pp-review-content {
	padding-top: 6px;
	padding-bottom: 15px;
}

.pp-review-header,
.pp-review-content {
	padding-left: 15px;
	padding-right: 15px;
}

.pp-review-header.has-separator {
	border-bottom: 1px solid #e8e8e8;
}

.pp-review-image {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.pp-review-image img {
	height: 36px;
	width: 36px;
	border-radius: 999px;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	-o-object-fit: cover;
	object-fit: cover;
}

.pp-review-cite {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	font-style: normal;
	font-size: 14px;
	line-height: 1;
	width: 100%;
}

.pp-review-icon {
	display: flex;
	margin-left: auto;
}

.pp-review-text {
	width: 100%;
}

.pp-rating {
	text-align: left;
}
.pp-rating i {
	font-style: normal;
	display: inline-block;
	position: relative;
	font-style: normal;
	cursor: default;
	transition: color .2s ease-in-out;
}

.pp-rating i:before {
	content: "\f005";
	display: inline;
	font-size: inherit;
	font-family: inherit;
	position: absolute;
	overflow: hidden;
	color: #f0ad4e;
}

.pp-rating i.pp-star-empty:before {
	width: 0;
}
.pp-rating i.pp-star-0:before {
	width: 0;
}
.pp-rating i.pp-star-1:before {
	width: 10%;
}
.pp-rating i.pp-star-2:before {
	width: 20%;
}
.pp-rating i.pp-star-3:before {
	width: 30%;
}
.pp-rating i.pp-star-4:before {
	width: 40%;
}
.pp-rating i.pp-star-5:before {
	width: 50%;
}
.pp-rating i.pp-star-6:before {
	width: 60%;
}
.pp-rating i.pp-star-7:before {
	width: 70%;
}
.pp-rating i.pp-star-8:before {
	width: 80%;
}
.pp-rating i.pp-star-9:before {
	width: 90%;
}
.pp-rating i.pp-star-10:before {
	width: 100%;
}
.fl-node-ldcfjy6iau2o .pp-reviews-wrapper {
	}

.fl-node-ldcfjy6iau2o .pp-review {
		}
.fl-node-ldcfjy6iau2o .pp-review:hover {
	}

.fl-node-ldcfjy6iau2o .pp-review-header {
				border-bottom: 1px solid #e1e8ed;
		}

.fl-node-ldcfjy6iau2o .pp-review-name {
	}

.fl-node-ldcfjy6iau2o .pp-review-title {
	}

.fl-node-ldcfjy6iau2o .pp-review-text {
	}

.fl-node-ldcfjy6iau2o .pp-review-link a {
	}
.fl-node-ldcfjy6iau2o .pp-review-link a:hover {
	}

.fl-node-ldcfjy6iau2o .pp-review:hover .pp-review-header {
	}

.fl-node-ldcfjy6iau2o .pp-review-image {
			align-self: flex-start;
	}

.fl-node-ldcfjy6iau2o .pp-review-image img {
			width: 36px;
		height: 36px;
	}

.fl-node-ldcfjy6iau2o .pp-review-cite {
			margin-left: 10px;
	}

.fl-node-ldcfjy6iau2o .pp-review-icon {
	align-self: flex-start;
}

.fl-node-ldcfjy6iau2o .swiper-pagination-bullet {
		background: #999999;
	}

.fl-node-ldcfjy6iau2o .swiper-pagination-bullet-active {
		background: #000000;
	}


.fl-node-ldcfjy6iau2o .pp-swiper-button {
		font-size: 24px;
			color: #000000;
			padding-left: 13px;
	padding-right: 13px;
			padding-bottom: 5px;
	padding-top: 5px;
			opacity: 1;
		}

.fl-node-ldcfjy6iau2o .pp-swiper-button:hover {
	}

.fl-node-ldcfjy6iau2o .pp-swiper-button-prev {
}

.fl-node-ldcfjy6iau2o .pp-swiper-button-next {
}


.fl-node-ldcfjy6iau2o .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
			border-radius: 100px;
	}


.fl-node-ldcfjy6iau2o .pp-review .pp-review-icon i {
	}

.fl-node-ldcfjy6iau2o .pp-review:hover .pp-review-icon i {
	}


	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review {
			}

	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review:hover {
			}

	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review:hover .pp-review-header {
		
	}

	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review .pp-review-icon i {
		
	}

	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review:hover .pp-review-icon i {

			}

	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review-header {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review-name {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review:hover .pp-review-name {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review-title {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review:hover .pp-review-title {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review-content {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-0 .pp-review:hover .pp-review-content {
		}

		.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review {
			}

	.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review:hover {
			}

	.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review:hover .pp-review-header {
		
	}

	.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review .pp-review-icon i {
		
	}

	.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review:hover .pp-review-icon i {

			}

	.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review-header {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review-name {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review:hover .pp-review-name {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review-title {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review:hover .pp-review-title {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review-content {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-1 .pp-review:hover .pp-review-content {
		}

		.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review {
			}

	.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review:hover {
			}

	.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review:hover .pp-review-header {
		
	}

	.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review .pp-review-icon i {
		
	}

	.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review:hover .pp-review-icon i {

			}

	.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review-header {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review-name {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review:hover .pp-review-name {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review-title {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review:hover .pp-review-title {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review-content {
		}

	.fl-node-ldcfjy6iau2o .pp-review-item-2 .pp-review:hover .pp-review-content {
		}

	
.fl-node-ldcfjy6iau2o .pp-rating {
		text-align: left;
		}

.fl-node-ldcfjy6iau2o .pp-rating i {
			color: #efecdc;
		}
.fl-node-ldcfjy6iau2o .pp-rating i:before {
			color: #f0ad4e;
		}

.fl-node-ldcfjy6iau2o .pp-rating i:not(.pp-star-empty):before {
	content: "\002605";
}

.fl-node-ldcfjy6iau2o .pp-review-image img {
	height: 36px;
}
.fl-node-ldcfjy6iau2o .pp-review-cite {
	margin-left: 10px;
}
.fl-node-ldcfjy6iau2o .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin-left: 5px;
	margin-right: 5px;
}
.fl-node-ldcfjy6iau2o .swiper-pagination {
	margin-top: 5px;
}
.fl-row .fl-col .fl-node-zibg217xpuan h2.fl-heading a,
.fl-row .fl-col .fl-node-zibg217xpuan h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-zibg217xpuan h2.fl-heading .fl-heading-text *,
.fl-node-zibg217xpuan h2.fl-heading .fl-heading-text {
	color: #624360;
}
.fl-node-zibg217xpuan.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-zibg217xpuan > .fl-module-content {
	margin-top:20px;
}
body a.infobox-title-link {
	text-decoration: none;
}

body h1.uabb-infobox-title,
body h2.uabb-infobox-title,
body h3.uabb-infobox-title,
body h4.uabb-infobox-title,
body h5.uabb-infobox-title,
body h6.uabb-infobox-title,
.uabb-infobox-content .uabb-infobox-title-prefix {
	margin: 0;
	padding: 0;
}

.uabb-module-content .uabb-text-editor :not(a) {
	color: inherit;
}

.uabb-module-content .uabb-text-editor :not(i) {
	font-family: inherit;
}

.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
	font-size: inherit;
	line-height: inherit;
}

.uabb-module-content .uabb-text-editor :not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(strong):not(b):not(i) {
	font-weight: inherit;
}

.uabb-infobox-content .uabb-infobox-text p:last-of-type {
	margin-bottom: 0;
}

.uabb-infobox-content .uabb-infobox-text p {
	padding: 0 0 10px;
}

.fl-builder-content .uabb-infobox-text h1,
.fl-builder-content .uabb-infobox-text h2,
.fl-builder-content .uabb-infobox-text h3,
.fl-builder-content .uabb-infobox-text h4,
.fl-builder-content .uabb-infobox-text h5,
.fl-builder-content .uabb-infobox-text h6 {
	margin: 0;
}

.infobox-icon-above-title .uabb-infobox-left-right-wrap,
.infobox-icon-below-title .uabb-infobox-left-right-wrap,
.infobox-photo-above-title .uabb-infobox-left-right-wrap,
.infobox-photo-below-title .uabb-infobox-left-right-wrap {
	display: block;
	min-width: 100%;
	width: 100%;
}

.infobox-icon-above-title .uabb-icon,
.infobox-icon-below-title .uabb-icon,
.infobox-photo-above-title .uabb-imgicon-wrap {
	display: block;
}

.infobox-icon-left-title .uabb-infobox-title,
.infobox-icon-right-title .uabb-infobox-title,
.infobox-icon-left-title .uabb-imgicon-wrap,
.infobox-icon-right-title .uabb-imgicon-wrap,
.infobox-photo-left-title .uabb-infobox-title,
.infobox-photo-right-title .uabb-infobox-title,
.infobox-photo-left-title .uabb-imgicon-wrap,
.infobox-photo-right-title .uabb-imgicon-wrap {
	display: inline-block;
	vertical-align: middle;
}

.infobox-icon-left-title .left-title-image,
.infobox-icon-right-title .right-title-image,
.infobox-icon-left .uabb-infobox-left-right-wrap,
.infobox-icon-right .uabb-infobox-left-right-wrap,
.infobox-photo-left .uabb-infobox-left-right-wrap,
.infobox-photo-right .uabb-infobox-left-right-wrap {
	display: inline-block;
	width: 100%;
}

.infobox-icon-left-title .uabb-imgicon-wrap,
.infobox-icon-left .uabb-imgicon-wrap,
.infobox-photo-left-title .uabb-imgicon-wrap,
.infobox-photo-left .uabb-imgicon-wrap {
	margin-right: 20px;
}

.infobox-icon-right-title .uabb-imgicon-wrap,
.infobox-icon-right .uabb-imgicon-wrap,
.infobox-photo-right-title .uabb-imgicon-wrap,
.infobox-photo-right .uabb-imgicon-wrap {
	margin-left: 20px;
}

.infobox-icon-left .uabb-imgicon-wrap,
.infobox-icon-right .uabb-imgicon-wrap,
.infobox-icon-left .uabb-infobox-content,
.infobox-icon-right .uabb-infobox-content,
.infobox-photo-left .uabb-imgicon-wrap,
.infobox-photo-right .uabb-imgicon-wrap,
.infobox-photo-left .uabb-infobox-content,
.infobox-photo-right .uabb-infobox-content {
	display: inline-block;
	vertical-align: top;
}

.infobox-photo-below-title .uabb-imgicon-wrap {
	display: block;
	margin: 10px 0 15px;
}

.infobox-photo-left-title .uabb-infobox-title-wrap,
.infobox-icon-left-title .uabb-infobox-title-wrap,
.infobox-photo-right-title .uabb-infobox-title-wrap,
.infobox-icon-right-title .uabb-infobox-title-wrap {
	vertical-align: middle;
}

.fl-module-info-box .fl-module-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
}

.fl-module-info-box .uabb-separator-parent {
	line-height: 0;
}

.fl-module-info-box .uabb-infobox-module-link {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 4;
}@media (max-width: 768px) { .infobox-photo-left,
.infobox-photo-right {
	display: block;
}

.infobox-photo-left .infobox-photo,
.infobox-photo-left-text .infobox-photo {
	display: block;
	margin-bottom: 15px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}

.infobox-photo-right .infobox-photo,
.infobox-photo-right-text .infobox-photo {
	display: block;
	margin-top: 25px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}

.infobox-photo-left .infobox-content,
.infobox-photo-left-text .infobox-content,
.infobox-photo-right .infobox-content,
.infobox-photo-right-text .infobox-content {
	display: block;
	width: auto;
} }
.fl-node-50p8og76jzen {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-50p8og76jzen .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-50p8og76jzen .uabb-image .uabb-photo-img {
							width: 100px;
								}

		.fl-node-50p8og76jzen .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-50p8og76jzen .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-50p8og76jzen .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-50p8og76jzen .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-50p8og76jzen .uabb-infobox {
				background: #624360;

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-50p8og76jzen .infobox-center,
.fl-node-50p8og76jzen .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-50p8og76jzen .uabb-infobox-title {
	margin-top: 20px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-50p8og76jzen h3.uabb-infobox-title,
.fl-node-50p8og76jzen h3.uabb-infobox-title span a,
.fl-node-50p8og76jzen h3.uabb-infobox-title * {
	color: #ffffff}


.fl-builder-content .fl-node-50p8og76jzen .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-50p8og76jzen .uabb-infobox-text {
	color:
	#808080;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-50p8og76jzen .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-50p8og76jzen .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */
	.fl-builder-content .fl-node-50p8og76jzen .uabb-infobox {
		position: relative;
	}
	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i:before,
	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i,
	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i:before {
		color : ;
	}
	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i {
		background-color: ;

		
			}

	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img,
	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img:before,
	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img,
	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img:before {
		background-color: ;
	}
	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap .uabb-image-content,
	.fl-node-50p8og76jzen .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap .uabb-image-content {
			}


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-50p8og76jzen .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-50p8og76jzen .uabb-infobox {
		;	}

	

	.fl-node-50p8og76jzen .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-5xbt6hq28ieg {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-5xbt6hq28ieg .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-5xbt6hq28ieg .uabb-image .uabb-photo-img {
							width: 100px;
								}

		.fl-node-5xbt6hq28ieg .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-5xbt6hq28ieg .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-5xbt6hq28ieg .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-5xbt6hq28ieg .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-5xbt6hq28ieg .uabb-infobox {
				background: #624360;

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-5xbt6hq28ieg .infobox-center,
.fl-node-5xbt6hq28ieg .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-5xbt6hq28ieg .uabb-infobox-title {
	margin-top: 20px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-5xbt6hq28ieg h3.uabb-infobox-title,
.fl-node-5xbt6hq28ieg h3.uabb-infobox-title span a,
.fl-node-5xbt6hq28ieg h3.uabb-infobox-title * {
	color: #ffffff}


.fl-builder-content .fl-node-5xbt6hq28ieg .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-5xbt6hq28ieg .uabb-infobox-text {
	color:
	#808080;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-5xbt6hq28ieg .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-5xbt6hq28ieg .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */
	.fl-builder-content .fl-node-5xbt6hq28ieg .uabb-infobox {
		position: relative;
	}
	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i:before,
	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i,
	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i:before {
		color : ;
	}
	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i {
		background-color: ;

		
			}

	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img,
	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img:before,
	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img,
	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img:before {
		background-color: ;
	}
	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap .uabb-image-content,
	.fl-node-5xbt6hq28ieg .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap .uabb-image-content {
			}


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-5xbt6hq28ieg .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-5xbt6hq28ieg .uabb-infobox {
		;	}

	

	.fl-node-5xbt6hq28ieg .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

.fl-node-0dpn4mcywfav {
	width: 100%;
}

	/* Global Alignment Css */
	.fl-node-0dpn4mcywfav .uabb-imgicon-wrap {
					text-align: ;
			}

	
		.fl-node-0dpn4mcywfav .uabb-image .uabb-photo-img {
							width: 100px;
								}

		.fl-node-0dpn4mcywfav .uabb-image .uabb-image-content{
								}

		/* Responsive Photo Size */
		
			
			@media ( max-width: 992px ) {
			.fl-node-0dpn4mcywfav .uabb-imgicon-wrap {
									text-align: ;
							}
		}
		@media ( max-width: 768px ) {
			.fl-node-0dpn4mcywfav .uabb-imgicon-wrap {
									text-align: ;
							}
		}
	
	.fl-node-0dpn4mcywfav .uabb-icon-wrap .uabb-icon i {
				width: auto;
					}


/* Image icon Margin 0 */

/* Border Properties */

/* Background Property */
	.fl-node-0dpn4mcywfav .uabb-infobox {
				background: #624360;

			padding-top:20px;padding-bottom:20px;padding-left:20px;padding-right:20px;
		}
	/* Align */
.fl-node-0dpn4mcywfav .infobox-center,
.fl-node-0dpn4mcywfav .uabb-infobox .uabb-separator {
	text-align: center;
}

/* Minimum Height and Vertical Alignment */


/* Heading Margin Properties */
.fl-builder-content .fl-node-0dpn4mcywfav .uabb-infobox-title {
	margin-top: 20px;
	margin-bottom: 10px;
}

/* Prefix Margin Properties */

/* Heading Color */
.fl-node-0dpn4mcywfav h3.uabb-infobox-title,
.fl-node-0dpn4mcywfav h3.uabb-infobox-title span a,
.fl-node-0dpn4mcywfav h3.uabb-infobox-title * {
	color: #ffffff}


.fl-builder-content .fl-node-0dpn4mcywfav .uabb-infobox-text {
	margin-top: 0px;
	margin-bottom: 0px;
}

/* Description Color */

.fl-node-0dpn4mcywfav .uabb-infobox-text {
	color:
	#808080;
}

/* Icon Margin */
	
/* Icon Margin */
/* Image Margin */
		.fl-builder-content .fl-node-0dpn4mcywfav .uabb-imgicon-wrap {
		margin-top: 5px;
		margin-bottom: 0px;
	}
	



/* Link Color */

/* Typography Options for Title */

/* Typography Options for Description */

.fl-builder-content .fl-node-0dpn4mcywfav .uabb-infobox-title-prefix {
	}

/* Typography Options for Prefix */


/* Typography Options for Link Text */

/* Module Link */
	.fl-builder-content .fl-node-0dpn4mcywfav .uabb-infobox {
		position: relative;
	}
	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i:before,
	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i,
	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i:before {
		color : ;
	}
	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap i,
	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap i {
		background-color: ;

		
			}

	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img,
	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap img:before,
	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img,
	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap img:before {
		background-color: ;
	}
	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-infobox-content .uabb-imgicon-wrap .uabb-image-content,
	.fl-node-0dpn4mcywfav .uabb-infobox-module-link:hover ~ .uabb-imgicon-wrap .uabb-image-content {
			}


/* Calculation Width */

/* Left Right Title Image */

/* Responsive CSS */

	
	@media (max-width: 992px) { 
		.fl-builder-content .fl-node-0dpn4mcywfav .uabb-infobox {
			;		}
	}

	@media (max-width: 768px) { 
	.fl-builder-content .fl-node-0dpn4mcywfav .uabb-infobox {
		;	}

	

	.fl-node-0dpn4mcywfav .infobox-responsive- {
		text-align: ;
	}

	
	
	/* Left Right Title Image */
	}

/* Start Global CSS */
/*Fix Gravity Form List Responsive Issue*/
@media only screen and (max-width: 761px),(min-device-width:768px) and (max-device-width:1023px) {
    .rtl .gform_wrapper table.gfield_list thead {
        position: absolute;
        top: -9999px;
        right: -9999px;
		left:auto !important;
    }
}
/*Fix Gravity Form List Responsive Issue*/
/*Gravity Form Hidden fieldset Fixation*/
@media (max-width: 640px) {
	html[dir=rtl] .gform_wrapper.gravity-theme .gf_invisible, .gform_wrapper.gravity-theme .gfield_visibility_hidden {
		left:auto !important;
		right:-9999px;
	}
}
/*Gravity Form Hidden fieldset Fixation*/
/*Powerpack Category Grid Carousel RTL Fixation*/
.fl-module-pp-category-grid .swiper-container-rtl .pp-category {
    float: right !important;
	margin-right: auto  !important;
}
/*Powerpack Category Grid Carousel RTL Fixation*/

/*HTML5 Audio Boder on focus Fixation*/
audio:focus {
    outline: none;
}
/*HTML5 Audio Boder on focus Fixation*/

/*Gravity Form RTL List Fixation*/
body .gform_wrapper.gf_rtl_wrapper table.gfield_list td, body .gform_wrapper.gf_rtl_wrapper table.gfield_list th, body.rtl .gform_wrapper table.gfield_list td, body.rtl .gform_wrapper table.gfield_list th {
    vertical-align: middle !important;
}
/*Gravity Form RTL List Fixation*/

/*Powerpack Hutspot RTL Fixation*/
.pp-hotspot{
    direction: ltr;
}
/*Powerpack Hutspot RTL Fixation*/

/*Powerpack TABLE Actions RTL Fixation*/
.rtl .tablesaw-bar {
    direction: ltr;
}
/*Powerpack TABLE Actions RTL Fixation*/

/*Powerpack Gallery RTL Fixation*/

/*Powerpack Gallery RTL Fixation*/

/*Gravity Form Fixation*/
.gform_wrapper .gfield_select {
	padding: 10px!important;
}
.gform_wrapper .gf_step span.gf_step_number {
    font-family: inherit !important;
}
/*Gravity Form Fixation*/

/*Powerpack accordion fixation*/
.pp-accordion-button {
    height: auto !important;
}
/*Powerpack accordion fixation*/

/*Lightbox Close Icon*/
.RTL .mfp-content .mfp-figure .mfp-close {
    display: none;
}
/*Lightbox Close Icon*/

/*UABB Infobox fixation Start*/
@media only screen and (min-width: 785px) {
    .infobox-left .uabb-infobox-left-right-wrap .left-title-image {
        display: inline-flex !important;
    }
    .infobox-right .uabb-infobox-left-right-wrap .right-title-image {
        display: inline-flex !important;
    }
    .infobox-left .uabb-infobox-left-right-wrap {
        display: flex !important;
        align-items: center;
    }
    .infobox-right .uabb-infobox-left-right-wrap {
        display: flex !important;
        align-items: center;
    }

}
/*UABB Infobox fixation Start*/

/*woocommerce button color CSS fixation Start*/
.woocommerce button.button, .woocommerce input.button {
	background-color: #624360 !important;
    color: #ffffff !important;	
}
.woocommerce button.button:hover, .woocommerce input.button:hover {
	background-color: #F9A229  !important; 
	color: #000000 !important;
}
.woocommerce-page ul.products li.product a.button, .woocommerce-page .woocommerce-message a.button, .woocommerce-page .woocommerce-message a.button.wc-forward, .woocommerce-page .woocommerce a.button.wc-forward, .woocommerce-page button.button, .woocommerce-page button.button.alt, .woocommerce-page a.button, .woocommerce-page a.button.alt, .woocommerce-page .woocommerce button[type=submit], .woocommerce-page button[type=submit].alt.disabled {
	background-color: #624360 !important;
    color: #ffffff !important;	
}
.woocommerce-page ul.products li.product a.button:hover, .woocommerce-page .woocommerce-message a.button:hover, .woocommerce-page .woocommerce-message a.button.wc-forward:hover, .woocommerce-page .woocommerce a.button.wc-forward:hover, .woocommerce-page button.button:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page a.button:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page .woocommerce button[type=submit]:hover, .woocommerce-page button[type=submit].alt.disabled:hover {
	background-color: #F9A229  !important; 
	color: #000000 !important;
}
/*woocommerce button color CSS fixation End*/

/*Compaire CSS fixation Start*/
.rtl .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table thead tr th {
    text-align: right;
}
.rtl .woosc-area .woosc-inner .woosc-bar .woosc-bar-btn .woosc-bar-btn-icon-wrapper .woosc-bar-btn-icon-inner {
    margin-left: auto;
    margin-right: 16px;
}
.rtl .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table tbody tr td {
    text-align: right !important;
}
.rtl .woosc-bar-items, .rtl .woosc-table-items {
    direction: ltr;
}
.rtl .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table .td-label {
    right:0; left:auto;
}
.rtl .woosc-area .woosc-inner .woosc-table .woosc-table-inner .woosc-table-items table {
    direction:rtl
}
/*Compaire CSS fixation End*/


#wp-a11y-speak-assertive,#wp-a11y-speak-polite,.screen-reader-text,.fl-screen-reader-text{
    display: none!important;
}
/*  overwrite fl-builder-rtl.css رفع مشکل راست به چپ در قسمت لایو ادیت */
.fl-builder--main-menu-panel {
    left: 10px;
    right: auto;
}
.fl-builder-publish-actions {
	left: auto;
	right: 0;
}
.fl-builder-bar-title {
    border-left: none;
    border-right: 2px solid #D5DADD;
    flex-direction: row-reverse;
}
.fl-theme-builder-preview-select .fl-theme-builder-preview-select-title{
    flex-direction: row;
    -ms-flex-direction: row;    
    text-align: right;
}
.fl-builder--search-results-panel, .fl-builder-panel {
    left: auto;
    right: 20px;
}
/*  overwrite fl-builder-rtl.css */

/*  رفع مشکل کروسل در سایت های راست به چپ  */
.uabb-blog-posts-carousel{direction: ltr;}
.uabb-blog-posts-carousel .uabb-blog-post-content{direction: rtl;}
/*  رفع مشکل کروسل در سایت های راست به چپ  */

.fl-theme-builder-preview-select-open .fl-theme-builder-preview-select-items{
    text-align: right;
}
.fl-lightbox,.fl-builder-bar{direction:ltr!important;}
.fl-builder-settings-fields .fl-field-control-wrapper {
	text-align: left;
}
.fl-lightbox-controls{right:10px;left:auto;}

/* Fix Scroll in Single Product */
/*.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
text-indent : 0;
}*/
 .woocommerce div.product div.images .woocommerce-product-gallery__trigger .emoji {
visibility: hidden;
}

/* Fix Scroll in Single Product */
.aws-container .aws-search-label {
    right: -9999px !important;
    left: auto !important;
}
.uabb-search-post-title a{
    color: #000000;
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.dv-manager-obj .swiper-wrapper .pp-card-slider-image{
    margin-left:0;
    margin-right: 0;
}

    .fl-page > footer{
        position: static!important;
    }
    .fl-page > #fl-main-content{
        margin-bottom: 0 !important;
}

.dv-customers-logo .pp-image-carousel .pp-swiper-button-prev{
    left: 2px;
    top: 50%;
    opacity: 0;
}
.dv-customers-logo .pp-image-carousel .pp-swiper-button-next{
    right: 2px;
    top: 50%;
    opacity: 0;
}
.dv-customers-logo:hover .pp-image-carousel .pp-swiper-button-prev,
.dv-customers-logo:hover .pp-image-carousel .pp-swiper-button-next{
    opacity: 1;
}
.dv-customers-logo .pp-image-carousel .pp-image-carousel-item{
    transition: 0.3s;
    transform: scale(0.9);
}
.dv-customers-logo .pp-image-carousel .pp-image-carousel-item:hover{
    transform: scale(1);
}
.dv-last-news-right .pp-content-post .pp-content-grid-image{
    float: right;
}
.dv-last-news-left .pp-content-post .pp-grid-tile-text .pp-grid-tile-info{
    width: 100%;
    padding-right: 40px;
}
.dv-last-news-left .pp-content-post .pp-grid-tile-text .pp-grid-tile-meta{
    width: 100%;
    padding-right: 40px;
}
.dv-service-obj .infobox-photo-above-title{
    position: relative;
}
.dv-service-obj .infobox-photo-above-title:before{
    display: block;
    content: "";
    position: absolute;
    right: 0;
    width: 3px;
    height: 20%;
    top: 0;
    z-index: 5;
    background-color: #f9a229;
    transition: 0.5s;
}
.dv-service-obj:hover .infobox-photo-above-title:before{
    height: 100%;
}
.dv-service-obj .infobox-photo-above-title:after{
    display: block;
    content: "";
    position: absolute;
    right: 0;
    width: 0;
    height: 3px;
    bottom: 0;
    z-index: 5;
    background-color: #f9a229;
    transition: 0.5s;
    transition-delay: 0.5s;
}
.dv-service-obj:hover .infobox-photo-above-title:after{
    width: 100%;
}
.dv-whyus-item,
.dv-whyus-item .fl-module-content,
.dv-whyus-item .fl-module-content .pp-infobox-wrap,
.dv-whyus-item .fl-module-content .pp-infobox-wrap .pp-infobox{
    flex: 0  !important;
}
.dv-whyus-item .pp-infobox .pp-icon-wrapper{
    margin: 0 15px;
}
.dv-whyus-item .layout-3-wrapper{
    align-items: center;
}
.dv-projects-obj .pp-content-post-grid .pp-content-post .pp-post-featured-img a:before{
    display: none;
}
.dv-projects-obj .pp-content-post-grid .pp-content-post .pp-grid-tile-text{
    display: flex;
    top: 10px;
    right: 10px;
    left: 10px;
    bottom: 10px;
    align-items: center;
    background-color: rgb(84 53 82 / 79%);
    width: auto;
    opacity: 0;
    transition: 0.3s;
}
.dv-projects-obj .pp-content-post-grid .pp-content-post:hover .pp-grid-tile-text{
    opacity: 1;
}
.dv-projects-obj .pp-content-post-grid .pp-content-post .pp-grid-tile-info{
    width: 100%;
    margin: 0;
    transform: translate(50px);
    opacity: 0;
    transition: 0.5s;
}
.dv-projects-obj .pp-content-post-grid .pp-content-post:hover .pp-grid-tile-info{
    opacity: 1;
    transform: translate(0);
}
.dv-main-heading .pp-primary-title{
    margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
    .dv-whyus-item .pp-infobox .layout-4-wrapper{
        flex-direction: row-reverse !important;
        align-items: center;
    }
    .dv-whyus-item .pp-infobox .layout-3-wrapper{
        flex-direction: row !important;
        align-items: center;
    }
    .dv-whyus-item .pp-infobox .pp-heading-wrapper{
        width: calc(100% - 50px);
        padding-right: 20px;
    }
    .dv-whyus-item .pp-infobox .pp-icon-wrapper{
        width: 50px;
        margin: 0;
    }
    .fl-page > footer{
        position: static!important;
    }
    .fl-page > #fl-main-content{
        margin-bottom: 0 !important;
    }
    .dv-products-tab .pp-tabs-panel .pp-tab-label-inner{
        display: flex;
        background-color: #00000045;
    }
}

/* End Layout CSS */

/* Equal height Column Bottom Alignment */
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
          -webkit-box-align: end;
           -webkit-box-pack: end;
              -ms-flex-pack: end;
}

/* H1-H6 Margin Reset in all Modules */
.uabb-module-content h1,
.uabb-module-content h2,
.uabb-module-content h3,
.uabb-module-content h4,
.uabb-module-content h5,
.uabb-module-content h6 {
    margin: 0;
    clear: both;
}

/* Anchor Tag Css */

.fl-module-content a,
.fl-module-content a:hover,
.fl-module-content a:focus {
    text-decoration: none;
}

/* Row Separator CSS */

.uabb-row-separator {
    position: absolute;
    width: 100%;
    left: 0;
}

.uabb-top-row-separator {
    top: 0;
    bottom: auto
}

.uabb-bottom-row-separator {
    top: auto;
    bottom: 0;
}

.fl-builder-content-editing .fl-visible-medium.uabb-row,
.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
.fl-builder-content-editing .fl-visible-mobile.uabb-row {
    display: none !important;
}

@media (max-width: 992px) {

    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: block !important;
    }
}

.fl-responsive-preview-content .fl-builder-content-editing {
    overflow-x: hidden;
    overflow-y: visible;
}

.uabb-row-separator svg {
    width: 100%;
}

.uabb-top-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    top: -1px;
    bottom: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    bottom: -1px;
    top: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {
    bottom: 0;
}
.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {
    top: 0;
}

/**
 *
 *  Svg Triangle Separator
 *  Big Triangle Separator
 *  Big Triangle Left Separator
 *  Svg Half Circle Separator
 *  Curve Center Separator
 *  Waves Separator
 *  Stamp
 *  Grass
 *  Slime
 *  Grass Bend
 *  Wave Slide
 *  Muliple Triangles
 *  Pine Tree
 *  Pine Tree Bend
 *
 ***************************************/
.uabb-bottom-row-separator.uabb-svg-triangle svg,
.uabb-bottom-row-separator.uabb-xlarge-triangle svg,
.uabb-top-row-separator.uabb-xlarge-triangle-left svg,
.uabb-bottom-row-separator.uabb-svg-circle svg,
.uabb-top-row-separator.uabb-slime-separator svg,
.uabb-top-row-separator.uabb-grass-separator svg,
.uabb-top-row-separator.uabb-grass-bend-separator svg,
.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,
.uabb-top-row-separator.uabb-wave-slide-separator svg,
.uabb-top-row-separator.uabb-pine-tree-separator svg,
.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,
.uabb-bottom-row-separator.uabb-stamp-separator svg,
.uabb-bottom-row-separator.uabb-xlarge-circle svg,
.uabb-top-row-separator.uabb-wave-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

/*
 *  Big Triangle
*/
.uabb-bottom-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: scale(1) scaleY(-1) translateX(-50%);
       -moz-transform: scale(1) scaleY(-1) translateX(-50%);
        -ms-transform: scale(1) scaleY(-1) translateX(-50%);
         -o-transform: scale(1) scaleY(-1) translateX(-50%);
            transform: scale(1) scaleY(-1) translateX(-50%);
}

.uabb-top-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
       -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
         -o-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
}

/**
 *
 *  Big Triangle Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

/**
 *
 *  Curve Left Separator
 *  Curve Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-curve-up-separator svg {
    left: 50%;
     -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-top-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}


/**
 *
 *  Tilt Left Separator
 *  Tilt Right Separator
 *
 ***************************************/

.uabb-top-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-top-row-separator.uabb-tilt-right-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-tilt-right-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

.uabb-top-row-separator.uabb-tilt-left-separator,
.uabb-top-row-separator.uabb-tilt-right-separator {
    top: 0;
}

.uabb-bottom-row-separator.uabb-tilt-left-separator,
.uabb-bottom-row-separator.uabb-tilt-right-separator {
    bottom: 0;
}

/**
 *
 *  Clouds Separator
 *  Multi Triangle
 *  Arrow Inward
 *  Arrow Outward
 *
 ***************************************/

.uabb-top-row-separator.uabb-arrow-outward-separator svg,
.uabb-top-row-separator.uabb-arrow-inward-separator svg,
.uabb-top-row-separator.uabb-cloud-separator svg,
.uabb-top-row-separator.uabb-multi-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-multi-triangle svg {
    bottom: -2px;
}

.uabb-row-separator.uabb-round-split:after,
.uabb-row-separator.uabb-round-split:before {
    left: 0;
    width: 50%;
    background: inherit inherit/inherit inherit inherit inherit;
    content: '';
    position: absolute
}


/* Buttons
------------------------------------------------------ */

.uabb-button-wrap a,
.uabb-button-wrap a:visited {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    text-shadow: none;
}

.fl-builder-content .uabb-button:hover {
    text-decoration: none;
}

.fl-builder-content .uabb-button-width-full .uabb-button {
    display: block;
    text-align: center;
}

.uabb-button-width-custom .uabb-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.fl-builder-content .uabb-button-left {
    text-align: left;
}
.fl-builder-content .uabb-button-center {
    text-align: center;
}
.fl-builder-content .uabb-button-right {
    text-align: right;
}

.fl-builder-content .uabb-button i,
.fl-builder-content .uabb-button i:before {
    font-size: 1em;
    height: 1em;
    line-height: 1em;
    width: 1em;
}

.uabb-button .uabb-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-button .uabb-button-icon-before {
    margin-left: 0;
    margin-right: 8px;
}
.uabb-button .uabb-button-icon-no-text {
    margin: 0;
}
.uabb-button-has-icon .uabb-button-text {
    vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.uabb-icon-wrap {
    display: inline-block;
}
.uabb-icon a {
    text-decoration: none;
}
.uabb-icon i {
    display: block;
}
.uabb-icon i:before {
    border: none !important;
    background: none !important;
}
.uabb-icon-text {
    display: table-cell;
    text-align: left;
    padding-left: 15px;
    vertical-align: middle;
}
.uabb-icon-text *:last-child {
    margin: 0 !important;
    padding: 0 !important;
}
.uabb-icon-text a {
    text-decoration: none;
}

/* Photos
------------------------------------------------------ */

.uabb-photo {
    line-height: 0;
    position: relative;
    z-index: 2;
}
.uabb-photo-align-left {
    text-align: left;
}
.uabb-photo-align-center {
    text-align: center;
}
.uabb-photo-align-right {
    text-align: right;
}
.uabb-photo-content {
    border-radius: 0;
    display: inline-block;
    line-height: 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.uabb-photo-content img {
    border-radius: inherit;
    display: inline;
    height: auto;
    max-width: 100%;
    width: auto;
}
.fl-builder-content .uabb-photo-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-photo-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.uabb-photo-caption {
    font-size: 13px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.uabb-photo-caption-below {
    padding-bottom: 20px;
    padding-top: 10px;
}
.uabb-photo-caption-hover {
    background: rgba(0,0,0,0.7);
    bottom: 0;
    color: #fff;
    left: 0;
    opacity: 0;
    visibility: hidden;
    filter: alpha(opacity = 0);
    padding: 10px 15px;
    position: absolute;
    right: 0;
    -webkit-transition:visibility 200ms linear;
    -moz-transition:visibility 200ms linear;
    transition:visibility 200ms linear;
}
.uabb-photo-content:hover .uabb-photo-caption-hover {
    opacity: 100;
    visibility: visible;
}

/* Panel & Buttons
------------------------------------------------------ */
.uabb-active-btn {
    background: #1e8cbe;
    border-color: #0074a2;
    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    color: white;
}
.fl-builder-bar .fl-builder-add-content-button {
    display: block !important;
    opacity: 1 !important;
}

/* Image Icon Object */
.uabb-imgicon-wrap .uabb-icon {
    display: block;
}
.uabb-imgicon-wrap .uabb-icon i{
    float: none;
}

/* Photo */
.uabb-imgicon-wrap .uabb-image {
    line-height: 0;
    position: relative;
}
.uabb-imgicon-wrap .uabb-image-align-left {
    text-align: left;
}
.uabb-imgicon-wrap .uabb-image-align-center {
    text-align: center;
}
.uabb-imgicon-wrap .uabb-image-align-right {
    text-align: right;
}
.uabb-imgicon-wrap .uabb-image-content {
    display: inline-block;
    border-radius: 0;
    line-height: 0;
    position: relative;
    max-width: 100%;
}
.uabb-imgicon-wrap .uabb-image-content img {
    display: inline;
    height: auto !important;
    max-width: 100%;
    width: auto;
    border-radius: inherit;
    box-shadow: none;
    box-sizing: content-box;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}


/* Creative Button
___________________________________________________________________________*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    background: #fafafa;
    border: 1px solid #ccc;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;

}

.uabb-creative-button-wrap a:focus {
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
}

.uabb-creative-button-wrap a .uabb-creative-button-text,
.uabb-creative-button-wrap a .uabb-creative-button-icon,
.uabb-creative-button-wrap a:visited .uabb-creative-button-text,
.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button-wrap a:hover {
    text-decoration: none;
}

.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {
    display: block;
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.uabb-creative-button-wrap .uabb-creative-button-left {
    text-align: left;
}
.uabb-creative-button-wrap .uabb-creative-button-center {
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-right {
    text-align: right;
}
.uabb-creative-button-wrap .uabb-creative-button i {
    font-size: 1.3em;
    height: auto;
    vertical-align: middle;
    width: auto;
}

.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {
    margin-right: 8px;
    margin-left: 0;
}
.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {
    margin: 0;
}

.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {
    vertical-align: middle;
}
.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    padding: 12px 24px;
}

/*  Translate Button styles */

.uabb-creative-button.uabb-creative-transparent-btn {
    background: transparent;
}
.uabb-creative-button.uabb-creative-transparent-btn:after {
    content: '';
    position: absolute;
    z-index: 1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

/* transparent-fill-top, transparent-fill-bottom  */
.uabb-transparent-fill-top-btn:after,
.uabb-transparent-fill-bottom-btn:after {
    width: 100%;
    height: 0;
    left: 0;
}

/* transparent-fill-top */
.uabb-transparent-fill-top-btn:after {
    top: 0;
}
/* transparent-fill-bottom */
.uabb-transparent-fill-bottom-btn:after {
    bottom: 0;
}

/* transparent-fill-left, transparent-fill-right */
.uabb-transparent-fill-left-btn:after,
.uabb-transparent-fill-right-btn:after {
    width: 0;
    height: 100%;
    top: 0;
}

/* transparent-fill-left */
.uabb-transparent-fill-left-btn:after {
    left: 0;
}
/* transparent-fill-right */
.uabb-transparent-fill-right-btn:after {
    right: 0;
}


/* transparent-fill-center */
.uabb-transparent-fill-center-btn:after{
    width: 0;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

/*  transparent-fill-diagonal, transparent-fill-horizontal  */
.uabb-transparent-fill-diagonal-btn:after,
.uabb-transparent-fill-horizontal-btn:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
}

/*  transparent-fill-diagonal */
.uabb-transparent-fill-diagonal-btn{
    overflow: hidden;
}
.uabb-transparent-fill-diagonal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
       -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
        -ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
         -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
            transform: translateX(-50%) translateY(-50%) rotate( 45deg );
}
/* transparent-fill-horizontal */
.uabb-transparent-fill-horizontal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}


/*  3D Button styles */
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}

.perspective {
    -webkit-perspective: 800px;
       -moz-perspective: 800px;
            perspective: 800px;
            margin: 0;
}
.uabb-creative-button.uabb-creative-threed-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button.uabb-creative-threed-btn {
    outline: 1px solid transparent;
    -webkit-transform-style: preserve-3d;
       -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/*  3D Button styles --- Animate to top */
.uabb-creative-threed-btn.uabb-animate_top-btn:after {
    height: 40%;
    left: 0;
    top: -40%;
    width: 100%;
    -webkit-transform-origin: 0% 100%;
       -moz-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: rotateX(90deg);
       -moz-transform: rotateX(90deg);
            transform: rotateX(90deg);
}

/*  3D Button styles --- Animate to bottom */
.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {
    width: 100%;
    height: 40%;
    left: 0;
    top: 100%;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateX(-90deg);
       -moz-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
}

/*  3D Button styles --- Animate to Left */
.uabb-creative-threed-btn.uabb-animate_left-btn:after {
    width: 20%;
    height: 100%;
    left: -20%;
    top: 0;
    -webkit-transform-origin: 100% 0%;
       -moz-transform-origin: 100% 0%;
        -ms-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-transform: rotateY(-60deg);
       -moz-transform: rotateY(-60deg);
        -ms-transform: rotateY(-60deg);
            transform: rotateY(-60deg);
}

/*  3D Button styles --- Animate to Right */
.uabb-creative-threed-btn.uabb-animate_right-btn:after {
    width: 20%;
    height: 100%;
    left: 104%;
    top: 0;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateY(120deg);
       -moz-transform: rotateY(120deg);
        -ms-transform: rotateY(120deg);
            transform: rotateY(120deg);
}


/* Animate Top */
.uabb-animate_top-btn:hover{
    -webkit-transform: rotateX(-15deg);
       -moz-transform: rotateX(-15deg);
        -ms-transform: rotateX(-15deg);
         -o-transform: rotateX(-15deg);
            transform: rotateX(-15deg);

}

/* Animate Bottom */
.uabb-animate_bottom-btn:hover{
    -webkit-transform: rotateX(15deg);
       -moz-transform: rotateX(15deg);
        -ms-transform: rotateX(15deg);
         -o-transform: rotateX(15deg);
            transform: rotateX(15deg);

}

/* Animate Left */
.uabb-animate_left-btn:hover{
    -webkit-transform: rotateY(6deg);
       -moz-transform: rotateY(6deg);
        -ms-transform: rotateY(6deg);
         -o-transform: rotateY(6deg);
            transform: rotateY(6deg);
}

/* Animate Right */
.uabb-animate_right-btn:hover{
    -webkit-transform: rotateY(-6deg);
       -moz-transform: rotateY(-6deg);
        -ms-transform: rotateY(-6deg);
         -o-transform: rotateY(-6deg);
            transform: rotateY(-6deg);

}

/*  Flat Button styles  */

/*  Common Classes  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn,
.uabb-creative-flat-btn.uabb-animate_to_left-btn,
.uabb-creative-flat-btn.uabb-animate_from_top-btn,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {
    overflow: hidden;
    position: relative;
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    bottom: 0;
    height: 100%;
    margin: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    width: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*  Making Icon position center  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/*  Common Hover Classes */
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {
    left: 0;
}
.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {
    top: 0;
}

/*  Animate Icon to the right */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i {
    top: 0;
    left: -100%;
}
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {
    -webkit-transform: translateX(200%);
       -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
         -o-transform: translateX(200%);
            transform: translateX(200%);
}

/*  Animate Icon to the left */
.uabb-creative-flat-btn.uabb-animate_to_left-btn i {
    top: 0;
    left: 100%;
}

.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {
    -webkit-transform: translateX(-200%);
       -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
         -o-transform: translateX(-200%);
            transform: translateX(-200%);
}


/*  Animate Icon From the Top */
.uabb-creative-flat-btn.uabb-animate_from_top-btn i {
    top: -100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {
    -webkit-transform: translateY(400px);
       -moz-transform: translateY(400px);
        -ms-transform: translateY(400px);
         -o-transform: translateY(400px);
            transform: translateY(400px);
}

/*  Animate Icon From the Bottom */
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    top: 100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {
    -webkit-transform: translateY(-400px);
       -moz-transform: translateY(-400px);
        -ms-transform: translateY(-400px);
         -o-transform: translateY(-400px);
            transform: translateY(-400px);
}

/* Media/Video CSS */
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode, 
.uabb-tab-acc-content .mejs-container:not(.mejs-audio), 
.uabb-tab-acc-content .mejs-overlay.load,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode, 
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio), 
.uabb-adv-accordion-content .mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio),
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {
    padding-top: 56.25%;
}
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode {
    max-width: 100% !important;
}
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content video.wp-video-shortcode {
    position: relative;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.uabb-tab-acc-content .mejs-overlay-play,
.uabb-adv-accordion-content .mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}
.fl-row-content-wrap .uabb-row-particles-background,
.uabb-col-particles-background {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
/* Theme Button
------------------------------------------------------ */
/*.fl-builder-content a.uabb-button,
.fl-builder-content a.uabb-button:visited,
.fl-builder-content a.uabb-creative-button,
.fl-builder-content a.uabb-creative-button:visited*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
		
	
	
	
	}

.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
			
	
	
	}


/* Responsive Js Breakpoint Css */

.uabb-js-breakpoint {
	content:"default";
	display:none;
}
@media screen and (max-width: 992px) {
	.uabb-js-breakpoint {
		content:"992";
	}
}

@media screen and (max-width: 768px) {
	.uabb-js-breakpoint {
		content:"768";
	}
}


																																																																																													
					
					
					
																																					
					
					
					
																																																																																						
					
					
					
																							
					
					
					
																																																																																																														
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-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-taxuecovi38z.fl-row-bg-pp_animated_bg .fl-row-content-wrap .fl-builder-shape-layer {
					z-index: 1;
				}
							.fl-node-taxuecovi38z .pp-particles-wrap {
					position: absolute;
					top: 0;
					bottom: 0;
					left: 0;
					right: 0;
				}
				.fl-node-taxuecovi38z .fl-row-content-wrap {
					background-color: 				}
								.fl-node-taxuecovi38z .fl-row-content-wrap .pp-particles-wrap {
					z-index: 0;
				}
				.fl-node-taxuecovi38z .fl-row-content-wrap .fl-row-content {
					position: relative;
					z-index: 1;
				}

			
        
        
		
        
		
        
        			.fl-node-6uji91d50mr7 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-jvqw802u4f5t .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-d0gar3quk12j .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-hb103lapkxoi .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-ynsrl97wmcuo .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-k1r583fels7o .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-4qt0ezio789s .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-u7659sqj840y .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-tcnx5qu7ma0k .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-o1dx0itpk9va .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-taxuecovi38z .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-bvwut6gerh8n .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-fiy1cgal28p5 .fl-row-content {
				min-width: 0px;
			}
		