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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1240px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
:root {
	--fl-global-text-font-family: Arial, Helvetica, Verdana, sans-serif;
	--fl-global-text-font-weight: 300;
	--fl-global-h1-font-family: Oswald, sans-serif;
	--fl-global-h1-font-weight: 700;
	--fl-global-h2-font-family: Oswald, sans-serif;
	--fl-global-h2-font-weight: 700;
	--fl-global-h3-font-family: Oswald, sans-serif;
	--fl-global-h3-font-weight: 700;
	--fl-global-h4-font-family: Oswald, sans-serif;
	--fl-global-h4-font-weight: 700;
	--fl-global-h5-font-family: Oswald, sans-serif;
	--fl-global-h5-font-weight: 700;
	--fl-global-h6-font-family: Oswald, sans-serif;
	--fl-global-h6-font-weight: 700;
}
.fl-builder-content:not(.fl-builder-empty) {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: 300;
}
.fl-builder-content h1 {
	font-family: Oswald, sans-serif;
	font-weight: 700;
}
.fl-builder-content h2 {
	font-family: Oswald, sans-serif;
	font-weight: 700;
}
.fl-builder-content h3 {
	font-family: Oswald, sans-serif;
	font-weight: 700;
}
.fl-builder-content h4 {
	font-family: Oswald, sans-serif;
	font-weight: 700;
}
.fl-builder-content h5 {
	font-family: Oswald, sans-serif;
	font-weight: 700;
}
.fl-builder-content h6 {
	font-family: Oswald, sans-serif;
	font-weight: 700;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }




.fl-node-616edad4687ea > .fl-row-content-wrap {
	background-color: #f1f1f1;
	background-image: url(https://clone.fsg-resources.com/wp-content/uploads/2021/06/BG-min.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-616edad4687ea .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 30px;
	top: auto;
	bottom: 0;
	transform: scaleX(1) scaleY(-1);
}
.fl-node-616edad4687ea .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #f1f1f1;
}
 .fl-node-616edad4687ea > .fl-row-content-wrap {
	padding-top:4em;
	padding-bottom:2em;
}
@media ( max-width: 1024px ) {
 .fl-node-616edad4687ea.fl-row > .fl-row-content-wrap {
	padding-top:2em;
}
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687ea.fl-row > .fl-row-content-wrap {
	padding-top:0em;
	padding-bottom:1em;
}
}










 .fl-node-616edad4687d8 > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:50px;
}
@media ( max-width: 1024px ) {
 .fl-node-616edad4687d8.fl-row > .fl-row-content-wrap {
	padding-bottom:30px;
}
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687d8.fl-row > .fl-row-content-wrap {
	padding-top:10px;
	padding-bottom:20px;
}
}





.fl-node-616edad4687cd > .fl-row-content-wrap {
	background-color: #0b1421;
	background-image: url(https://clone.fsg-resources.com/wp-content/uploads/2021/10/shutterstock_1212876724-web.jpeg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-616edad4687cd > .fl-row-content-wrap:after {
	background-color: rgba(0,31,89,0.8);
}
 .fl-node-616edad4687cd > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687cd.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-bottom:20px;
}
}





.fl-node-616edad4687aa > .fl-row-content-wrap {
	background-color: F6F7FA;;
}
 .fl-node-616edad4687aa > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}





.fl-node-616edad4687bd > .fl-row-content-wrap {
	background-color: #222c3a;
}
.fl-node-616edad4687bd .fl-row-content {
	max-width: 800px;
}
 .fl-node-616edad4687bd > .fl-row-content-wrap {
	margin-top:0px;
}
 .fl-node-616edad4687bd > .fl-row-content-wrap {
	padding-top:2em;
	padding-bottom:2em;
}
@media ( max-width: 1024px ) {
 .fl-node-616edad4687bd.fl-row > .fl-row-content-wrap {
	padding-top:2em;
	padding-bottom:2em;
}
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687bd.fl-row > .fl-row-content-wrap {
	padding-top:1.5em;
	padding-bottom:1.5em;
}
}




.fl-node-616edad4687ae {
	width: 45.97%;
}
.fl-node-616edad4687ae > .fl-col-content {
	background-image: url(https://clone.fsg-resources.com/wp-content/uploads/2021/06/patonback-scaled-min-1024x731.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-616edad4687ae > .fl-col-content {
		min-height: 280px;
	}
}
 .fl-node-616edad4687ae > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-616edad4687b3 {
	width: 100%;
}
 .fl-node-616edad4687b3 > .fl-col-content {
	margin-top:-90px;
}
@media ( max-width: 1024px ) {
 .fl-node-616edad4687b3.fl-col > .fl-col-content {
	margin-top:-40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687b3.fl-col > .fl-col-content {
	margin-top:0px;
}
}




.fl-node-616edad4687b6 {
	width: 45.96%;
}
.fl-builder-content .fl-node-616edad4687b6 > .fl-col-content {
	min-height: 0px;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-616edad4687b6 {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-616edad4687bf {
	width: 32%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-616edad4687bf {
		width: 35% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-616edad4687bf {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-616edad4687cf {
	width: 33.33%;
}




.fl-node-616edad4687d3 {
	width: 100%;
}




.fl-node-616edad4687da {
	width: 16.65%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-616edad4687da {
		width: 33.333% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-616edad4687da {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-616edad4687e1 {
	width: 100%;
}




.fl-node-616edad4687e8 {
	width: 100%;
}




.fl-node-616edad4687ec {
	width: 60%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-616edad4687ec {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-616edad4687ec {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-616edad4687ef {
	width: 100%;
}
.fl-node-616edad4687ef > .fl-col-content {
	background-color: #ffffff;
}
 .fl-node-616edad4687ef > .fl-col-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687ef.fl-col > .fl-col-content {
	margin-top:10px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}
 .fl-node-616edad4687ef > .fl-col-content {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:10px;
	padding-left:20px;
}




.fl-node-616edad4687f1 {
	width: 100%;
}
.fl-node-616edad4687f1 > .fl-col-content {
	background-color: #ffffff;
}
 .fl-node-616edad4687f1 > .fl-col-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687f1.fl-col > .fl-col-content {
	margin-right:20px;
	margin-left:20px;
}
}
 .fl-node-616edad4687f1 > .fl-col-content {
	padding-top:10px;
	padding-bottom:10px;
}




.fl-node-616edad4687af {
	width: 54.03%;
}
.fl-builder-content .fl-node-616edad4687af > .fl-col-content {
	min-height: 400px;
}
 .fl-node-616edad4687af > .fl-col-content {
	padding-right:3em;
	padding-left:3em;
}
@media ( max-width: 1024px ) {
 .fl-node-616edad4687af.fl-col > .fl-col-content {
	padding-right:1em;
	padding-left:1em;
}
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687af.fl-col > .fl-col-content {
	padding-right:0em;
	padding-left:0em;
}
}




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

.fl-builder-content .fl-node-616edad4687c0 a {
	color: #ffffff;
}

.fl-builder-content .fl-node-616edad4687c0 a:hover {
	color: #ebb018;
}


.fl-node-616edad4687c0 {
	width: 68%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-616edad4687c0 {
		width: 65% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-616edad4687c0 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-616edad4687c0 > .fl-col-content {
	padding-top:3em;
	padding-right:2em;
	padding-bottom:3em;
	padding-left:0em;
}
@media ( max-width: 1024px ) {
 .fl-node-616edad4687c0.fl-col > .fl-col-content {
	padding-right:1em;
}
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687c0.fl-col > .fl-col-content {
	padding-top:1.5em;
	padding-right:0em;
	padding-bottom:1.5em;
	padding-left:0em;
}
}




.fl-node-616edad4687d0 {
	width: 33.33%;
}




.fl-node-616edad4687db {
	width: 16.65%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-616edad4687db {
		width: 33.333% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-616edad4687db {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-616edad4687ed {
	width: 40%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-616edad4687ed {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-616edad4687ed {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-616edad4687d1 {
	width: 33.33%;
}




.fl-node-616edad4687dc {
	width: 16.65%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-616edad4687dc {
		width: 33.333% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-616edad4687dc {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-616edad4687dd {
	width: 16.65%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-616edad4687dd {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-616edad4687dd {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-616edad4687de {
	width: 16.65%;
}
@media(max-width: 1024px) {
	.fl-builder-content .fl-node-616edad4687de {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-616edad4687de {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-6182d93ff1266 {
	width: 16.65%;
}
.fl-node-616edad4687b9 .uabb-separator-parent {
	line-height: 0;
	text-align: left;
}

.fl-node-616edad4687b9 .uabb-image-outter-wrap {
	width: 50px;
}



	

	


		.fl-node-616edad4687b9 h4.uabb-divider-text{
			}
	.fl-node-616edad4687b9 h4.uabb-divider-text {
		white-space: nowrap;
		margin: 0;
	}
		
.fl-node-616edad4687b9 .uabb-separator-wrap {
	width: 100%;
	display: table;
}

	
	.fl-node-616edad4687b9 .uabb-separator-wrap.uabb-separator-left {
	margin-left: 0;
	margin-right: auto;
}
	
	
.fl-node-616edad4687b9 .uabb-separator-line {
	display: table-cell;
	vertical-align:middle;
}

.fl-node-616edad4687b9 .uabb-separator-line > span {
	border-top:6px solid #4E8AE0;
	display: block;
	margin-top: 0 !important;
}

.fl-node-616edad4687b9 .uabb-divider-content{
						padding-right: 10px;
		}

.fl-node-616edad4687b9 .uabb-side-left{
	width: 0%;
}
.fl-node-616edad4687b9 .uabb-side-right{
	width: 100%;
}

.fl-node-616edad4687b9 .uabb-divider-content {
	display: table-cell;
}
.fl-node-616edad4687b9 .uabb-divider-content .uabb-icon-wrap{
	display: block;
}
			@media ( max-width: 1024px ) {

			

			/* For Medium Device */
			.fl-node-616edad4687b9 .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687b9 .uabb-responsive-medsmall .uabb-side-right {
				width: 40%;
			}

			.fl-node-616edad4687b9 .uabb-responsive-medsmall .uabb-divider-content h4 {
				white-space: normal;
			}
		}

		@media ( max-width: 768px ) {

		
			
			/* For Small Device */
			.fl-node-616edad4687b9 .uabb-responsive-mobile .uabb-side-left,
			.fl-node-616edad4687b9 .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687b9 .uabb-responsive-mobile .uabb-side-right,
			.fl-node-616edad4687b9 .uabb-responsive-medsmall .uabb-side-right {
				width: 20%;
			}

			.fl-node-616edad4687b9 .uabb-responsive-mobile .uabb-divider-content h4 {
				white-space: normal;
			}
		}
		.fl-node-616edad4687b9 h4.uabb-divider-text {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1.6px;
}
 .fl-node-616edad4687b9 > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-616edad4687ba .uabb-separator-parent {
	line-height: 0;
	text-align: left;
}

.fl-node-616edad4687ba .uabb-image-outter-wrap {
	width: 50px;
}



	

	


		.fl-node-616edad4687ba h4.uabb-divider-text{
			}
	.fl-node-616edad4687ba h4.uabb-divider-text {
		white-space: nowrap;
		margin: 0;
	}
		
.fl-node-616edad4687ba .uabb-separator-wrap {
	width: 100%;
	display: table;
}

	
	.fl-node-616edad4687ba .uabb-separator-wrap.uabb-separator-left {
	margin-left: 0;
	margin-right: auto;
}
	
	
.fl-node-616edad4687ba .uabb-separator-line {
	display: table-cell;
	vertical-align:middle;
}

.fl-node-616edad4687ba .uabb-separator-line > span {
	border-top:6px solid #4E8AE0;
	display: block;
	margin-top: 0 !important;
}

.fl-node-616edad4687ba .uabb-divider-content{
						padding-right: 10px;
		}

.fl-node-616edad4687ba .uabb-side-left{
	width: 0%;
}
.fl-node-616edad4687ba .uabb-side-right{
	width: 100%;
}

.fl-node-616edad4687ba .uabb-divider-content {
	display: table-cell;
}
.fl-node-616edad4687ba .uabb-divider-content .uabb-icon-wrap{
	display: block;
}
			@media ( max-width: 1024px ) {

			

			/* For Medium Device */
			.fl-node-616edad4687ba .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687ba .uabb-responsive-medsmall .uabb-side-right {
				width: 40%;
			}

			.fl-node-616edad4687ba .uabb-responsive-medsmall .uabb-divider-content h4 {
				white-space: normal;
			}
		}

		@media ( max-width: 768px ) {

		
			
			/* For Small Device */
			.fl-node-616edad4687ba .uabb-responsive-mobile .uabb-side-left,
			.fl-node-616edad4687ba .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687ba .uabb-responsive-mobile .uabb-side-right,
			.fl-node-616edad4687ba .uabb-responsive-medsmall .uabb-side-right {
				width: 20%;
			}

			.fl-node-616edad4687ba .uabb-responsive-mobile .uabb-divider-content h4 {
				white-space: normal;
			}
		}
		.fl-node-616edad4687ba h4.uabb-divider-text {
	font-family: Barlow, sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}
 .fl-node-616edad4687ba > .fl-module-content {
	margin-bottom:10px;
}
@media ( max-width: 1024px ) {
 .fl-node-616edad4687ba.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687ba.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
.fl-node-616edad4687bb .uabb-separator-parent {
	line-height: 0;
	text-align: left;
}

.fl-node-616edad4687bb .uabb-image-outter-wrap {
	width: 50px;
}



	

	


		.fl-node-616edad4687bb h4.uabb-divider-text{
			}
	.fl-node-616edad4687bb h4.uabb-divider-text {
		white-space: nowrap;
		margin: 0;
	}
		
.fl-node-616edad4687bb .uabb-separator-wrap {
	width: 100%;
	display: table;
}

	
	.fl-node-616edad4687bb .uabb-separator-wrap.uabb-separator-left {
	margin-left: 0;
	margin-right: auto;
}
	
	
.fl-node-616edad4687bb .uabb-separator-line {
	display: table-cell;
	vertical-align:middle;
}

.fl-node-616edad4687bb .uabb-separator-line > span {
	border-top:6px solid #4E8AE0;
	display: block;
	margin-top: 0 !important;
}

.fl-node-616edad4687bb .uabb-divider-content{
						padding-right: 10px;
		}

.fl-node-616edad4687bb .uabb-side-left{
	width: 0%;
}
.fl-node-616edad4687bb .uabb-side-right{
	width: 100%;
}

.fl-node-616edad4687bb .uabb-divider-content {
	display: table-cell;
}
.fl-node-616edad4687bb .uabb-divider-content .uabb-icon-wrap{
	display: block;
}
			@media ( max-width: 1024px ) {

			

			/* For Medium Device */
			.fl-node-616edad4687bb .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687bb .uabb-responsive-medsmall .uabb-side-right {
				width: 40%;
			}

			.fl-node-616edad4687bb .uabb-responsive-medsmall .uabb-divider-content h4 {
				white-space: normal;
			}
		}

		@media ( max-width: 768px ) {

		
			
			/* For Small Device */
			.fl-node-616edad4687bb .uabb-responsive-mobile .uabb-side-left,
			.fl-node-616edad4687bb .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687bb .uabb-responsive-mobile .uabb-side-right,
			.fl-node-616edad4687bb .uabb-responsive-medsmall .uabb-side-right {
				width: 20%;
			}

			.fl-node-616edad4687bb .uabb-responsive-mobile .uabb-divider-content h4 {
				white-space: normal;
			}
		}
		.fl-node-616edad4687bb h4.uabb-divider-text {
	font-family: Barlow, sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}
 .fl-node-616edad4687bb > .fl-module-content {
	margin-bottom:10px;
}
@media ( max-width: 1024px ) {
 .fl-node-616edad4687bb.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687bb.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
}
.fl-node-616edad4687bc .uabb-separator-parent {
	line-height: 0;
	text-align: left;
}

.fl-node-616edad4687bc .uabb-image-outter-wrap {
	width: 50px;
}



	

	


		.fl-node-616edad4687bc h4.uabb-divider-text{
			}
	.fl-node-616edad4687bc h4.uabb-divider-text {
		white-space: nowrap;
		margin: 0;
	}
		
.fl-node-616edad4687bc .uabb-separator-wrap {
	width: 100%;
	display: table;
}

	
	.fl-node-616edad4687bc .uabb-separator-wrap.uabb-separator-left {
	margin-left: 0;
	margin-right: auto;
}
	
	
.fl-node-616edad4687bc .uabb-separator-line {
	display: table-cell;
	vertical-align:middle;
}

.fl-node-616edad4687bc .uabb-separator-line > span {
	border-top:6px solid #4E8AE0;
	display: block;
	margin-top: 0 !important;
}

.fl-node-616edad4687bc .uabb-divider-content{
						padding-right: 10px;
		}

.fl-node-616edad4687bc .uabb-side-left{
	width: 0%;
}
.fl-node-616edad4687bc .uabb-side-right{
	width: 100%;
}

.fl-node-616edad4687bc .uabb-divider-content {
	display: table-cell;
}
.fl-node-616edad4687bc .uabb-divider-content .uabb-icon-wrap{
	display: block;
}
			@media ( max-width: 1024px ) {

			

			/* For Medium Device */
			.fl-node-616edad4687bc .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687bc .uabb-responsive-medsmall .uabb-side-right {
				width: 40%;
			}

			.fl-node-616edad4687bc .uabb-responsive-medsmall .uabb-divider-content h4 {
				white-space: normal;
			}
		}

		@media ( max-width: 768px ) {

		
			
			/* For Small Device */
			.fl-node-616edad4687bc .uabb-responsive-mobile .uabb-side-left,
			.fl-node-616edad4687bc .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687bc .uabb-responsive-mobile .uabb-side-right,
			.fl-node-616edad4687bc .uabb-responsive-medsmall .uabb-side-right {
				width: 20%;
			}

			.fl-node-616edad4687bc .uabb-responsive-mobile .uabb-divider-content h4 {
				white-space: normal;
			}
		}
		.fl-node-616edad4687bc h4.uabb-divider-text {
	font-family: Barlow, sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
}
 .fl-node-616edad4687bc > .fl-module-content {
	margin-top:30px;
	margin-bottom:10px;
}
@media (max-width: 768px) { .fl-node-616edad4687bc > .fl-module-content { margin-top:20px; } }.pp-photo-container .pp-photo-align-left {
    text-align: left;
}
.pp-photo-container .pp-photo-align-center {
    text-align: center;
}
.pp-photo-container .pp-photo-align-right {
    text-align: right;
}

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

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

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


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

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

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

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


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

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

@media only screen and (max-width: 768px) {
	.fl-node-616edad4687c1 .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-616edad4687c1 .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-616edad4687c1 .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-616edad4687c1 .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-616edad4687c1 .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-616edad4687c1 .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
@media(max-width: 768px) {
	div.fl-node-616edad4687c1 .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
		width: 300px;
	}
}
 .fl-node-616edad4687c1 > .fl-module-content {
	margin-top:20px;
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687c1.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-616edad4687c2 h2.fl-heading a,
.fl-row .fl-col .fl-node-616edad4687c2 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-616edad4687c2 h2.fl-heading .fl-heading-text *,
.fl-node-616edad4687c2 h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-616edad4687c2.fl-module-heading .fl-heading {
	font-size: 3.5rem;
	line-height: 1.2;
}
@media(max-width: 768px) {
	.fl-node-616edad4687c2.fl-module-heading .fl-heading {
		font-size: 2.75rem;
		line-height: 1.3;
		text-align: center;
	}
}
 .fl-node-616edad4687c2 > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687c2.fl-module > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */@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-node-616edad4687cb .pp-spacer-module {
    height: 60px;
    width: 100%;
}


@media only screen and (max-width: 1024px) {
        .fl-node-616edad4687cb .pp-spacer-module {
        height: 40px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-616edad4687cb .pp-spacer-module {
        height: 20px;
    }
}
 .fl-node-616edad4687cb > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-616edad4687d4 h2.fl-heading a,
.fl-row .fl-col .fl-node-616edad4687d4 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-616edad4687d4 h2.fl-heading .fl-heading-text *,
.fl-node-616edad4687d4 h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-616edad4687d4.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 28px;
	text-align: center;
}
@media(max-width: 768px) {
	.fl-node-616edad4687d4.fl-module-heading .fl-heading {
		font-size: 24px;
	}
}
 .fl-node-616edad4687d4 > .fl-module-content {
	margin-bottom:10px;
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }	.fl-builder-content .fl-node-616edad4687d5 .fl-icon-wrap .fl-icon-text,
	.fl-builder-content .fl-node-616edad4687d5 .fl-icon-wrap .fl-icon-text * {
		color: #ffffff;
	}
	.fl-node-616edad4687d5 .fl-icon i,
.fl-node-616edad4687d5 .fl-icon i:before {
	color: #152f77;
}



.fl-node-616edad4687d5 .fl-icon i {
	background: #ebb018;
	}
.fl-node-616edad4687d5 .fl-icon i:hover,
.fl-node-616edad4687d5 .fl-icon i:hover:before,
.fl-node-616edad4687d5 .fl-icon a:hover i,
.fl-node-616edad4687d5 .fl-icon a:hover i:before {
	color: #152f77;
}
.fl-node-616edad4687d5 .fl-icon i:hover,
.fl-node-616edad4687d5 .fl-icon a:hover i {
	background: #ebb018;
	}

.fl-node-616edad4687d5 .fl-icon i {
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	text-align: center;
}
.fl-node-616edad4687d5 .fl-icon i, .fl-node-616edad4687d5 .fl-icon i:before {
	font-size: 28px;
}
.fl-node-616edad4687d5 .fl-icon-wrap .fl-icon-text {
	height: 49px;
}
.fl-node-616edad4687d5 .fl-icon i {
	line-height: 49px;
	width: 49px;
}
.fl-node-616edad4687d5 .fl-icon i::before {
	line-height: 49px;
}
.fl-node-616edad4687d5.fl-module-icon {
	text-align: center;
}
.fl-node-616edad4687d5 .fl-icon-text {
	padding-left: 15px;
}
.fl-builder-content .fl-node-616edad4687d5 .fl-icon-wrap .fl-icon-text, .fl-builder-content .fl-node-616edad4687d5 .fl-icon-wrap .fl-icon-text-link * {
	color: #ffffff;
}
.fl-node-616edad4687d5 .fl-icon-text, .fl-node-616edad4687d5 .fl-icon-text-link {
	font-weight: 700;
	font-size: 18px;
}
@media(max-width: 1200px) {
	.fl-node-616edad4687d5 .fl-icon-wrap .fl-icon-text {
		height: 49px;
	}
	.fl-node-616edad4687d5 .fl-icon i {
		line-height: 49px;
		width: 49px;
	}
	.fl-node-616edad4687d5 .fl-icon i::before {
		line-height: 49px;
	}
}
@media(max-width: 1024px) {
	.fl-node-616edad4687d5 .fl-icon-wrap .fl-icon-text {
		height: 49px;
	}
	.fl-node-616edad4687d5 .fl-icon i {
		line-height: 49px;
		width: 49px;
	}
	.fl-node-616edad4687d5 .fl-icon i::before {
		line-height: 49px;
	}
}
@media(max-width: 768px) {
	.fl-node-616edad4687d5 .fl-icon-wrap .fl-icon-text {
		height: 49px;
	}
	.fl-node-616edad4687d5 .fl-icon i {
		line-height: 49px;
		width: 49px;
	}
	.fl-node-616edad4687d5 .fl-icon i::before {
		line-height: 49px;
	}
}
	.fl-builder-content .fl-node-616edad4687d6 .fl-icon-wrap .fl-icon-text,
	.fl-builder-content .fl-node-616edad4687d6 .fl-icon-wrap .fl-icon-text * {
		color: #ffffff;
	}
	.fl-node-616edad4687d6 .fl-icon i,
.fl-node-616edad4687d6 .fl-icon i:before {
	color: #152f77;
}



.fl-node-616edad4687d6 .fl-icon i {
	background: #ebb018;
	}
.fl-node-616edad4687d6 .fl-icon i:hover,
.fl-node-616edad4687d6 .fl-icon i:hover:before,
.fl-node-616edad4687d6 .fl-icon a:hover i,
.fl-node-616edad4687d6 .fl-icon a:hover i:before {
	color: #152f77;
}
.fl-node-616edad4687d6 .fl-icon i:hover,
.fl-node-616edad4687d6 .fl-icon a:hover i {
	background: #ebb018;
	}

.fl-node-616edad4687d6 .fl-icon i {
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	text-align: center;
}
.fl-node-616edad4687d6 .fl-icon i, .fl-node-616edad4687d6 .fl-icon i:before {
	font-size: 28px;
}
.fl-node-616edad4687d6 .fl-icon-wrap .fl-icon-text {
	height: 49px;
}
.fl-node-616edad4687d6 .fl-icon i {
	line-height: 49px;
	width: 49px;
}
.fl-node-616edad4687d6 .fl-icon i::before {
	line-height: 49px;
}
.fl-node-616edad4687d6.fl-module-icon {
	text-align: center;
}
.fl-node-616edad4687d6 .fl-icon-text {
	padding-left: 15px;
}
.fl-builder-content .fl-node-616edad4687d6 .fl-icon-wrap .fl-icon-text, .fl-builder-content .fl-node-616edad4687d6 .fl-icon-wrap .fl-icon-text-link * {
	color: #ffffff;
}
.fl-node-616edad4687d6 .fl-icon-text, .fl-node-616edad4687d6 .fl-icon-text-link {
	font-weight: 700;
	font-size: 18px;
}
@media(max-width: 1200px) {
	.fl-node-616edad4687d6 .fl-icon-wrap .fl-icon-text {
		height: 49px;
	}
	.fl-node-616edad4687d6 .fl-icon i {
		line-height: 49px;
		width: 49px;
	}
	.fl-node-616edad4687d6 .fl-icon i::before {
		line-height: 49px;
	}
}
@media(max-width: 1024px) {
	.fl-node-616edad4687d6 .fl-icon-wrap .fl-icon-text {
		height: 49px;
	}
	.fl-node-616edad4687d6 .fl-icon i {
		line-height: 49px;
		width: 49px;
	}
	.fl-node-616edad4687d6 .fl-icon i::before {
		line-height: 49px;
	}
}
@media(max-width: 768px) {
	.fl-node-616edad4687d6 .fl-icon-wrap .fl-icon-text {
		height: 49px;
	}
	.fl-node-616edad4687d6 .fl-icon i {
		line-height: 49px;
		width: 49px;
	}
	.fl-node-616edad4687d6 .fl-icon i::before {
		line-height: 49px;
	}
}
	.fl-builder-content .fl-node-616edad4687d7 .fl-icon-wrap .fl-icon-text,
	.fl-builder-content .fl-node-616edad4687d7 .fl-icon-wrap .fl-icon-text * {
		color: #ffffff;
	}
	.fl-node-616edad4687d7 .fl-icon i,
.fl-node-616edad4687d7 .fl-icon i:before {
	color: #152f77;
}



.fl-node-616edad4687d7 .fl-icon i {
	background: #ebb018;
	}
.fl-node-616edad4687d7 .fl-icon i:hover,
.fl-node-616edad4687d7 .fl-icon i:hover:before,
.fl-node-616edad4687d7 .fl-icon a:hover i,
.fl-node-616edad4687d7 .fl-icon a:hover i:before {
	color: #152f77;
}
.fl-node-616edad4687d7 .fl-icon i:hover,
.fl-node-616edad4687d7 .fl-icon a:hover i {
	background: #ebb018;
	}

.fl-node-616edad4687d7 .fl-icon i {
	border-radius: 100%;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	text-align: center;
}
.fl-node-616edad4687d7 .fl-icon i, .fl-node-616edad4687d7 .fl-icon i:before {
	font-size: 28px;
}
.fl-node-616edad4687d7 .fl-icon-wrap .fl-icon-text {
	height: 49px;
}
.fl-node-616edad4687d7 .fl-icon i {
	line-height: 49px;
	width: 49px;
}
.fl-node-616edad4687d7 .fl-icon i::before {
	line-height: 49px;
}
.fl-node-616edad4687d7.fl-module-icon {
	text-align: center;
}
.fl-node-616edad4687d7 .fl-icon-text {
	padding-left: 15px;
}
.fl-builder-content .fl-node-616edad4687d7 .fl-icon-wrap .fl-icon-text, .fl-builder-content .fl-node-616edad4687d7 .fl-icon-wrap .fl-icon-text-link * {
	color: #ffffff;
}
.fl-node-616edad4687d7 .fl-icon-text, .fl-node-616edad4687d7 .fl-icon-text-link {
	font-weight: 700;
	font-size: 18px;
}
@media(max-width: 1200px) {
	.fl-node-616edad4687d7 .fl-icon-wrap .fl-icon-text {
		height: 49px;
	}
	.fl-node-616edad4687d7 .fl-icon i {
		line-height: 49px;
		width: 49px;
	}
	.fl-node-616edad4687d7 .fl-icon i::before {
		line-height: 49px;
	}
}
@media(max-width: 1024px) {
	.fl-node-616edad4687d7 .fl-icon-wrap .fl-icon-text {
		height: 49px;
	}
	.fl-node-616edad4687d7 .fl-icon i {
		line-height: 49px;
		width: 49px;
	}
	.fl-node-616edad4687d7 .fl-icon i::before {
		line-height: 49px;
	}
}
@media(max-width: 768px) {
	.fl-node-616edad4687d7 .fl-icon-wrap .fl-icon-text {
		height: 49px;
	}
	.fl-node-616edad4687d7 .fl-icon i {
		line-height: 49px;
		width: 49px;
	}
	.fl-node-616edad4687d7 .fl-icon i::before {
		line-height: 49px;
	}
}
.fl-node-616edad4687df .uabb-separator-parent {
	line-height: 0;
	text-align: left;
}

.fl-node-616edad4687df .uabb-image-outter-wrap {
	width: 50px;
}



	

	


		.fl-node-616edad4687df h4.uabb-divider-text{
			}
	.fl-node-616edad4687df h4.uabb-divider-text {
		white-space: nowrap;
		margin: 0;
	}
		
.fl-node-616edad4687df .uabb-separator-wrap {
	width: 100%;
	display: table;
}

	
	.fl-node-616edad4687df .uabb-separator-wrap.uabb-separator-left {
	margin-left: 0;
	margin-right: auto;
}
	
	
.fl-node-616edad4687df .uabb-separator-line {
	display: table-cell;
	vertical-align:middle;
}

.fl-node-616edad4687df .uabb-separator-line > span {
	border-top:6px solid #4E8AE0;
	display: block;
	margin-top: 0 !important;
}

.fl-node-616edad4687df .uabb-divider-content{
						padding-right: 10px;
		}

.fl-node-616edad4687df .uabb-side-left{
	width: 0%;
}
.fl-node-616edad4687df .uabb-side-right{
	width: 100%;
}

.fl-node-616edad4687df .uabb-divider-content {
	display: table-cell;
}
.fl-node-616edad4687df .uabb-divider-content .uabb-icon-wrap{
	display: block;
}
			@media ( max-width: 1024px ) {

			

			/* For Medium Device */
			.fl-node-616edad4687df .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687df .uabb-responsive-medsmall .uabb-side-right {
				width: 40%;
			}

			.fl-node-616edad4687df .uabb-responsive-medsmall .uabb-divider-content h4 {
				white-space: normal;
			}
		}

		@media ( max-width: 768px ) {

		
			
			/* For Small Device */
			.fl-node-616edad4687df .uabb-responsive-mobile .uabb-side-left,
			.fl-node-616edad4687df .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687df .uabb-responsive-mobile .uabb-side-right,
			.fl-node-616edad4687df .uabb-responsive-medsmall .uabb-side-right {
				width: 20%;
			}

			.fl-node-616edad4687df .uabb-responsive-mobile .uabb-divider-content h4 {
				white-space: normal;
			}
		}
		.fl-node-616edad4687df h4.uabb-divider-text {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1.6px;
}
/* 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-616edad4687e2,
.fl-col-group-equal-height .fl-node-616edad4687e2 .fl-module-content,
.fl-col-group-equal-height .fl-node-616edad4687e2 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-616edad4687e2 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-616edad4687e2 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-616edad4687e2 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-node-616edad4687e2.fl-visible-large,
.fl-col-group-equal-height .fl-node-616edad4687e2.fl-visible-medium,
.fl-col-group-equal-height .fl-node-616edad4687e2.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-616edad4687e2.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-616edad4687e2 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-616edad4687e2 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-616edad4687e2 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

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

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


.fl-node-616edad4687e2 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-616edad4687e2 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-616edad4687e2 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-616edad4687e2 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	font-size: 18px;
}
.fl-node-616edad4687e2 .pp-infobox-icon-inner span.pp-icon, .fl-node-616edad4687e2 .pp-infobox-icon-inner span:before {
	font-size: 49px;
}
.fl-node-616edad4687e2 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-616edad4687e2 .pp-infobox {
	padding-top: 30px;
	padding-right: 20px;
	padding-bottom: 30px;
	padding-left: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
.fl-node-616edad4687e2 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-616edad4687e2 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-616edad4687e2 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
.fl-col-group-equal-height .fl-node-616edad4687e3,
.fl-col-group-equal-height .fl-node-616edad4687e3 .fl-module-content,
.fl-col-group-equal-height .fl-node-616edad4687e3 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-616edad4687e3 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-616edad4687e3 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-616edad4687e3 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-node-616edad4687e3.fl-visible-large,
.fl-col-group-equal-height .fl-node-616edad4687e3.fl-visible-medium,
.fl-col-group-equal-height .fl-node-616edad4687e3.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-616edad4687e3.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-616edad4687e3 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-616edad4687e3 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-616edad4687e3 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

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

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


.fl-node-616edad4687e3 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-616edad4687e3 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-616edad4687e3 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-616edad4687e3 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	font-size: 18px;
}
.fl-node-616edad4687e3 .pp-infobox-icon-inner span.pp-icon, .fl-node-616edad4687e3 .pp-infobox-icon-inner span:before {
	font-size: 49px;
}
.fl-node-616edad4687e3 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-616edad4687e3 .pp-infobox {
	padding-top: 30px;
	padding-right: 20px;
	padding-bottom: 30px;
	padding-left: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
.fl-node-616edad4687e3 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-616edad4687e3 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-616edad4687e3 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
.fl-col-group-equal-height .fl-node-616edad4687e5,
.fl-col-group-equal-height .fl-node-616edad4687e5 .fl-module-content,
.fl-col-group-equal-height .fl-node-616edad4687e5 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-616edad4687e5 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-616edad4687e5 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-616edad4687e5 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-node-616edad4687e5.fl-visible-large,
.fl-col-group-equal-height .fl-node-616edad4687e5.fl-visible-medium,
.fl-col-group-equal-height .fl-node-616edad4687e5.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-616edad4687e5.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-616edad4687e5 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-616edad4687e5 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-616edad4687e5 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

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

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


.fl-node-616edad4687e5 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-616edad4687e5 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-616edad4687e5 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-616edad4687e5 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	font-size: 18px;
}
.fl-node-616edad4687e5 .pp-infobox-icon-inner span.pp-icon, .fl-node-616edad4687e5 .pp-infobox-icon-inner span:before {
	font-size: 49px;
}
.fl-node-616edad4687e5 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-616edad4687e5 .pp-infobox {
	padding-top: 30px;
	padding-right: 20px;
	padding-bottom: 30px;
	padding-left: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
.fl-node-616edad4687e5 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-616edad4687e5 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-616edad4687e5 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
.fl-col-group-equal-height .fl-node-616edad4687e6,
.fl-col-group-equal-height .fl-node-616edad4687e6 .fl-module-content,
.fl-col-group-equal-height .fl-node-616edad4687e6 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-616edad4687e6 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-616edad4687e6 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-616edad4687e6 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-node-616edad4687e6.fl-visible-large,
.fl-col-group-equal-height .fl-node-616edad4687e6.fl-visible-medium,
.fl-col-group-equal-height .fl-node-616edad4687e6.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-616edad4687e6.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-616edad4687e6 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-616edad4687e6 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-616edad4687e6 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

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

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


.fl-node-616edad4687e6 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-616edad4687e6 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-616edad4687e6 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-616edad4687e6 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	font-size: 18px;
}
.fl-node-616edad4687e6 .pp-infobox-icon-inner span.pp-icon, .fl-node-616edad4687e6 .pp-infobox-icon-inner span:before {
	font-size: 49px;
}
.fl-node-616edad4687e6 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-616edad4687e6 .pp-infobox {
	padding-top: 30px;
	padding-right: 20px;
	padding-bottom: 30px;
	padding-left: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
.fl-node-616edad4687e6 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-616edad4687e6 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-616edad4687e6 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
	.fl-builder-content .fl-node-616edad4687e9 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-616edad4687e9 .fl-module-content .fl-rich-text * {
		color: #C62D0C;
	}
	.fl-builder-content .fl-node-616edad4687e9 .fl-rich-text, .fl-builder-content .fl-node-616edad4687e9 .fl-rich-text *:not(b, strong) {
	font-size: 13px;
}
.fl-node-616edad4687f4 .uabb-separator-parent {
	line-height: 0;
	text-align: left;
}

.fl-node-616edad4687f4 .uabb-image-outter-wrap {
	width: 50px;
}



	

	


		.fl-node-616edad4687f4 h4.uabb-divider-text{
			}
	.fl-node-616edad4687f4 h4.uabb-divider-text {
		white-space: nowrap;
		margin: 0;
	}
		
.fl-node-616edad4687f4 .uabb-separator-wrap {
	width: 100%;
	display: table;
}

	
	.fl-node-616edad4687f4 .uabb-separator-wrap.uabb-separator-left {
	margin-left: 0;
	margin-right: auto;
}
	
	
.fl-node-616edad4687f4 .uabb-separator-line {
	display: table-cell;
	vertical-align:middle;
}

.fl-node-616edad4687f4 .uabb-separator-line > span {
	border-top:6px solid #4E8AE0;
	display: block;
	margin-top: 0 !important;
}

.fl-node-616edad4687f4 .uabb-divider-content{
						padding-right: 10px;
		}

.fl-node-616edad4687f4 .uabb-side-left{
	width: 0%;
}
.fl-node-616edad4687f4 .uabb-side-right{
	width: 100%;
}

.fl-node-616edad4687f4 .uabb-divider-content {
	display: table-cell;
}
.fl-node-616edad4687f4 .uabb-divider-content .uabb-icon-wrap{
	display: block;
}
			@media ( max-width: 1024px ) {

			

			/* For Medium Device */
			.fl-node-616edad4687f4 .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687f4 .uabb-responsive-medsmall .uabb-side-right {
				width: 40%;
			}

			.fl-node-616edad4687f4 .uabb-responsive-medsmall .uabb-divider-content h4 {
				white-space: normal;
			}
		}

		@media ( max-width: 768px ) {

		
			
			/* For Small Device */
			.fl-node-616edad4687f4 .uabb-responsive-mobile .uabb-side-left,
			.fl-node-616edad4687f4 .uabb-responsive-medsmall .uabb-side-left {
				width: 0%;
			}
			.fl-node-616edad4687f4 .uabb-responsive-mobile .uabb-side-right,
			.fl-node-616edad4687f4 .uabb-responsive-medsmall .uabb-side-right {
				width: 20%;
			}

			.fl-node-616edad4687f4 .uabb-responsive-mobile .uabb-divider-content h4 {
				white-space: normal;
			}
		}
		.fl-node-616edad4687f4 h4.uabb-divider-text {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 1.6px;
}
 .fl-node-616edad4687f4 > .fl-module-content {
	margin-top:0px;
	margin-bottom:30px;
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687f4.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
.fl-col-group-equal-height .fl-node-616edad4687f7,
.fl-col-group-equal-height .fl-node-616edad4687f7 .fl-module-content,
.fl-col-group-equal-height .fl-node-616edad4687f7 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-616edad4687f7 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-616edad4687f7 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-616edad4687f7 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-node-616edad4687f7.fl-visible-large,
.fl-col-group-equal-height .fl-node-616edad4687f7.fl-visible-medium,
.fl-col-group-equal-height .fl-node-616edad4687f7.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-616edad4687f7.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-616edad4687f7 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-616edad4687f7 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-616edad4687f7 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

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

.fl-node-616edad4687f7 .pp-infobox-icon-inner span.pp-icon,
.fl-node-616edad4687f7 .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-616edad4687f7 .pp-infobox-wrap .pp-infobox {
				text-align: left;
	}


.fl-node-616edad4687f7 .pp-infobox:hover {
	}

	.fl-node-616edad4687f7 .pp-infobox .pp-more-link {
					color: #4e8ae0;
									text-decoration: none;
			text-align: center;
			margin: 0 auto;
						}

	
	.fl-node-616edad4687f7 .pp-infobox .pp-more-link:hover {
					color: #3e6eb3;
					}

				.fl-node-616edad4687f7 .pp-infobox .pp-more-link .pp-button-icon,
	.fl-node-616edad4687f7 .pp-infobox .pp-more-link .pp-button-icon.dashicons:before {
		font-size: 15px;
	}
				.fl-node-616edad4687f7 .pp-infobox .pp-more-link .pp-button-icon-left {
		margin-right: 5px;
	}
	.fl-node-616edad4687f7 .pp-infobox .pp-more-link .pp-button-icon-right {
		margin-left: 5px;
	}
	
.fl-node-616edad4687f7 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-616edad4687f7 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-616edad4687f7 .pp-infobox-wrap .layout-4-wrapper {
					align-items: flex-start;
							}


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

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



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

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

	@media only screen and (max-width: 480px) {
		.fl-node-616edad4687f7 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-616edad4687f7 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-616edad4687f7 .pp-infobox-title-prefix {
	font-weight: 600;
	font-size: 18px;
}
.fl-node-616edad4687f7 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 600;
	font-size: 18px;
}
.fl-node-616edad4687f7 .pp-infobox-icon, .fl-node-616edad4687f7 .pp-infobox-image img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(255,0,0,0);
	border-top-width: 12px;
}
.fl-node-616edad4687f7 .pp-infobox-icon-inner span.pp-icon, .fl-node-616edad4687f7 .pp-infobox-icon-inner span:before {
	font-size: 24px;
}
.fl-node-616edad4687f7 .pp-infobox-icon-inner {
	width: 24px;
	height: 24px;
}
.fl-node-616edad4687f7 .pp-infobox {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-616edad4687f7 .pp-more-link {
	font-weight: 600;
	font-size: 14px;
}
.fl-node-616edad4687f7 .pp-infobox .pp-more-link {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-616edad4687f7 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-616edad4687f7 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-616edad4687f7 > .fl-module-content {
	margin-top:0px;
	margin-bottom:2px;
}
.fl-col-group-equal-height .fl-node-6182d6e8b52e5,
.fl-col-group-equal-height .fl-node-6182d6e8b52e5 .fl-module-content,
.fl-col-group-equal-height .fl-node-6182d6e8b52e5 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6182d6e8b52e5 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6182d6e8b52e5 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6182d6e8b52e5 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-node-6182d6e8b52e5.fl-visible-large,
.fl-col-group-equal-height .fl-node-6182d6e8b52e5.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6182d6e8b52e5.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6182d6e8b52e5.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6182d6e8b52e5 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6182d6e8b52e5 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6182d6e8b52e5 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

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

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


.fl-node-6182d6e8b52e5 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6182d6e8b52e5 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6182d6e8b52e5 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6182d6e8b52e5 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	font-size: 18px;
}
.fl-node-6182d6e8b52e5 .pp-infobox-icon-inner span.pp-icon, .fl-node-6182d6e8b52e5 .pp-infobox-icon-inner span:before {
	font-size: 49px;
}
.fl-node-6182d6e8b52e5 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-6182d6e8b52e5 .pp-infobox {
	padding-top: 30px;
	padding-right: 20px;
	padding-bottom: 30px;
	padding-left: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
.fl-node-6182d6e8b52e5 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6182d6e8b52e5 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-6182d6e8b52e5 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
.fl-col-group-equal-height .fl-node-6182d93e178ba,
.fl-col-group-equal-height .fl-node-6182d93e178ba .fl-module-content,
.fl-col-group-equal-height .fl-node-6182d93e178ba .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6182d93e178ba .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6182d93e178ba .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6182d93e178ba .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-node-6182d93e178ba.fl-visible-large,
.fl-col-group-equal-height .fl-node-6182d93e178ba.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6182d93e178ba.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6182d93e178ba.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6182d93e178ba .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6182d93e178ba .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6182d93e178ba .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

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

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


.fl-node-6182d93e178ba .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6182d93e178ba .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6182d93e178ba .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6182d93e178ba .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 700;
	font-size: 18px;
}
.fl-node-6182d93e178ba .pp-infobox-icon-inner span.pp-icon, .fl-node-6182d93e178ba .pp-infobox-icon-inner span:before {
	font-size: 49px;
}
.fl-node-6182d93e178ba .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-6182d93e178ba .pp-infobox {
	padding-top: 30px;
	padding-right: 20px;
	padding-bottom: 30px;
	padding-left: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}
.fl-node-6182d93e178ba .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6182d93e178ba .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-6182d93e178ba > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
/* Generic Styles */
.fl-module-post-grid .fl-sep {
	display: inline-block;
	margin: 0 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Post Grid */

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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


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

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

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

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

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

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

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

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

/* Woocommerce Style */

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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


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

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

 .fl-node-616edad4687b8 .pp-content-grid-image img, .fl-node-616edad4687b8 .pp-content-grid-image .pp-post-featured-img {

}
 .fl-node-616edad4687b8 .pp-content-post:hover .pp-content-grid-image img, .fl-node-616edad4687b8 .pp-content-post:hover .pp-content-grid-image .pp-post-featured-img {

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


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

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

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

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

.fl-node-616edad4687b8 .pp-content-post .pp-post-title {
				margin-top: 5px;
				margin-bottom: 5px;
	}

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


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

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

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

.fl-node-616edad4687b8 .pp-content-post-data.pp-content-relative {
	position: relative;
}

.fl-node-616edad4687b8 .pp-content-post-data.pp-content-relative .pp-more-link-button {
	position: absolute;
	bottom: 0;
		left: 0;
	}

.fl-node-616edad4687b8 .pp-grid-style-5 .pp-content-post-data.pp-content-relative .pp-more-link-button {
	left: 0;
	transform: none;
}

.fl-node-616edad4687b8 .pp-grid-style-6 .pp-content-post-data.pp-content-relative .pp-more-link-button {
	left: 50%;
    transform: translateX(-50%);
}


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

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


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

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

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

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


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

.fl-node-616edad4687b8 .pp-content-grid-post .pp-content-category-list,
.fl-node-616edad4687b8 .pp-content-carousel-post .pp-content-category-list {
		border-top-color: #ebebeb;
	}

.fl-node-616edad4687b8 .pp-content-post.pp-grid-style-7 .pp-content-post-meta {
		border-bottom-color: #ebebeb;
	}
.fl-node-616edad4687b8 .pp-content-post.pp-grid-style-7:hover .pp-content-post-meta {
		border-bottom-color: #e2e2e2;
	}

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

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


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

.fl-builder-content .fl-node-616edad4687b8 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-builder-content .fl-node-616edad4687b8 .pp-content-post-carousel .owl-nav button[class*=owl]:focus,
.fl-page .fl-builder-content .fl-node-616edad4687b8 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-page .fl-builder-content .fl-node-616edad4687b8 .pp-content-post-carousel .owl-nav button[class*=owl]:focus {
		}
.fl-node-616edad4687b8 .pp-content-post-carousel .owl-nav button:hover svg path {
			fill: #eeeeee;
	}



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

.fl-node-616edad4687b8 .pp-content-post:hover {
		background-color: #eeeeee;
	}

.fl-node-616edad4687b8 .pp-content-post.pp-grid-style-7 .pp-content-body {
		background-color: #f7f7f7;
	}
.fl-node-616edad4687b8 .pp-content-post.pp-grid-style-7:hover .pp-content-body {
		background-color: #eeeeee;
	}

.woocommerce .fl-node-616edad4687b8 .pp-content-post {
	}


.fl-node-616edad4687b8 .pp-content-post {
	position: relative;
			margin-left: 2px;
	margin-right: 2px;
			background-color: #f7f7f7;
	}
.fl-node-616edad4687b8.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 4px;
}

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


.fl-node-616edad4687b8 .pp-grid-space {
	width: 4px;
}

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

.fl-node-616edad4687b8 .pp-content-grid-post:nth-of-type(3n) {
    margin-right: 0;
}
.fl-node-616edad4687b8 .pp-content-post-grid.pp-filters-active .pp-content-grid-post {
	margin-right: 0;
}
	
.fl-node-616edad4687b8 .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

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

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

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

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



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

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

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

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

	@media screen and (max-width: 1200px) {
		
		
		.fl-node-616edad4687b8 .pp-content-post {
									margin-left: 2px;
			margin-right: 2px;
					}

		.fl-node-616edad4687b8 .pp-grid-space {
			width: 4px;
		}
	}

@media screen and (max-width: 1024px) {
	
	
	.fl-node-616edad4687b8 .pp-content-post {
						margin-left: 2px;
		margin-right: 2px;
			}

	.fl-node-616edad4687b8 .pp-grid-space {
		width: 4px;
	}

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

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

	/*
	.fl-node-616edad4687b8 .pp-content-grid-post:nth-of-type(3n) {
	    margin-right: 4px;
	}
	*/

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

@media screen and (max-width: 768px) {
	
	
	.fl-node-616edad4687b8 .pp-content-post {
						margin-left: 2px;
		margin-right: 2px;
			}

	.fl-node-616edad4687b8 .pp-grid-space {
		width: 4px;
	}

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

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

	/*
	.fl-node-616edad4687b8 .pp-content-grid-post:nth-of-type(2n) {
	    margin-right: 4px;
	}
	*/

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

	.fl-node-616edad4687b8 .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-616edad4687b8 .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-616edad4687b8 .pp-content-grid-pagination li a.page-numbers, .fl-node-616edad4687b8 .pp-content-grid-pagination li span.page-numbers, .fl-node-616edad4687b8 .pp-content-grid-load-more a {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 14px;
}
.fl-node-616edad4687b8 .pp-content-post .pp-more-link-button, .fl-node-616edad4687b8 .pp-content-post .pp-add-to-cart a, .fl-node-616edad4687b8 .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-616edad4687b8 .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-616edad4687b8 .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-616edad4687b8 .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-616edad4687b8 .pp-content-post {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	box-shadow: 0px 28px 116px 0px rgba(80, 96, 119, 0.6);
}
.fl-node-616edad4687b8 .pp-content-post .pp-content-body {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-616edad4687b8 .pp-content-post.pp-grid-style-9 {
	height: 275px;
}
 .fl-node-616edad4687b8 > .fl-module-content {
	margin-top:0px;
	margin-left:5px;
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687b8.fl-module > .fl-module-content {
	margin-left:15px;
}
}
.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.pp-separator--inline {
	display: flex;
	align-items: center;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator {
	flex: 1;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator span {
	display: block;
}
.pp-heading-content .pp-heading.pp-separator--inline.pp-left > .pp-heading-separator:first-of-type,
.pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:last-of-type {
	display: none;
}
.rtl .pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:last-of-type {
    display: block;
}
.rtl .pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:first-of-type {
    display: none;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type span {
	margin: 0 0 0 auto;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type span {
	margin: 0 auto 0 0;
}

.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-616edad4687c3 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-616edad4687c3 .pp-heading-content {
	text-align: left;
}

div.fl-node-616edad4687c3 .pp-heading-content .pp-heading {
		}

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


div.fl-node-616edad4687c3 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								}
div.fl-node-616edad4687c3 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-616edad4687c3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #CCCCCC;
					margin-left: 0px;
}
div.fl-node-616edad4687c3 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-616edad4687c3 .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-616edad4687c3 .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 0px;
			margin-bottom: 0px;
	}

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

div.fl-node-616edad4687c3 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-616edad4687c3 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-616edad4687c3 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-616edad4687c3 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

div.fl-node-616edad4687c3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-616edad4687c3 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-616edad4687c3 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-616edad4687c3 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-616edad4687c3 .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-616edad4687c3 .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-616edad4687c3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-616edad4687c3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-616edad4687c3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-616edad4687c3 .pp-heading-content {
				text-align: center;
			}
	div.fl-node-616edad4687c3 .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-616edad4687c3 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-616edad4687c3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-weight: 400;
	font-size: 18px;
}
div.fl-node-616edad4687c3 .pp-heading-content .pp-heading .heading-title {
	font-size: 24px;
	line-height: 1.3;
}
div.fl-node-616edad4687c3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-616edad4687c3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-616edad4687c3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-616edad4687c3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-616edad4687c3 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-616edad4687c3 .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-616edad4687c3 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-616edad4687c3 > .fl-module-content {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687c3.fl-module > .fl-module-content {
	margin-bottom:10px;
}
}
.fl-row .fl-col .fl-node-616edad4687c9 h2.fl-heading a,
.fl-row .fl-col .fl-node-616edad4687c9 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-616edad4687c9 h2.fl-heading .fl-heading-text *,
.fl-node-616edad4687c9 h2.fl-heading .fl-heading-text {
	color: #6C7C8D;
}
.fl-node-616edad4687c9.fl-module-heading .fl-heading {
	font-family: Barlow, sans-serif;
	font-weight: 600;
	font-size: 18px;
}
 .fl-node-616edad4687c9 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-616edad4687f5 .fl-post-feed-post {
	margin-bottom: 5px;
}
.fl-node-616edad4687f5 .fl-post-feed-post:last-child {
	margin-bottom: 0 !important;
}


.fl-builder-content .fl-node-616edad4687f5 .fl-post-feed-post {
	
	}







.fl-node-616edad4687f5 .fl-post-feed-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.3;
}
.fl-builder-content .fl-node-616edad4687f5 .fl-post-feed-meta, .fl-builder-content .fl-node-616edad4687f5 .fl-post-feed-meta a {
	line-height: 1;
}
 .fl-node-616edad4687f5 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-col-group-equal-height .fl-node-616edad4687f8,
.fl-col-group-equal-height .fl-node-616edad4687f8 .fl-module-content,
.fl-col-group-equal-height .fl-node-616edad4687f8 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-616edad4687f8 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-616edad4687f8 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-616edad4687f8 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-node-616edad4687f8.fl-visible-large,
.fl-col-group-equal-height .fl-node-616edad4687f8.fl-visible-medium,
.fl-col-group-equal-height .fl-node-616edad4687f8.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-616edad4687f8.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-616edad4687f8 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-616edad4687f8 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-616edad4687f8 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

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

.fl-node-616edad4687f8 .pp-infobox-icon-inner span.pp-icon,
.fl-node-616edad4687f8 .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-616edad4687f8 .pp-infobox-wrap .pp-infobox {
				text-align: left;
	}


.fl-node-616edad4687f8 .pp-infobox:hover {
	}

	.fl-node-616edad4687f8 .pp-infobox .pp-more-link {
					color: #4e8ae0;
									text-decoration: none;
			text-align: center;
			margin: 0 auto;
						}

	
	.fl-node-616edad4687f8 .pp-infobox .pp-more-link:hover {
					color: #3e6eb3;
					}

				.fl-node-616edad4687f8 .pp-infobox .pp-more-link .pp-button-icon,
	.fl-node-616edad4687f8 .pp-infobox .pp-more-link .pp-button-icon.dashicons:before {
		font-size: 15px;
	}
				.fl-node-616edad4687f8 .pp-infobox .pp-more-link .pp-button-icon-left {
		margin-right: 5px;
	}
	.fl-node-616edad4687f8 .pp-infobox .pp-more-link .pp-button-icon-right {
		margin-left: 5px;
	}
	
.fl-node-616edad4687f8 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-616edad4687f8 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-616edad4687f8 .pp-infobox-wrap .layout-4-wrapper {
					align-items: flex-start;
							}


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

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



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

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

	@media only screen and (max-width: 480px) {
		.fl-node-616edad4687f8 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-616edad4687f8 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-616edad4687f8 .pp-infobox-title-prefix {
	font-weight: 600;
	font-size: 18px;
}
.fl-node-616edad4687f8 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 600;
	font-size: 18px;
}
.fl-node-616edad4687f8 .pp-infobox-icon, .fl-node-616edad4687f8 .pp-infobox-image img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(255,0,0,0);
	border-top-width: 12px;
}
.fl-node-616edad4687f8 .pp-infobox-icon-inner span.pp-icon, .fl-node-616edad4687f8 .pp-infobox-icon-inner span:before {
	font-size: 24px;
}
.fl-node-616edad4687f8 .pp-infobox-icon-inner {
	width: 24px;
	height: 24px;
}
.fl-node-616edad4687f8 .pp-infobox {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #DDDDDD;
	border-top-width: 1px;
}
.fl-node-616edad4687f8 .pp-more-link {
	font-weight: 600;
	font-size: 14px;
}
.fl-node-616edad4687f8 .pp-infobox .pp-more-link {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-616edad4687f8 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-616edad4687f8 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-616edad4687f8 > .fl-module-content {
	margin-top:10px;
	margin-bottom:2px;
}
.fl-node-616edad4687b4.fl-module-heading .fl-heading {
	font-weight: 700;
	line-height: 1.1;
}
@media(max-width: 1024px) {
	.fl-node-616edad4687b4.fl-module-heading .fl-heading {
		font-size: 36px;
	}
}
@media(max-width: 768px) {
	.fl-node-616edad4687b4.fl-module-heading .fl-heading {
		font-size: 28px;
	}
}
 .fl-node-616edad4687b4 > .fl-module-content {
	margin-top:0px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-616edad4687b4.fl-module > .fl-module-content {
	margin-right:0px;
	margin-bottom:10px;
}
}
.fl-node-616edad4687c4 .fl-icon i,
.fl-node-616edad4687c4 .fl-icon i:before {
	color: #EBB018;
}




.fl-node-616edad4687c4 .fl-icon i, .fl-node-616edad4687c4 .fl-icon i:before {
	font-size: 24px;
}
.fl-node-616edad4687c4 .fl-icon-wrap .fl-icon-text {
	height: 42px;
}
.fl-node-616edad4687c4.fl-module-icon {
	text-align: left;
}
.fl-node-616edad4687c4 .fl-icon-text, .fl-node-616edad4687c4 .fl-icon-text-link {
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
}
@media(max-width: 1200px) {
	.fl-node-616edad4687c4 .fl-icon-wrap .fl-icon-text {
		height: 42px;
	}
}
@media(max-width: 1024px) {
	.fl-node-616edad4687c4 .fl-icon-wrap .fl-icon-text {
		height: 42px;
	}
}
@media(max-width: 768px) {
	.fl-node-616edad4687c4 .fl-icon-wrap .fl-icon-text {
		height: 42px;
	}
	.fl-node-616edad4687c4.fl-module-icon {
		text-align: center;
	}
}
 .fl-node-616edad4687c4 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
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-616edad4687c6 .pp-button-wrap a.pp-button,
.fl-node-616edad4687c6 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
			background: rgba(214,214,214,0);
	
		background-clip: border-box;
}

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

					background: rgba(51,51,51,0);
			
	}



.fl-node-616edad4687c6 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-616edad4687c6 a.pp-button,
.fl-node-616edad4687c6 a.pp-button * {
	color: #4e8ae0;
}

.fl-node-616edad4687c6 a.pp-button:hover,
.fl-node-616edad4687c6 a.pp-button:focus,
.fl-node-616edad4687c6 a.pp-button:hover *,
.fl-node-616edad4687c6 a.pp-button:focus * {
	color: #3e6eb3;
}

	    .fl-node-616edad4687c6 .pp-button-wrap a.pp-button,
		.fl-node-616edad4687c6 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-616edad4687c6 .pp-button-wrap {
	text-align: left;
}
.fl-node-616edad4687c6 a.pp-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-616edad4687c6 .pp-button-wrap a.pp-button, .fl-node-616edad4687c6 .pp-button-wrap a.pp-button:visited {
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.fl-node-616edad4687c6 .pp-button .pp-button-icon {
	font-size: 20px;
}
 .fl-node-616edad4687c6 > .fl-module-content {
	margin-top:-58px;
}
@media ( max-width: 1024px ) {
 .fl-node-616edad4687c6.fl-module > .fl-module-content {
	margin-top:-62.5px;
}
}
@media (max-width: 768px) { .fl-node-616edad4687c6 > .fl-module-content { margin-top:20px; } }.bb-box-input.input-small {
    width: 46px !important;
 }
.pp-dual-button-content .pp-dual-button {
    text-align: center;
}
.fl-module .pp-dual-button-content .pp-dual-button a.pp-button {
    overflow: hidden;
}
.fl-module .pp-dual-button-content .pp-dual-button-1 .pp-button {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}
.fl-module .pp-dual-button-content .pp-dual-button-1 .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;
}

.fl-module .pp-dual-button-content .pp-dual-button-2 .pp-button {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}
.fl-module .pp-dual-button-content .pp-dual-button-2 .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;
}

.fl-module .pp-dual-button-content .pp-divider {
    display: table;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(50%,-50%);
    -moz-transform: translate(50%,-50%);
    -o-transform: translate(50%,-50%);
    -ms-transform: translate(50%,-50%);
    transform: translate(50%,-50%);
    line-height: 0;
    text-align: center;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    text-align: center;
    transition: border-color ease 500ms,background ease 500ms,color ease 500ms;
    z-index: 12;
}
.fl-module  .pp-dual-button-content .pp-divider-inner {
    display: table-cell;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
}
.fl-module .pp-dual-button-content .pp-custom-icon {
    display: inline-block;
    max-width: 100%;
    width: 1em;
}

.fl-module .pp-dual-button-content .pp-font-icon.dashicons,
.fl-module .pp-dual-button-content .pp-font-icon.dashicons-before:before{
    font-size: inherit;
    height: auto;
    line-height: inherit;
    width: auto;
}
.pp-dual-button-content .pp-dual-button {
    float:  left;
    position: relative;
}
.pp-button > span {
    height: auto;
    vertical-align: middle;
}

/* Hover effects */
.pp-dual-button-content .pp-button-effect-fade .pp-button {
	transition: background-color, color;
}

.pp-dual-button-content .pp-button-effect-sweep_right .pp-button:before {
	content: "";
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	-moz-transform-origin: 0 50%;
	-o-transform-origin: 0 50%;
	-ms-transform-origin: 0 50%;
	transform-origin: 0 50%;
}
.pp-dual-button-content .pp-button-effect-sweep_right .pp-button:hover:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.pp-dual-button-content .pp-button-effect-sweep_left .pp-button:before {
	content: "";
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	-o-transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
}
.pp-dual-button-content .pp-button-effect-sweep_left .pp-button:hover:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.pp-dual-button-content .pp-button-effect-sweep_bottom .pp-button:before {
	content: "";
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	-o-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
}
.pp-dual-button-content .pp-button-effect-sweep_bottom .pp-button:hover:before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.pp-dual-button-content .pp-button-effect-sweep_top .pp-button:before {
	content: "";
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 100%;
	-moz-transform-origin: 50% 100%;
	-o-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}
.pp-dual-button-content .pp-button-effect-sweep_top .pp-button:hover:before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.pp-dual-button-content .pp-button-effect-bounce_right .pp-button:before {
	content: "";
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	-moz-transform-origin: 0 50%;
	-o-transform-origin: 0 50%;
	-ms-transform-origin: 0 50%;
	transform-origin: 0 50%;
}
.pp-dual-button-content .pp-button-effect-bounce_right .pp-button:hover:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.pp-dual-button-content .pp-button-effect-bounce_left .pp-button:before {
	content: "";
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	-o-transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
}
.pp-dual-button-content .pp-button-effect-bounce_left .pp-button:hover:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.pp-dual-button-content .pp-button-effect-bounce_bottom .pp-button:before {
	content: "";
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	-o-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
}
.pp-dual-button-content .pp-button-effect-bounce_bottom .pp-button:hover:before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.pp-dual-button-content .pp-button-effect-bounce_top .pp-button:before {
	content: "";
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 100%;
	-moz-transform-origin: 50% 100%;
	-o-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}
.pp-dual-button-content .pp-button-effect-bounce_top .pp-button:hover:before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.pp-dual-button-content .pp-button-effect-radial_out .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-radial_out .pp-button:before {
	content: "";
	border-radius: 100%;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}
.pp-dual-button-content .pp-button-effect-radial_out .pp-button:hover:before {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-o-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
}

.pp-dual-button-content .pp-button-effect-radial_in .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-radial_in .pp-button:before {
	content: "";
	border-radius: 100%;
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-o-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
}
.pp-dual-button-content .pp-button-effect-radial_in .pp-button:hover:before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.pp-dual-button-content .pp-button-effect-rectangle_out .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-rectangle_out .pp-button:before {
	content: "";
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}
.pp-dual-button-content .pp-button-effect-rectangle_out .pp-button:hover:before {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.pp-dual-button-content .pp-button-effect-rectangle_in .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-rectangle_in .pp-button:before {
	content: "";
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);	
}
.pp-dual-button-content .pp-button-effect-rectangle_in .pp-button:hover:before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.pp-dual-button-content .pp-button-effect-shutter_in_horizontal .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_in_horizontal .pp-button:before {
	content: "";
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	-o-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;	
}
.pp-dual-button-content .pp-button-effect-shutter_in_horizontal .pp-button:hover:before {
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
}

.pp-dual-button-content .pp-button-effect-shutter_out_horizontal .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_out_horizontal .pp-button:before {
	content: "";
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	-o-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
}
.pp-dual-button-content .pp-button-effect-shutter_out_horizontal .pp-button:hover:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.pp-dual-button-content .pp-button-effect-shutter_in_vertical .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_in_vertical .pp-button:before {
	content: "";
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	-o-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
}
.pp-dual-button-content .pp-button-effect-shutter_in_vertical .pp-button:hover:before {
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
}

.pp-dual-button-content .pp-button-effect-shutter_out_vertical .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_out_vertical .pp-button:before {
	content: "";
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	-o-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
}
.pp-dual-button-content .pp-button-effect-shutter_out_vertical .pp-button:hover:before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.pp-dual-button-content .pp-button-effect-shutter_out_diagonal .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_out_diagonal .pp-button:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-o-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	height: 0;
	width: 0;
	z-index: -1;
}
.pp-dual-button-content .pp-button-effect-shutter_out_diagonal .pp-button:hover:after {
	height: 4000%;
    width: 100%;
}

.pp-dual-button-content .pp-button-effect-shutter_in_diagonal .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_in_diagonal .pp-button:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-o-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	height: 4000%;
	width: 100%;
	z-index: -1;
}
.pp-dual-button-content .pp-button-effect-shutter_in_diagonal .pp-button:hover:after {
	height: 4000%;
    width: 0;
}@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-node-616edad4687f2 .pp-dual-button-inner {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.fl-node-616edad4687f2 .pp-dual-button-content a.pp-button {
			border-width: 1px;
				border-style:  none;
				border-radius: 6px;
		text-decoration: none;
	box-shadow: none;
	display: block;
}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1 a.pp-button {
		background-color: #4E8AE0;
			color: #ffffff;
			border-color: #333333;
		position: relative;
	vertical-align: middle;
}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1 a.pp-button:hover {
		background-color: #3e6eb3;
			color: #ffffff;
			border-color: #c6c6c6;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1 a.pp-button:hover span {
		color: #ffffff;
	}

.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2 a.pp-button {
		background-color: rgba(221,221,221,0);
			color: #4E8AE0;
			border-color: #333333;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2 a.pp-button:hover {
		background-color: rgba(238,238,238,0);
			color: #3e6eb3;
			border-color: #c6c6c6;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2 a.pp-button:hover span {
		color: #3e6eb3;
	}
.fl-node-616edad4687f2 .pp-dual-button-content a.pp-button .pp-font-icon {
	margin-left: 5px;
}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1 .pp-font-icon {
			font-size: 20px;
			color: #ffffff;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1 a.pp-button:hover .pp-font-icon {
		color: #ffffff;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1 .custom_icon {
			width:20px;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2 .pp-font-icon {
			font-size: 20px;
			color: #4E8AE0;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2 a.pp-button:hover .pp-font-icon {
		color: #3e6eb3;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2 .custom_icon {
			width:20px;
	}

.fl-node-616edad4687f2 .pp-dual-button-1 .pp-custom-icon {
			width: 20px;
	}
.fl-node-616edad4687f2 .pp-dual-button-2 .pp-custom-icon {
			width: 20px;
	}

.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1 .pp-button,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1 .pp-button:before {
			transition-duration: 200ms;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2 .pp-button,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2 .pp-button:before {
			transition-duration: 200ms;
	}

.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-sweep_right .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-sweep_left .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-sweep_bottom .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-sweep_top .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-bounce_right .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-bounce_left .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-bounce_bottom .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-bounce_top .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-radial_out .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-radial_in .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-rectangle_out .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-rectangle_in .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_horizontal .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_out_horizontal .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_vertical .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_out_vertical .pp-button:before {
		background: #3e6eb3;
			color: #ffffff;
			border-color: #c6c6c6;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-sweep_right .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-sweep_left .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-sweep_bottom .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-sweep_top .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-bounce_right .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-bounce_left .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-bounce_bottom .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-bounce_top .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-radial_out .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-radial_in .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-rectangle_out .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-rectangle_in .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_horizontal .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_out_horizontal .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_vertical .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_out_vertical .pp-button:before {
		background: rgba(238,238,238,0);
			color: #3e6eb3;
			border-color: #c6c6c6;
	}

.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-radial_in .pp-button,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-rectangle_in .pp-button,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_horizontal .pp-button,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_vertical .pp-button,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_diagonal .pp-button {
		background: #3e6eb3;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-radial_in .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-rectangle_in .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_horizontal .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_vertical .pp-button:before {
		background: #4E8AE0;
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-radial_in .pp-button,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-rectangle_in .pp-button,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_horizontal .pp-button,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_vertical .pp-button,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_diagonal .pp-button {
		background: rgba(238,238,238,0);
	}
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-radial_in .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-rectangle_in .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_horizontal .pp-button:before,
.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_vertical .pp-button:before {
		background: rgba(221,221,221,0);
	}

.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_out_diagonal .pp-button:after {
		background: #3e6eb3;
			color: #ffffff;
			border-color: #c6c6c6;
				transition-duration: 200ms;
	}

@media only screen and ( max-width: 1024px ) {
	}

@media only screen and ( max-width: 768px ) {
	}

@media only screen and ( max-width: 480px ) {
	.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button-inner {
		float: none;
		text-align: center;
		flex-direction: column;
	}
	.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button,
	.fl-node-616edad4687f2 .pp-dual-button-content .pp-dual-button .pp-button {
		display: block;
		float: none;
		margin: 0 auto;
		max-width: 100%;
	}
	
}
.fl-node-616edad4687f2 .pp-dual-button-content {
	text-align: left;
}
.fl-node-616edad4687f2 .pp-dual-button-inner {
	gap: 10px;
}
.fl-node-616edad4687f2 .pp-dual-button-content a.pp-button {
	padding-top: 14px;
	padding-right: 20px;
	padding-bottom: 14px;
	padding-left: 20px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	width: 180px;
}




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

	
			background: rgba(214,214,214,0);
	
		background-clip: border-box;
}

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

					background: rgba(51,51,51,0);
			
	}



.fl-node-616edad4687f6 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-616edad4687f6 a.pp-button,
.fl-node-616edad4687f6 a.pp-button * {
	color: #4e8ae0;
}

.fl-node-616edad4687f6 a.pp-button:hover,
.fl-node-616edad4687f6 a.pp-button:focus,
.fl-node-616edad4687f6 a.pp-button:hover *,
.fl-node-616edad4687f6 a.pp-button:focus * {
	color: #3e6eb3;
}

	    .fl-node-616edad4687f6 .pp-button-wrap a.pp-button,
		.fl-node-616edad4687f6 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-616edad4687f6 .pp-button-wrap {
	text-align: right;
}
.fl-node-616edad4687f6 a.pp-button {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-616edad4687f6 .pp-button-wrap a.pp-button, .fl-node-616edad4687f6 .pp-button-wrap a.pp-button:visited {
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.fl-node-616edad4687f6 .pp-button .pp-button-icon {
	font-size: 18px;
}
 .fl-node-616edad4687f6 > .fl-module-content {
	margin-top:0px;
	margin-bottom:10px;
}
.fl-col-group-equal-height .fl-node-616edad4687f9,
.fl-col-group-equal-height .fl-node-616edad4687f9 .fl-module-content,
.fl-col-group-equal-height .fl-node-616edad4687f9 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-616edad4687f9 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-616edad4687f9 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-616edad4687f9 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-node-616edad4687f9.fl-visible-large,
.fl-col-group-equal-height .fl-node-616edad4687f9.fl-visible-medium,
.fl-col-group-equal-height .fl-node-616edad4687f9.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-616edad4687f9.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-616edad4687f9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-616edad4687f9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-616edad4687f9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

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

.fl-node-616edad4687f9 .pp-infobox-icon-inner span.pp-icon,
.fl-node-616edad4687f9 .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-616edad4687f9 .pp-infobox-wrap .pp-infobox {
				text-align: left;
	}


.fl-node-616edad4687f9 .pp-infobox:hover {
	}

	.fl-node-616edad4687f9 .pp-infobox .pp-more-link {
					color: #4e8ae0;
									text-decoration: none;
			text-align: center;
			margin: 0 auto;
						}

	
	.fl-node-616edad4687f9 .pp-infobox .pp-more-link:hover {
					color: #3e6eb3;
					}

				.fl-node-616edad4687f9 .pp-infobox .pp-more-link .pp-button-icon,
	.fl-node-616edad4687f9 .pp-infobox .pp-more-link .pp-button-icon.dashicons:before {
		font-size: 15px;
	}
				.fl-node-616edad4687f9 .pp-infobox .pp-more-link .pp-button-icon-left {
		margin-right: 5px;
	}
	.fl-node-616edad4687f9 .pp-infobox .pp-more-link .pp-button-icon-right {
		margin-left: 5px;
	}
	
.fl-node-616edad4687f9 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-616edad4687f9 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-616edad4687f9 .pp-infobox-wrap .layout-4-wrapper {
					align-items: flex-start;
							}


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

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



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

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

	@media only screen and (max-width: 480px) {
		.fl-node-616edad4687f9 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-616edad4687f9 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-616edad4687f9 .pp-infobox-title-prefix {
	font-weight: 600;
	font-size: 18px;
}
.fl-node-616edad4687f9 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 600;
	font-size: 18px;
}
.fl-node-616edad4687f9 .pp-infobox-icon, .fl-node-616edad4687f9 .pp-infobox-image img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(255,0,0,0);
	border-top-width: 12px;
}
.fl-node-616edad4687f9 .pp-infobox-icon-inner span.pp-icon, .fl-node-616edad4687f9 .pp-infobox-icon-inner span:before {
	font-size: 24px;
}
.fl-node-616edad4687f9 .pp-infobox-icon-inner {
	width: 24px;
	height: 24px;
}
.fl-node-616edad4687f9 .pp-infobox {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #DDDDDD;
	border-top-width: 1px;
}
.fl-node-616edad4687f9 .pp-more-link {
	font-weight: 600;
	font-size: 14px;
}
.fl-node-616edad4687f9 .pp-infobox .pp-more-link {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-616edad4687f9 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-616edad4687f9 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-616edad4687f9 > .fl-module-content {
	margin-top:10px;
	margin-bottom:2px;
}
.fl-node-616edad4687c5 .fl-icon i,
.fl-node-616edad4687c5 .fl-icon i:before {
	color: #EBB018;
}




.fl-node-616edad4687c5 .fl-icon i, .fl-node-616edad4687c5 .fl-icon i:before {
	font-size: 24px;
}
.fl-node-616edad4687c5 .fl-icon-wrap .fl-icon-text {
	height: 42px;
}
.fl-node-616edad4687c5.fl-module-icon {
	text-align: left;
}
.fl-node-616edad4687c5 .fl-icon-text, .fl-node-616edad4687c5 .fl-icon-text-link {
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
}
@media(max-width: 1200px) {
	.fl-node-616edad4687c5 .fl-icon-wrap .fl-icon-text {
		height: 42px;
	}
}
@media(max-width: 1024px) {
	.fl-node-616edad4687c5 .fl-icon-wrap .fl-icon-text {
		height: 42px;
	}
}
@media(max-width: 768px) {
	.fl-node-616edad4687c5 .fl-icon-wrap .fl-icon-text {
		height: 42px;
	}
	.fl-node-616edad4687c5.fl-module-icon {
		text-align: center;
	}
}
 .fl-node-616edad4687c5 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}



.fl-node-616edad4687f3 .pp-spacer-module {
    height: 40px;
    width: 100%;
}


@media only screen and (max-width: 1024px) {
        .fl-node-616edad4687f3 .pp-spacer-module {
        height: 30px;
    }
}
@media only screen and (max-width: 768px) {
                    .fl-node-616edad4687f3 {
            display: none !important;
        }
        .fl-node-616edad4687f3 .pp-spacer-module {
        height: 0px;
    }
}
 .fl-node-616edad4687f3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-col-group-equal-height .fl-node-616edad4687fa,
.fl-col-group-equal-height .fl-node-616edad4687fa .fl-module-content,
.fl-col-group-equal-height .fl-node-616edad4687fa .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-616edad4687fa .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-616edad4687fa .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-616edad4687fa .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-webkit-box-flex: 1 1 auto;
	-moz-box-flex: 1 1 auto;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-node-616edad4687fa.fl-visible-large,
.fl-col-group-equal-height .fl-node-616edad4687fa.fl-visible-medium,
.fl-col-group-equal-height .fl-node-616edad4687fa.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-616edad4687fa.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-616edad4687fa .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-616edad4687fa .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-616edad4687fa .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

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

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

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

.fl-node-616edad4687fa .pp-infobox-icon-inner span.pp-icon,
.fl-node-616edad4687fa .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-616edad4687fa .pp-infobox-wrap .pp-infobox {
				text-align: left;
	}


.fl-node-616edad4687fa .pp-infobox:hover {
	}

	.fl-node-616edad4687fa .pp-infobox .pp-more-link {
					color: #4e8ae0;
									text-decoration: none;
			text-align: center;
			margin: 0 auto;
						}

	
	.fl-node-616edad4687fa .pp-infobox .pp-more-link:hover {
					color: #3e6eb3;
					}

				.fl-node-616edad4687fa .pp-infobox .pp-more-link .pp-button-icon,
	.fl-node-616edad4687fa .pp-infobox .pp-more-link .pp-button-icon.dashicons:before {
		font-size: 15px;
	}
				.fl-node-616edad4687fa .pp-infobox .pp-more-link .pp-button-icon-left {
		margin-right: 5px;
	}
	.fl-node-616edad4687fa .pp-infobox .pp-more-link .pp-button-icon-right {
		margin-left: 5px;
	}
	
.fl-node-616edad4687fa .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-616edad4687fa .pp-infobox-wrap .layout-3-wrapper,
.fl-node-616edad4687fa .pp-infobox-wrap .layout-4-wrapper {
					align-items: flex-start;
							}


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

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



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

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

	@media only screen and (max-width: 480px) {
		.fl-node-616edad4687fa .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-616edad4687fa .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-616edad4687fa .pp-infobox-title-prefix {
	font-weight: 600;
	font-size: 18px;
}
.fl-node-616edad4687fa .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 600;
	font-size: 18px;
}
.fl-node-616edad4687fa .pp-infobox-icon, .fl-node-616edad4687fa .pp-infobox-image img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(255,0,0,0);
	border-top-width: 12px;
}
.fl-node-616edad4687fa .pp-infobox-icon-inner span.pp-icon, .fl-node-616edad4687fa .pp-infobox-icon-inner span:before {
	font-size: 24px;
}
.fl-node-616edad4687fa .pp-infobox-icon-inner {
	width: 24px;
	height: 24px;
}
.fl-node-616edad4687fa .pp-infobox {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #DDDDDD;
	border-top-width: 1px;
}
.fl-node-616edad4687fa .pp-more-link {
	font-weight: 600;
	font-size: 14px;
}
.fl-node-616edad4687fa .pp-infobox .pp-more-link {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-616edad4687fa .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-616edad4687fa .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-616edad4687fa > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.pp-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    z-index: -1;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.pp-modal-wrap.pp-modal-active {
	z-index: 99999;
	visibility: visible;
	opacity: 1;
}
.pp-modal-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
}
.pp-modal-button .sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
}

.pp-modal {
    display: block;
    position: relative;
    margin: auto auto;
    opacity: 1;
	outline: 0;
}
.pp-modal-container {
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: auto;
    opacity: 0;
	z-index: 1;
}
.pp-modal.layout-fullscreen {
    max-width: 100%;
    height: auto;
    min-height: 100%;
    margin: 0;
}
/* .pp-modal.layout-standard:not(.position-auto) {
	top: 50%;
	transform: translateY(-50%);
} */
.pp-modal .pp-modal-content {
	height: inherit;
	overflow-y: auto;
	position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
}
/* .pp-modal.layout-standard .pp-modal-content {
	max-height: 90vh;
} */
.pp-modal .pp-modal-body {
    overflow: hidden;
	height: inherit;
}
.pp-modal .pp-modal-header {
    display: table;
    width: 100%;
}
.pp-modal .pp-modal-title {
    margin: 0;
    display: table-cell;
    vertical-align: middle;
}

.pp-modal .pp-modal-frame iframe {
	width: 100%;
}

.pp-modal .pp-modal-video-embed {
	position: relative;
	padding-top: 56.25%;
	height: inherit;
}
.pp-modal .pp-modal-video-embed iframe,
.pp-modal .pp-modal-video-embed .wp-video,
.pp-modal .pp-modal-video-embed > video {
	height: 100%;
	width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.pp-modal .pp-modal-content.pp-modal-frame:before {
	background-position: 50%;
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3D(-50%, -50%, 0);
}

.pp-modal .pp-modal-content-inner {
	position: relative;
    height: 100%;
}

.pp-modal-trigger {
    display: inline-block;
    text-decoration: none;
    text-shadow: none;
}
.pp-modal-trigger .pp-button-icon {
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
    width: auto;
}
.pp-modal-trigger .pp-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.pp-modal-trigger .pp-modal-trigger-text {
    vertical-align: middle;
}
.pp-modal-close {
    position: relative;
    right: 10px;
    line-height: 0;
    cursor: pointer;
    display: table-cell;
    vertical-align: middle;
    top: 0;
    padding: 5px;
	-webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.pp-modal-close.box-top-right-out {
    position: absolute;
    right: -40px;
}
.pp-modal .pp-modal-close.box-top-left-out {
    position: absolute;
    left: -40px;
    right: 0;
}
.pp-modal-close.win-top-right {
    position: fixed;
}
.pp-modal-close.win-top-left {
    position: fixed;
    right: 0;
}
.pp-modal-close .bar-wrap {
    display: inline-block;
    position: relative;
}
.pp-modal-close .bar-wrap span {
    position: absolute;
    border-radius: 0;
    width: 100%;
    top: 49.5%;
    left: 0px;
}
.pp-modal-close .bar-wrap .bar-1 {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
}
.pp-modal-close .bar-wrap .bar-2 {
    -webkit-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    transform: rotate(-225deg);
}
.pp-modal-wrap .modal-visible {
    opacity: 1;
}
.pp-modal .pp-modal-content .fl-row-content-wrap,
.pp-modal .pp-modal-content .fl-builder-module-template {
    padding: 0;
}
.fl-module-pp-modal-box {
    z-index: 2 !important;
}

.pp-modal-wrap .pp-flexbox {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.pp-modal-wrap .pp-flexbox.layout-vertical {
	flex-direction: column;
}
.pp-modal-wrap .pp-flexbox .pp-flexbox-item {
	align-self: stretch;
}
.pp-modal-wrap .pp-flexbox .pp-flexbox-item.object-fit-cover img {
	height: 100%;
	object-fit: cover;
}

@media only screen and (max-width: 768px) {
	.pp-modal-wrap .pp-flexbox {
		flex-direction: column;
	}
	.pp-modal-wrap .pp-flexbox .pp-flexbox-item {
		width: 100%;
	}
}@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.
 */ }body:not(.fl-builder-edit) .fl-node-616edad4687ca > .fl-module-content {
	margin: 0;
}

.fl-node-616edad4687ca .pp-modal-button {
	text-align: left;
}
.fl-node-616edad4687ca .pp-modal-trigger,
.fl-node-616edad4687ca .pp-modal-button .pp-modal-trigger,
.fl-node-616edad4687ca .pp-modal-button .pp-modal-trigger .pp-modal-trigger-icon {
		color: #ffffff;
			background-color: #428bca;
					text-align: center;
	text-decoration: none;
}


.fl-node-616edad4687ca .pp-modal-trigger .pp-button-icon {
	}

.fl-builder-content .fl-node-616edad4687ca .pp-modal-trigger:hover,
.fl-node-616edad4687ca .pp-modal-trigger:hover {
        color: #f7f7f7;
			background-color: #444444;
	        border-color: #222222;
}


.fl-node-616edad4687ca .pp-modal-height-auto,
#modal-616edad4687ca.pp-modal-height-auto {
    display: block !important;
    position: absolute;
    top: -99999px;
    width: 550px;
    visibility: hidden;
}

.fl-node-616edad4687ca .pp-modal-height-auto .pp-modal-overlay,
#modal-616edad4687ca.pp-modal-height-auto .pp-modal-overlay {
    display: none !important;
}

.fl-node-616edad4687ca .pp-modal,
#modal-616edad4687ca .pp-modal {
			background-color: #ffffff;
	}




.fl-node-616edad4687ca .pp-modal.layout-standard,
#modal-616edad4687ca .pp-modal.layout-standard {
    width: 550px;
    		height: auto;
	    max-width: 90%;
}

.fl-node-616edad4687ca .pp-modal .pp-modal-header,
#modal-616edad4687ca .pp-modal .pp-modal-header {
			background-color: #ffffff;
	    border-bottom: 1px solid #eeeeee;
}

	.fl-node-616edad4687ca .pp-modal .pp-modal-header,
	#modal-616edad4687ca .pp-modal .pp-modal-header {
					border-top-left-radius: 2px;
						border-top-right-radius: 2px;
				}
	
.fl-node-616edad4687ca .pp-modal .pp-modal-title,
#modal-616edad4687ca .pp-modal .pp-modal-title {
    padding: 10px 15px;
    color: #444444;
}
.fl-node-616edad4687ca .pp-modal .pp-modal-content,
#modal-616edad4687ca .pp-modal .pp-modal-content {
        padding: 10px;
}
.fl-node-616edad4687ca .pp-modal .pp-modal-content.pp-modal-frame:before,
#modal-616edad4687ca .pp-modal .pp-modal-content.pp-modal-frame:before {
    background: url(https://clone.fsg-resources.com/wp-content/plugins/bbpowerpack/modules/pp-modal-box/loader.gif) no-repeat;
}
.fl-node-616edad4687ca .pp-modal .pp-modal-content-inner,
#modal-616edad4687ca .pp-modal .pp-modal-content-inner {
        overflow: hidden;
        padding: 10px;
}

.fl-node-616edad4687ca .pp-modal-close,
#modal-616edad4687ca .pp-modal-close {
    	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-616edad4687ca .pp-modal-close:hover,
#modal-616edad4687ca .pp-modal-close:hover {
	}
.fl-node-616edad4687ca .pp-modal-close.box-top-right,
#modal-616edad4687ca .pp-modal-close.box-top-right {
    top: 10px;
    right: 10px;
}
.fl-node-616edad4687ca .pp-modal-close.box-top-left,
#modal-616edad4687ca .pp-modal-close.box-top-left {
    top: 10px;
    left: -10px;
}
.fl-node-616edad4687ca .pp-modal-close.win-top-right,
#modal-616edad4687ca .pp-modal-close.win-top-right {
    top: 10px;
    right: 10px;
}
.fl-node-616edad4687ca .pp-modal-close.win-top-left,
#modal-616edad4687ca .pp-modal-close.win-top-left {
    top: 10px;
    left: -10px;
}
.fl-node-616edad4687ca .pp-modal-close .bar-wrap,
#modal-616edad4687ca .pp-modal-close .bar-wrap {
    width: 100%;
    height: 100%;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-616edad4687ca .pp-modal-close .bar-wrap span,
#modal-616edad4687ca .pp-modal-close .bar-wrap span {
    background: #000000;
    height: 2px;
    margin-top: -1px;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-616edad4687ca .pp-modal-close:hover .bar-wrap span,
#modal-616edad4687ca .pp-modal-close:hover .bar-wrap span {
    background: #dddddd;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-616edad4687ca .pp-modal-container.fadeIn.animated,
#modal-616edad4687ca .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-616edad4687ca .pp-modal-container.fadeOut.animated,
#modal-616edad4687ca .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-616edad4687ca .has-overlay-animation .pp-modal-container,
#modal-616edad4687ca.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.4);
	}

.fl-node-616edad4687ca .pp-modal-wrap:not(.has-overlay-animation) .pp-modal-overlay,
#modal-616edad4687ca:not(.has-overlay-animation) .pp-modal-overlay {
    		background-color: rgba(0,0,0,0.4);
		}

@media only screen and (max-width: 0px) {
    .fl-node-616edad4687ca .pp-modal.layout-fullscreen,
    #modal-616edad4687ca .pp-modal.layout-fullscreen {
        top: 0 !important;
        margin: 10px !important;
    }
    .fl-node-616edad4687ca .pp-modal.layout-standard,
    #modal-616edad4687ca .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .fl-node-616edad4687ca .pp-modal.layout-standard,
    #modal-616edad4687ca .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-616edad4687ca .pp-modal-button {
	text-align: left;
}
.fl-node-616edad4687ca .pp-modal-trigger, .fl-node-616edad4687ca .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-616edad4687ca .pp-modal, #modal-616edad4687ca .pp-modal {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}
.fl-node-616edad4687ca .pp-modal.layout-fullscreen, #modal-616edad4687ca .pp-modal.layout-fullscreen {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
 .fl-node-616edad4687ca > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}



.fl-node-616edad4687cc .pp-spacer-module {
    height: 60px;
    width: 100%;
}


@media only screen and (max-width: 1024px) {
        .fl-node-616edad4687cc .pp-spacer-module {
        height: 40px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-616edad4687cc .pp-spacer-module {
        height: 20px;
    }
}
 .fl-node-616edad4687cc > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

/* Start Global CSS */
/* Force footer to the bottom on pages with limited content */
.fl-page {
  position: relative;
  min-height: 100vh;
}
.fl-page-footer-wrap {
  width: 100%;
  position: absolute;
  bottom: 0px;
}

.fsg_breadcrumbs a {
    color: inherit;
}

.fsg_breadcrumbs a:hover,
.fsg_breadcrumbs a:focus {
    color: #4e8ae0;
}

.fsg_info_box-shadow .pp-infobox-link:hover .pp-infobox,
.fsg_info_box-shadow .pp-infobox-link:focus .pp-infobox{
    box-shadow: rgb(0 0 0 / 40%) 0px 0px 10px 0px;
}

.fsg_sidebar_post_list .pp-content-post-data {
    display: flex;
    flex-direction: column;
}

.fsg_sidebar_post_list .pp-post-title {
    order: 2;
}

.fsg_sidebar_post_list .pp-post-meta {
    order: 1;
    padding: 0;
}

.fsg_sidebar_post_list .pp-post-content {
    order: 3;
}

.fsg_sidebar_post_list .pp-content-grid-more-link {
    order: 4;
}

.fsg_sidebar_post_list .pp-content-post:nth-child(2) {
    border-bottom: none;
}

.fsg_sidebar_post_list .pp-content-post:nth-child(2) .pp-content-body {
    padding-bottom: 0 !important;
}

.fsg_department_grid_row .fl-row-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto 1fr;
}

.fsg_department_grid_row .fl-col-group:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 1;
}

.fsg_department_grid_row .fl-col-group:nth-child(2) {
    grid-column: 1 / span 1;
    grid-row: 2 / span 2;
}

.fsg_department_grid_row .fl-col-group:nth-child(3) {
    grid-column: 2 / span 1;
    grid-row: 2 / span 1;
}

.fsg_department_grid_row .fl-col-group:nth-child(4) {
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
}

.fsg_team_modal p,
.fsg_team_modal_socials {
    font-size: 17px;
    line-height: 1.5;
}

.fsg_team_modal_socials a {
    text-decoration: none !important;
}

.fsg_team_modal_socials a:hover,
.fsg_team_modal_socials a:focus {
    color: #3e6eb3;
}

.fsg_team_modal {
    max-width: 80em !important;
}

.fsg_team_modal_position {
    font-size: 18px;
}

.fsg_team_card:hover .fsg_team_card_title,
.fsg_team_card:focus .fsg_team_card_title {
    color: #4e8ae0 !important;
}

.fsg_team_modal_title {
    font-size: 28px;
}

.fsg_faq_title {
    max-width: 800px;
}

.fsg_faq_content {
    max-width: 700px;
}

.fsg_faq_category_link a {
    font-size: 18px;
    font-weight: 500;
}

.fsg_faq_category_link a::before {
    content: 'See All ';
}

.fsg_faq_category_link a::after {
    content: ' Questions';
}

.fsg_faq_category_link i {
    color: #4E8AE0;
    font-size: 18px;
}

.fsg_faq_search_results,
.fsg_faq_accordion {
    max-width: 850px;
}

.facetwp-pager {
    margin-top: 1em;
}

.facetwp-pager a {
    border: solid 1px #D9D9D9;
    font-size: 17px;
    padding: 6px 12px;
    min-width: 38px;
    text-align: center;
    color: #5B574D;
    transition: all 0.3s ease-in-out;
}

.facetwp-pager a:hover,
.facetwp-pager a:focus,
.facetwp-pager a:active {
    background-color: #f7f7f7;
    font-weight: 400;
}

.facetwp-pager a.active {
    background-color: #4E8AE0;
    border-color: #4E8AE0;
    color: white !important;
}

.facetwp-pager a.active:hover {
    font-weight: bold;
}

.helpfulLinks a:hover .fl-post-title,
.helpfulLinks a:hover i,
.helpfulLinks a:focus .fl-post-title,
.helpfulLinks a:focus i {
    color: #4e8ae0;
}

.pp-announcement-bar-link {
    display: block !important;
}

.pp-announcement-bar-content {
    padding: 20px 10px !important;
}

.pp-announcement-bar-wrap .pp-announcement-bar-inner {
    max-width: 1240px;
    margin: 0 auto;
}

@media (max-width: 768px) {
	.fsg_department_grid_row .fl-row-content {
		display: block;
	}
}

@media (max-width: 480px) {
    .fsg_team_grid .pp-content-grid-post {
        width: 100%;
    }   
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.pp-content-post-carousel.owl-carousel {
    overflow: visible;
}

div.pp-content-post-carousel > div {
    overflow: visible;
}
.pp-content-post-carousel .owl-carousel { overflow: visible !important; }

.resourceIconSection {
    display: flex;
    align-items: center;
}

.resourceButton .fl-button-text {
    text-transform: uppercase;
    font-family: Barlow;
    letter-spacing: 0.1em;
}

.rssFeed .widgettitle {
    display: none;
}

.rssFeed {
    font-family: 'Barlow';
    font-weight: bold;
    color: #000;
    font-size: 14px;
}

.rssFeed ul li {
    margin-bottom: 20px;
}

.rss-message-form .gform_title {
    font-size: 22px !important;
    text-transform: none !important;
}

.rss-message-form .ginput_container {
    margin-top: 0 !important;
}

.rss-message-form .rss-message-to input {
    border: none;
    background: none;
    margin-left: -10px;
}

.rss-message-form .rss-message-to,
.rss-message-form .rss-message-from {
    display: flex;
    align-items: center;
}

.rss-message-form .rss-message-to label,
.rss-message-form .rss-message-from label {
    width: 100px;
}

.rss-message-form .rss-message-to .ginput_container,
.rss-message-form .rss-message-from .ginput_container {
    width: 80% !important;
}

.rss-message-form .rss-message-to input,
.rss-message-form .rss-message-from input {
    width: 100% !important;
}

@media (max-width: 768px) {
    .fsg_cs_carousel {
        overflow-x: hidden;
    }

    .projectsHeading {
        background: #F1F1F1 !important;
        max-width: unset !important;
    }
}

.corporate-office-nav {
    z-index: 100;
}

.case-studies-row {
    position: relative;
    z-index: 101;
}

.owl-nav {
  position: static !important;
  text-align: right;
  margin-top: 25px;
  z-index: 99;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div, .pp-content-post-carousel .owl-nav button {
  position: static !important; 
  background-color: rgb(78,138,224)!important;
  width: 5rem !important;
  left: auto !important;
  height: 4rem !important;
  top: auto !important;
  margin-left: 15px;
  border-radius: 0px !important;
  text-align: center;
  display: table-cell !important;
  vertical-align: middle !important;
  transition-duration: .3s!important;
  transition-timing-function: cubic-bezier(.4,0,.2,1)!important;
}


.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div, .pp-content-post-carousel .owl-nav button:hover {
    background-color: #3e6fb3 !important;

}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div, .pp-content-post-carousel .owl-nav .disabled:hover {
  background-color: rgb(78,138,224)!important;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div, .pp-content-post-carousel .owl-nav .disabled{
  opacity: .35;
}


.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div, .pp-content-post-carousel .owl-nav .owl-prev:after {
  content: "" !important;
    width: 0 !important;
    height: 0 !important;
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    display: block !important;
  line-height: 4rem !important;
  width: 4rem !important;
    transform: translate(-50%,0%) !important;
  border-right: 15px solid #fff !important;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div, .pp-content-post-carousel .owl-nav .owl-next:after {
  content: "" !important;
    width: 0 !important;
    height: 0 !important;
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    display: block !important;
  line-height: 4rem !important;
  width: 4rem !important;
    transform: translate(20%,0%) !important;
  border-left: 15px solid #fff !important;
}

.pp-content-post-carousel .owl-theme .owl-controls .owl-buttons div, .pp-content-post-carousel .owl-nav button svg {
  color: white !important;  
  display: none !important;
}

.fsg_birthdays_col .fl-col-content,
.fsg_anniversaries_col .fl-col-content {
    padding: 0 !important;
    min-height: 0 !important;
}

.fl-module-icon .fl-icon-wrap:hover .fl-icon-text-link * {
    color: rgb(235, 176, 24) !important;
}

.fsg_info_box_flex .pp-infobox-description {
    display: flex;
    align-items: flex-start;
}

.fsg_info_box_flex .pp-description-wrap {
    flex: 1 1 auto;
    padding-right: 1em;
}

.fsg_info_box_flex .pp-infobox-button {
    flex: 0 0 auto;
}

.fsg_post_list .fl-post-feed-title {
    margin-bottom: 5px !important;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.fsg_quick_link_box .pp-infobox-link:hover .pp-infobox,
.fsg_quick_link_box .pp-infobox-link:focus .pp-infobox {
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.2) !important;
}

@media (max-width: 768px) {
	.fsg_info_box_flex .pp-infobox-wrap .layout-3-wrapper {
		flex-direction: row;
	}

	.fsg_info_box_flex .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
		margin-right: 10px !important;
	}
}

/* End Layout CSS */

.fl-node-616edad4687b0 .fl-post-text {
  padding: 20px 20px 0;
  color: #000;
  font-weight: lighter;
  font-size: 17px;
  width: 90%;
  font-family: Barlow;
}
.fl-node-616edad4687b0 .fl-post-excerpt {
  font-weight: 100 !important;
  line-height: 164%;
}
.fl-node-616edad4687b0 .fl-post-title {
  font-size: 40px;
  line-height: 115%;
  font-weight: 600;
  margin: 0;
  margin-bottom: 16px;
  padding: 0;
}
.fl-node-616edad4687b0 .fl-post-meta {
  padding: 0 0 15px;
}
@media (max-width: 768px) {
  .fl-node-616edad4687b0 .fl-post-text {
    width: 100%;
  }
  .fl-node-616edad4687b0 .fl-post-title {
    font-size: 32px;
  }
}
/* Equal height Column Bottom Alignment */
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
          -webkit-box-align: end;
           -webkit-box-pack: end;
              -ms-flex-pack: end;
}

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

/* Anchor Tag Css */

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

/* Row Separator CSS */

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

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

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

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

@media (max-width: 992px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* Creative Button
___________________________________________________________________________*/

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

}

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

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

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

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

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

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

/*  Translate Button styles */

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

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

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

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

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


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

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

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


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

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

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

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

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

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

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


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

}

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

}

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

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

}

/*  Flat Button styles  */

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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


/* Responsive Js Breakpoint Css */

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

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


																
											.fl-node-616edad4687ae > .fl-col-content.fl-node-content {
							-webkit-box-shadow: 0px 44px 100px 0px rgba(80, 96, 119, 0.3);
							-moz-box-shadow: 0px 44px 100px 0px rgba(80, 96, 119, 0.3);
							-o-box-shadow: 0px 44px 100px 0px rgba(80, 96, 119, 0.3);
							box-shadow: 0px 44px 100px 0px rgba(80, 96, 119, 0.3);
													}
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																														
					
					
					
																														
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																							
					
					
					
																
					
					
					
																							
					
					
					
																
					
					
					
																
					
					
					
																			.fl-node-616edad4687b8 .pp-content-grid-post {
  font-size: 14px;
}
.fl-node-616edad4687b8 .pp-content-grid-post-image {
  background-size: cover !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center !important;
  background-repeat: none !important;
}
.fl-node-616edad4687b8 .pp-content-grid-post-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(48.02deg,rgba(22,38,61,0.59) 28.5%,rgba(75,119,183,0.11) 83.88%);
  z-index: 1;
}
.fl-node-616edad4687b8 .pp-content-grid-post-text {
  padding: 20px;
  display: flex;
  align-items: flex-end;
  padding-left: 10px;
}
.fl-node-616edad4687b8 .pp-content-post {
  display: flex;
  align-items: flex-end;
  min-height: 300px;
}
.fl-node-616edad4687b8 .pp-content-grid-post-title {
  font-size: 32px;
  line-height: 32px;
  margin: 0;
  padding: 0;
  z-index: 2;
}
.fl-node-616edad4687b8 .pp-content-grid-post-title a {
  color: #fff;
}
.fl-node-616edad4687b8 .pp-content-grid-post-meta {
  padding: 0;
}
.fl-node-616edad4687b8 .pp-content-grid-post-meta a {
  text-decoration: none;
}
.fl-node-616edad4687b8 .pp-content-grid-post-meta,
.fl-node-616edad4687b8 .pp-content-grid-post-meta a {
  color: #888;
  font-size: 12px;
}
.fl-node-616edad4687b8 .pp-content-grid-post-meta a:hover {
  color: #000;
}
.fl-node-616edad4687b8 .pp-content-grid-separator {
  min-height: 2px;
  width: 60px;
  background: #000;
  margin-top: 10px;
  margin-bottom: 20px;
}
.fl-node-616edad4687b8 .pp-content-grid-post-more-link {
  position: absolute;
  top: 10px;
  right: 20px;
  background: #4E8AE0;
  border-radius: 50%;
}
.fl-node-616edad4687b8 .pp-content-grid-post-more-link a {
  color: #fff;
  padding: 6px 13px;
  display: block;
  font-size: 25px;
  z-index: 5;
}
.fl-node-616edad4687b8 .content-area {
  z-index: 3;
}
.fl-node-616edad4687b8 .locationTerm {
  display: inline-block;
  background: #4E8AE0;
  padding: 11px 16px;
  margin-top: 20px;
  font-family: Barlow;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.fl-node-616edad4687b8 .locationTerm .locationBadge {
  color: #f2f2f2;
}
.fl-node-616edad4687b8 .locationTerm span:nth-of-type(1) {
  color: #ADD6FF;
}

                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .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-616edad4687ea .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-616edad4687b1 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-616edad4687d8 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-616edad4687cd .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-616edad4687bd .fl-row-content {
				min-width: 0px;
			}
		