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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 600px) {
	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: 1200px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }




 .fl-node-600a1d0a6f862 > .fl-row-content-wrap {
	padding-top:150px;
}





 .fl-node-600a1cfd907d8 > .fl-row-content-wrap {
	margin-top:0px;
}
 .fl-node-600a1cfd907d8 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}





 .fl-node-600a1f0e7c64f > .fl-row-content-wrap {
	padding-top:150px;
}





.fl-node-6010bb75ea43a > .fl-row-content-wrap {
	background-color: #000000;
	box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.1);
}
.fl-node-6010bb75ea43a .fl-row-content {
	max-width: 1480px;
}
 .fl-node-6010bb75ea43a > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-600a218a9e2d2 > .fl-row-content-wrap:after {
	background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.74) 100%);
}
 .fl-node-600a218a9e2d2 > .fl-row-content-wrap {
	padding-bottom:60px;
}





.fl-node-600a235174478 > .fl-row-content-wrap {
	background-image: linear-gradient(180deg, #4c4c4c 0%, #000000 100%);
}
 .fl-node-600a235174478 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}





 .fl-node-6010bc8fd5a8b > .fl-row-content-wrap {
	padding-top:150px;
}





.fl-node-6010bc88c86f8 > .fl-row-content-wrap {
	background-color: #000000;
	box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.1);
}
.fl-node-6010bc88c86f8 .fl-row-content {
	max-width: 1480px;
}
 .fl-node-6010bc88c86f8 > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-6010bc72c8919 > .fl-row-content-wrap:after {
	background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.74) 100%);
}
 .fl-node-6010bc72c8919 > .fl-row-content-wrap {
	padding-bottom:60px;
}





.fl-node-60233d51193f5 > .fl-row-content-wrap {
	background-image: linear-gradient(180deg, #4c4c4c 0%, #000000 100%);
}
 .fl-node-60233d51193f5 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}





 .fl-node-6018cf62a3750 > .fl-row-content-wrap {
	padding-top:150px;
}





.fl-node-6010c8f844c4d > .fl-row-content-wrap {
	background-color: #000000;
	box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.1);
}
.fl-node-6010c8f844c4d .fl-row-content {
	max-width: 1480px;
}
 .fl-node-6010c8f844c4d > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-6010c878d9928 > .fl-row-content-wrap:after {
	background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.74) 100%);
}
.fl-node-6010c878d9928 .fl-bg-video {
	background-image: url(https://adviceco.com.au/wp-content/uploads/2021/01/qgdwtzg3mo0-scaled.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
 .fl-node-6010c878d9928 > .fl-row-content-wrap {
	padding-bottom:60px;
}





.fl-node-60233d06858e1 > .fl-row-content-wrap {
	background-image: linear-gradient(180deg, #4c4c4c 0%, #000000 100%);
}
 .fl-node-60233d06858e1 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}





 .fl-node-6010c87069816 > .fl-row-content-wrap {
	padding-top:150px;
}





.fl-node-6018cf5b2ba9a > .fl-row-content-wrap {
	background-color: #000000;
	box-shadow: 0px 5px 6px 0px rgba(0,0,0,0.1);
}
.fl-node-6018cf5b2ba9a .fl-row-content {
	max-width: 1480px;
}
 .fl-node-6018cf5b2ba9a > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-6018cf6caa53a > .fl-row-content-wrap:after {
	background-image: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(0,0,0,0.74) 100%);
}
.fl-node-6018cf6caa53a > .fl-row-content-wrap {
	background-image: url(https://adviceco.com.au/wp-content/uploads/2021/03/josh-riemer-flRN6KYpl1A-unsplash-scaled.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-6018cf6caa53a .fl-bg-video {
	background-image: url(https://adviceco.com.au/wp-content/uploads/2021/01/qgdwtzg3mo0-scaled.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
 .fl-node-6018cf6caa53a > .fl-row-content-wrap {
	padding-bottom:60px;
}





.fl-node-60233d825dfdc > .fl-row-content-wrap {
	background-image: linear-gradient(180deg, #4c4c4c 0%, #000000 100%);
}
 .fl-node-60233d825dfdc > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-600a1cfd907c7 {
	width: 70%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-600a1cfd907c7 {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 600px) {
	.fl-builder-content .fl-node-600a1cfd907c7 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-600a1cfd907d1 {
	width: 62.61%;
}
 .fl-node-600a1cfd907d1 > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-600a1d0a76dab {
	width: 50%;
}




.fl-node-600a1f0e7c742 {
	width: 50%;
}




.fl-node-600a218ab05e9 {
	width: 73%;
}
 .fl-node-600a218ab05e9 > .fl-col-content {
	padding-right:80px;
}




.fl-node-600a222c39db1 {
	width: 25%;
}




.fl-node-600a2643aa328 {
	width: 100%;
}
 .fl-node-600a2643aa328 > .fl-col-content {
	margin-top:-60px;
}




.fl-node-600a26481b056 {
	width: 33%;
}
.fl-node-600a26481b056 > .fl-col-content {
	background-color: #000000;
}
 .fl-node-600a26481b056 > .fl-col-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-600a26481b056 > .fl-col-content {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}




.fl-node-6010bb75ea430 {
	width: 15%;
}




.fl-node-6010bc72c8d3c {
	width: 73%;
}
 .fl-node-6010bc72c8d3c > .fl-col-content {
	padding-right:80px;
}




.fl-node-6010bc72c8d41 {
	width: 25%;
}




.fl-node-6010bc88c8918 {
	width: 15%;
}




.fl-node-6010bc8fd5bb0 {
	width: 50%;
}




.fl-node-6010c87069945 {
	width: 50%;
}




.fl-node-6010c878d9d21 {
	width: 60%;
}
 .fl-node-6010c878d9d21 > .fl-col-content {
	padding-right:80px;
}




.fl-node-6010c878d9d25 {
	width: 25%;
}




.fl-node-6010c8f844e90 {
	width: 15%;
}




.fl-node-6018cf5b2bcd4 {
	width: 15%;
}




.fl-node-6018cf62a38ad {
	width: 50%;
}




.fl-node-6018cf6caaa08 {
	width: 60%;
}
 .fl-node-6018cf6caaa08 > .fl-col-content {
	padding-right:80px;
}




.fl-node-6018cf6caaa0c {
	width: 25%;
}




.fl-node-60233d0685d04 {
	width: 100%;
}
 .fl-node-60233d0685d04 > .fl-col-content {
	margin-top:-60px;
}




.fl-node-60233d0685d07 {
	width: 33%;
}
.fl-node-60233d0685d07 > .fl-col-content {
	background-color: #000000;
}
 .fl-node-60233d0685d07 > .fl-col-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-60233d0685d07 > .fl-col-content {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}




.fl-node-60233d51197fe {
	width: 100%;
}
 .fl-node-60233d51197fe > .fl-col-content {
	margin-top:-60px;
}




.fl-node-60233d5119801 {
	width: 33%;
}
.fl-node-60233d5119801 > .fl-col-content {
	background-color: #000000;
}
 .fl-node-60233d5119801 > .fl-col-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-60233d5119801 > .fl-col-content {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}




.fl-node-60233d825e3dc {
	width: 100%;
}
 .fl-node-60233d825e3dc > .fl-col-content {
	margin-top:-60px;
}




.fl-node-60233d825e3de {
	width: 33%;
}
.fl-node-60233d825e3de > .fl-col-content {
	background-color: #000000;
}
 .fl-node-60233d825e3de > .fl-col-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-60233d825e3de > .fl-col-content {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}




.fl-node-600a1cfd907c9 {
	width: 30%;
}
.fl-node-600a1cfd907c9 > .fl-col-content {
	background-color: #191919;
}
.fl-builder-content .fl-node-600a1cfd907c9 > .fl-col-content {
	min-height: 900px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-600a1cfd907c9 {
		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-600a1cfd907c9 > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-600a1cfd907c9 > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-600a1cfd907d2 {
	width: 37.39%;
}
 .fl-node-600a1cfd907d2 > .fl-col-content {
	margin-left:-15px;
}




.fl-node-600a1d0a76db1 {
	width: 50%;
}




.fl-node-600a1f0e7c744 {
	width: 50%;
}




.fl-node-600a218ab05ee {
	width: 27%;
}
.fl-node-600a218ab05ee > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	box-shadow: 0px 5px 10px 0px rgba(76,76,76,0.2);
}
 .fl-node-600a218ab05ee > .fl-col-content {
	margin-top:50px;
}
 .fl-node-600a218ab05ee > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-600a222c39db5 {
	width: 25%;
}




.fl-node-600a26481b05a {
	width: 67%;
}
.fl-node-600a26481b05a > .fl-col-content {
	background-color: #000000;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-left-width: 1px;
}
 .fl-node-600a26481b05a > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:10px;
}
 .fl-node-600a26481b05a > .fl-col-content {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}




.fl-node-6010bb75ea431 {
	width: 39%;
}




.fl-node-6010bc72c8d43 {
	width: 25%;
}




.fl-node-6010bc88c891a {
	width: 39%;
}




.fl-node-6010bc8fd5bb2 {
	width: 50%;
}




.fl-node-6010c87069947 {
	width: 50%;
}




.fl-node-6010c878d9d27 {
	width: 25%;
}




.fl-node-6010c878d9d2e {
	width: 40%;
}
.fl-node-6010c878d9d2e > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	box-shadow: 0px 5px 10px 0px rgba(76,76,76,0.2);
}
 .fl-node-6010c878d9d2e > .fl-col-content {
	margin-top:20px;
}
 .fl-node-6010c878d9d2e > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-6010c8f844e93 {
	width: 39%;
}




.fl-node-6018cf5b2bcd6 {
	width: 45.26%;
}




.fl-node-6018cf62a38af {
	width: 50%;
}




.fl-node-6018cf6caaa0f {
	width: 25%;
}




.fl-node-6018cf6caaa15 {
	width: 40%;
}
.fl-node-6018cf6caaa15 > .fl-col-content {
	background-color: rgba(255,255,255,0.88);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	box-shadow: 0px 5px 10px 0px rgba(76,76,76,0.2);
}
 .fl-node-6018cf6caaa15 > .fl-col-content {
	margin-top:70px;
}
 .fl-node-6018cf6caaa15 > .fl-col-content {
	padding-top:50px;
	padding-right:20px;
	padding-bottom:50px;
	padding-left:20px;
}




.fl-node-60233d0685d0c {
	width: 67%;
}
.fl-node-60233d0685d0c > .fl-col-content {
	background-color: #000000;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-left-width: 1px;
}
 .fl-node-60233d0685d0c > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:10px;
}
 .fl-node-60233d0685d0c > .fl-col-content {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}




.fl-node-60233d5119806 {
	width: 67%;
}
.fl-node-60233d5119806 > .fl-col-content {
	background-color: #000000;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-left-width: 1px;
}
 .fl-node-60233d5119806 > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:10px;
}
 .fl-node-60233d5119806 > .fl-col-content {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}




.fl-node-60233d825e3e8 {
	width: 67%;
}
.fl-node-60233d825e3e8 > .fl-col-content {
	background-color: #000000;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-left-width: 1px;
}
 .fl-node-60233d825e3e8 > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:10px;
}
 .fl-node-60233d825e3e8 > .fl-col-content {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:40px;
}




.fl-node-602343fdb780d {
	width: 27%;
}
.fl-node-602343fdb780d > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	box-shadow: 0px 5px 10px 0px rgba(76,76,76,0.2);
}
 .fl-node-602343fdb780d > .fl-col-content {
	margin-top:50px;
}
 .fl-node-602343fdb780d > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-600a222c39db7 {
	width: 25%;
}




.fl-node-6010bb75ea432 {
	width: 46%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-6010bb75ea432 {
		width: 26.45% !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: 600px) {
	.fl-builder-content .fl-node-6010bb75ea432 {
		width: 26.45% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-6010bc72c8d45 {
	width: 25%;
}




.fl-node-6010bc88c891d {
	width: 46%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-6010bc88c891d {
		width: 26.45% !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: 600px) {
	.fl-builder-content .fl-node-6010bc88c891d {
		width: 26.45% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-6010c878d9d29 {
	width: 25%;
}




.fl-node-6010c8f844e95 {
	width: 46%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-6010c8f844e95 {
		width: 26.45% !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: 600px) {
	.fl-builder-content .fl-node-6010c8f844e95 {
		width: 26.45% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-6018cf5b2bcd9 {
	width: 39.74%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-6018cf5b2bcd9 {
		width: 26.45% !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: 600px) {
	.fl-builder-content .fl-node-6018cf5b2bcd9 {
		width: 26.45% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-6018cf6caaa11 {
	width: 25%;
}




.fl-node-600a222c39db9 {
	width: 25%;
}




.fl-node-6010bc72c8d4b {
	width: 25%;
}




.fl-node-6010c878d9d2c {
	width: 25%;
}




.fl-node-6018cf6caaa13 {
	width: 25%;
}
/* Wrappers */
body.rtl .fl-module-content-slider .bx-viewport {
	direction: ltr;
}
.fl-module-content-slider .bx-wrapper {
	margin: 0 auto 40px;
}
.fl-content-slider {
	position: relative;
}
.fl-content-slider .fl-slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	visibility: hidden;
}
.fl-content-slider-wrapper .fl-slide:first-child,
.fl-content-slider-loaded .fl-slide {
	position: relative;
	visibility: visible;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Buttons */
.fl-module-content-slider .fl-slide a.fl-button {
	padding: 10px 20px;
}
 }.fl-node-600a1cfd907ca .fl-content-slider-wrapper {
	opacity: 0;
}
.fl-node-600a1cfd907ca .fl-content-slider,
.fl-node-600a1cfd907ca .fl-slide {
	min-height: 900px;
}
.fl-node-600a1cfd907ca .fl-slide-foreground {
	margin: 0 auto;
	max-width: 1200px;
}
.fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-bg-photo{   background-image: url("https://adviceco.com.au/wp-content/uploads/2020/11/8-e1606091809690.png");}.fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-photo-wrap { width: 40%; }.fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-photo { margin-right: 0px; margin-top: 0px; margin-bottom: 0px; }.fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-content { margin-right: 0px; margin-left: 0px; margin-top: 0px; margin-bottom: 0px; }@media (max-width: 600px) { .fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-content { background-color: #333333; } }.fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-bg-photo{   background-image: url("https://adviceco.com.au/wp-content/uploads/2020/10/9-e1603170577695.png");}.fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-photo-wrap { width: 40%; }.fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-photo { margin-right: 0px; margin-top: 0px; margin-bottom: 0px; }.fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-content { margin-right: 0px; margin-left: 0px; margin-top: 0px; margin-bottom: 0px; }@media (max-width: 600px) { .fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-content { background-color: #333333; } }.fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-bg-photo{   background-image: url("https://adviceco.com.au/wp-content/uploads/2020/10/11-e1603170790745.png");}.fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-photo-wrap { width: 40%; }.fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-photo { margin-right: 0px; margin-top: 0px; margin-bottom: 0px; }.fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-content { margin-right: 0px; margin-left: 0px; margin-top: 0px; margin-bottom: 0px; }@media (max-width: 600px) { .fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-content { background-color: #333333; } }.fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-bg-photo{   background-image: url("https://adviceco.com.au/wp-content/uploads/2020/05/Coronavirus-slide-v2.jpg");}.fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-content { margin-right: 0px; margin-left: 0px; margin-top: 0px; margin-bottom: 0px; }@media (max-width: 600px) { .fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-content { background-color: #333333; } }.fl-node-600a1cfd907ca .fl-slide .fl-slide-title, .fl-node-600a1cfd907ca .fl-slide .fl-slide-text, .fl-node-600a1cfd907ca .fl-slide .fl-slide-text * {
	color: #ffffff;
}
.fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-builder-content .fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-title {
	color: #ffffff;
	font-size: 48px;
}
.fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-text, .fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-text * {
	color: #ffffff;
}
.fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-builder-content .fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-title {
	color: #ffffff;
	font-size: 48px;
}
.fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-text, .fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-text * {
	color: #ffffff;
}
.fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-builder-content .fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-title {
	color: #ffffff;
	font-size: 48px;
}
.fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-text, .fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-text * {
	color: #ffffff;
}
.fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-bg-photo:after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-builder-content .fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-title {
	color: #ffffff;
	font-size: 48px;
}
.fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-text, .fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-text * {
	color: #ffffff;
}
@media(max-width: 600px) {
	.fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-title {
		color: #ffffff;
	}
	.fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-text, .fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-text * {
		color: #ffffff;
	}
	.fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-title {
		color: #ffffff;
	}
	.fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-text, .fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-text * {
		color: #ffffff;
	}
	.fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-title {
		color: #ffffff;
	}
	.fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-text, .fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-text * {
		color: #ffffff;
	}
	.fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-title {
		color: #ffffff;
	}
	.fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-text, .fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-text * {
		color: #ffffff;
	}
}
@media(min-width:600px) {
	.fl-node-600a1cfd907ca .fl-slide-0 .fl-slide-content-wrap {
		width: 60%;
	}
	.fl-node-600a1cfd907ca .fl-slide-1 .fl-slide-content-wrap {
		width: 60%;
	}
	.fl-node-600a1cfd907ca .fl-slide-2 .fl-slide-content-wrap {
		width: 60%;
	}
	.fl-node-600a1cfd907ca .fl-slide-3 .fl-slide-content-wrap {
		width: 60%;
	}
}
 .fl-node-600a1cfd907ca > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.bb-heading-input.input-small {
	width: 46px !important;
}

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

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

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

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

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

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

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

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

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

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

.pp-heading-content .pp-heading.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: 600px) { /**
 * 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-600a1cfd907cb .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-600a1cfd907cb .pp-heading-content {
	text-align: left;
}

div.fl-node-600a1cfd907cb .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-600a1cfd907cb .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-600a1cfd907cb .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-600a1cfd907cb .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-600a1cfd907cb .pp-heading-content .pp-sub-heading,
div.fl-node-600a1cfd907cb .pp-heading-content .pp-sub-heading p {
		color: #999999;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-600a1cfd907cb .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-600a1cfd907cb .pp-heading-content {
				text-align: ;
			}
	div.fl-node-600a1cfd907cb .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-600a1cfd907cb .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-600a1cfd907cb .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}
div.fl-node-600a1cfd907cb div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-600a1cfd907cb div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-600a1cfd907cb div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-600a1cfd907cb div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-600a1cfd907cb .pp-heading-content .pp-sub-heading, div.fl-node-600a1cfd907cb .pp-heading-content .pp-sub-heading p {
	font-size: 16px;
	line-height: 1.8;
}
div.fl-node-600a1cfd907cb .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-600a1cfd907cb .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-600a1cfd907cb .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-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: 600px) { /* 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;
} }

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


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

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

.fl-node-600a1cfd907d3 .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-600a1cfd907d3 .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-600a1cfd907d3 .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

.fl-node-600a1cfd907d3 .pp-content-post .pp-post-title {
				margin-top: 0px;
				margin-bottom: 0px;
	}

.fl-node-600a1cfd907d3 .pp-content-post .pp-post-title,
.fl-node-600a1cfd907d3 .pp-content-post .pp-post-title a {
			color: #ffffff;
	}
.fl-node-600a1cfd907d3 .pp-content-post:hover .pp-post-title,
.fl-node-600a1cfd907d3 .pp-content-post:hover .pp-post-title a {
	}


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

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

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



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

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


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

.fl-node-600a1cfd907d3 .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-600a1cfd907d3 .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-600a1cfd907d3 .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

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


.fl-node-600a1cfd907d3 .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-600a1cfd907d3 .pp-content-post:hover .pp-post-meta {
	}
.fl-node-600a1cfd907d3 .pp-content-post .pp-post-meta span {
			background-color: #333;
	}
.fl-node-600a1cfd907d3 .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-600a1cfd907d3 .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

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

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

.fl-node-600a1cfd907d3 .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-600a1cfd907d3 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-600a1cfd907d3 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-600a1cfd907d3 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	background: #000000;
    	opacity: 1;
    box-shadow: none;
}


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

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



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

.fl-node-600a1cfd907d3 .pp-content-post:hover {
	}

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

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


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

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


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

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


.fl-node-600a1cfd907d3 .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

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

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

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

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



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

.fl-node-600a1cfd907d3.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-600a1cfd907d3.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.fl-node-600a1cfd907d3 .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-600a1cfd907d3 .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-600a1cfd907d3 .pp-content-grid-pagination li a.page-numbers, .fl-node-600a1cfd907d3 .pp-content-grid-pagination li span.page-numbers, .fl-node-600a1cfd907d3 .pp-content-grid-load-more a {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 14px;
}
.fl-node-600a1cfd907d3 .pp-content-post .pp-post-title, .fl-node-600a1cfd907d3 .pp-content-post .pp-post-title a {
	font-size: 16px;
	line-height: 1.2;
}
.fl-node-600a1cfd907d3 .pp-content-post .pp-more-link-button, .fl-node-600a1cfd907d3 .pp-content-post .pp-add-to-cart a, .fl-node-600a1cfd907d3 .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-600a1cfd907d3 .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-600a1cfd907d3 .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-600a1cfd907d3 .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-600a1cfd907d3 .pp-content-post {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-600a1cfd907d3 .pp-content-post .pp-content-body {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-600a1cfd907d3 .pp-content-post.pp-grid-style-9 {
	height: 250px;
}
 .fl-node-600a1cfd907d3 > .fl-module-content {
	margin-top:0px;
}

div.fl-node-600a1cfd907d4 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-600a1cfd907d4 .pp-heading-content {
	text-align: center;
}

div.fl-node-600a1cfd907d4 .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-600a1cfd907d4 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-600a1cfd907d4 .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-600a1cfd907d4 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-600a1cfd907d4 .pp-heading-content .pp-sub-heading,
div.fl-node-600a1cfd907d4 .pp-heading-content .pp-sub-heading p {
		color: #999999;
	}

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

div.fl-node-600a1cfd907d4 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

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

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

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

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

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

div.fl-node-600a1cfd907d4 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-600a1cfd907d4 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-600a1cfd907d4 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-600a1cfd907d4 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-600a1cfd907d4 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-600a1cfd907d4 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}
div.fl-node-600a1cfd907d4 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-600a1cfd907d4 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-600a1cfd907d4 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-600a1cfd907d4 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-600a1cfd907d4 .pp-heading-content .pp-sub-heading, div.fl-node-600a1cfd907d4 .pp-heading-content .pp-sub-heading p {
	font-size: 16px;
	line-height: 1.8;
}
div.fl-node-600a1cfd907d4 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-600a1cfd907d4 .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-600a1cfd907d4 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-600a1cfd907d4 > .fl-module-content {
	margin-top:40px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media (max-width: 600px) { .fl-node-600a1cfd907d4 > .fl-module-content { margin-top:20px; } }
div.fl-node-600a1d257145c .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-600a1d257145c .pp-heading-content {
	text-align: center;
}

div.fl-node-600a1d257145c .pp-heading-content .pp-heading {
		}

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


div.fl-node-600a1d257145c .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
					display: inline;
	}
div.fl-node-600a1d257145c .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-600a1d257145c .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					display: inline;
		margin-left: 0px;
}
div.fl-node-600a1d257145c .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-600a1d257145c .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-600a1d257145c .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-600a1d257145c .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-600a1d257145c .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-600a1d257145c .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-600a1d257145c .pp-heading-content .pp-sub-heading,
div.fl-node-600a1d257145c .pp-heading-content .pp-sub-heading p {
		color: #4C4C4C;
	}

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

div.fl-node-600a1d257145c .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

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

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

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

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

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

div.fl-node-600a1d257145c .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-600a1d257145c .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-600a1d257145c .pp-heading-content {
				text-align: ;
			}
	div.fl-node-600a1d257145c .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-600a1d257145c .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-600a1d257145c .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-600a1d257145c .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
}
div.fl-node-600a1d257145c div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-600a1d257145c div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-600a1d257145c div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-600a1d257145c div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-600a1d257145c .pp-heading-content .pp-sub-heading, div.fl-node-600a1d257145c .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-600a1d257145c .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-600a1d257145c .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-600a1d257145c .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-600a1d257145c > .fl-module-content {
	margin-bottom:50px;
}
@media (max-width: 600px) { .fl-node-600a1d257145c > .fl-module-content { margin-bottom:20px; } }
div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-600a1f0e7c743 .pp-heading-content {
	text-align: center;
}

div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading {
		}

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


div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
					display: inline;
	}
div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					display: inline;
		margin-left: 0px;
}
div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-600a1f0e7c743 .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-600a1f0e7c743 .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-600a1f0e7c743 .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-600a1f0e7c743 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-600a1f0e7c743 .pp-heading-content .pp-sub-heading,
div.fl-node-600a1f0e7c743 .pp-heading-content .pp-sub-heading p {
		color: #4C4C4C;
	}

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

div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

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

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

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

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

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

div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-600a1f0e7c743 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
}
div.fl-node-600a1f0e7c743 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-600a1f0e7c743 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-600a1f0e7c743 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-600a1f0e7c743 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-600a1f0e7c743 .pp-heading-content .pp-sub-heading, div.fl-node-600a1f0e7c743 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-600a1f0e7c743 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-600a1f0e7c743 .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-600a1f0e7c743 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-600a1f0e7c743 > .fl-module-content {
	margin-bottom:50px;
}
@media (max-width: 600px) { .fl-node-600a1f0e7c743 > .fl-module-content { margin-bottom:20px; } }
div.fl-node-600a1f16ea54f .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-600a1f16ea54f .pp-heading-content {
	text-align: left;
}

div.fl-node-600a1f16ea54f .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-600a1f16ea54f .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-600a1f16ea54f .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-600a1f16ea54f .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-600a1f16ea54f .pp-heading-content .pp-sub-heading,
div.fl-node-600a1f16ea54f .pp-heading-content .pp-sub-heading p {
		color: #999999;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-600a1f16ea54f .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-600a1f16ea54f .pp-heading-content {
				text-align: ;
			}
	div.fl-node-600a1f16ea54f .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-600a1f16ea54f .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-600a1f16ea54f .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}
div.fl-node-600a1f16ea54f div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-600a1f16ea54f div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-600a1f16ea54f div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-600a1f16ea54f div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-600a1f16ea54f .pp-heading-content .pp-sub-heading, div.fl-node-600a1f16ea54f .pp-heading-content .pp-sub-heading p {
	font-size: 16px;
	line-height: 1.8;
}
div.fl-node-600a1f16ea54f .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-600a1f16ea54f .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-600a1f16ea54f .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

div.fl-node-600a225908c81 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-600a225908c81 .pp-heading-content {
	text-align: left;
}

div.fl-node-600a225908c81 .pp-heading-content .pp-heading {
		}

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


div.fl-node-600a225908c81 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
				}
div.fl-node-600a225908c81 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-600a225908c81 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					margin-left: 0px;
}
div.fl-node-600a225908c81 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-600a225908c81 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-600a225908c81 .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-600a225908c81 .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-600a225908c81 .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-600a225908c81 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-600a225908c81 .pp-heading-content .pp-sub-heading,
div.fl-node-600a225908c81 .pp-heading-content .pp-sub-heading p {
		color: #4C4C4C;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-600a225908c81 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-600a225908c81 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-600a225908c81 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-600a225908c81 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-600a225908c81 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-600a225908c81 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
	text-shadow: 1px 1px 2px #4c4c4c;
}
div.fl-node-600a225908c81 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-600a225908c81 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-600a225908c81 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-600a225908c81 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-600a225908c81 .pp-heading-content .pp-sub-heading, div.fl-node-600a225908c81 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-600a225908c81 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-600a225908c81 .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-600a225908c81 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-600a225908c81 > .fl-module-content {
	margin-top:40px;
	margin-bottom:60px;
}
@media (max-width: 600px) { .fl-node-600a225908c81 > .fl-module-content { margin-top:20px;margin-bottom:20px; } }/* Clearfix */
.pp-infobox:before,
.pp-infobox:after {
	content: " ";
	display: table;
}

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

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

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

/* Layouts */

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

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

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

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

/* Layout 4 */
.pp-infobox-wrap .layout-4 {
	text-align: right;
}
.pp-infobox-wrap .layout-4-wrapper {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
	flex-shrink: 1;
}
.pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.pp-infobox-wrap .layout-4 .pp-heading-wrapper {
	flex: 1;
}
@media (max-width: 600px) { /**
 * 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-600a22bc29c62,
.fl-col-group-equal-height .fl-node-600a22bc29c62 .fl-module-content,
.fl-col-group-equal-height .fl-node-600a22bc29c62 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-600a22bc29c62 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-600a22bc29c62 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-600a22bc29c62 .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-600a22bc29c62.fl-visible-large,
.fl-col-group-equal-height .fl-node-600a22bc29c62.fl-visible-medium,
.fl-col-group-equal-height .fl-node-600a22bc29c62.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-600a22bc29c62.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-600a22bc29c62 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-600a22bc29c62 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-600a22bc29c62 .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-600a22bc29c62.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22bc29c62.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-600a22bc29c62.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22bc29c62.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22bc29c62.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-600a22bc29c62.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22bc29c62.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22bc29c62.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22bc29c62.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-600a22bc29c62 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-600a22bc29c62 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-600a22bc29c62 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-600a22bc29c62 .pp-infobox-description {
		color: #999999;
			}
	.fl-node-600a22bc29c62 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-600a22bc29c62 .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-600a22bc29c62 .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-600a22bc29c62 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-600a22bc29c62 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-600a22bc29c62 .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-600a22bc29c62 .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-600a22bc29c62 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-600a22bc29c62 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-600a22bc29c62 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-600a22bc29c62 .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-600a22bc29c62 .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-600a22bc29c62 .pp-infobox-image img {
	width: 30px;
}
.fl-node-600a22bc29c62 .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-600a22bc29c62 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-600a22bc29c62 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
@media ( max-width: 992px ) {
 .fl-node-600a22bc29c62.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-600a22e322fcd,
.fl-col-group-equal-height .fl-node-600a22e322fcd .fl-module-content,
.fl-col-group-equal-height .fl-node-600a22e322fcd .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-600a22e322fcd .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-600a22e322fcd .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-600a22e322fcd .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-600a22e322fcd.fl-visible-large,
.fl-col-group-equal-height .fl-node-600a22e322fcd.fl-visible-medium,
.fl-col-group-equal-height .fl-node-600a22e322fcd.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-600a22e322fcd.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-600a22e322fcd .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-600a22e322fcd .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-600a22e322fcd .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-600a22e322fcd.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e322fcd.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-600a22e322fcd.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e322fcd.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e322fcd.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-600a22e322fcd.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e322fcd.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e322fcd.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e322fcd.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-600a22e322fcd .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-600a22e322fcd .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-600a22e322fcd .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-600a22e322fcd .pp-infobox-description {
		color: #999999;
			}
	.fl-node-600a22e322fcd .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-600a22e322fcd .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-600a22e322fcd .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-600a22e322fcd .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-600a22e322fcd .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-600a22e322fcd .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-600a22e322fcd .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-600a22e322fcd .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-600a22e322fcd .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-600a22e322fcd .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-600a22e322fcd .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-600a22e322fcd .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-600a22e322fcd .pp-infobox-image img {
	width: 30px;
}
.fl-node-600a22e322fcd .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-600a22e322fcd .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-600a22e322fcd .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
@media ( max-width: 992px ) {
 .fl-node-600a22e322fcd.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-600a22e569923,
.fl-col-group-equal-height .fl-node-600a22e569923 .fl-module-content,
.fl-col-group-equal-height .fl-node-600a22e569923 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-600a22e569923 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-600a22e569923 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-600a22e569923 .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-600a22e569923.fl-visible-large,
.fl-col-group-equal-height .fl-node-600a22e569923.fl-visible-medium,
.fl-col-group-equal-height .fl-node-600a22e569923.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-600a22e569923.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-600a22e569923 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-600a22e569923 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-600a22e569923 .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-600a22e569923.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e569923.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-600a22e569923.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e569923.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e569923.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-600a22e569923.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e569923.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e569923.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a22e569923.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-600a22e569923 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-600a22e569923 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-600a22e569923 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-600a22e569923 .pp-infobox-description {
		color: #999999;
			}
	.fl-node-600a22e569923 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-600a22e569923 .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-600a22e569923 .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-600a22e569923 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-600a22e569923 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-600a22e569923 .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-600a22e569923 .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-600a22e569923 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-600a22e569923 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-600a22e569923 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-600a22e569923 .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-600a22e569923 .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-600a22e569923 .pp-infobox-image img {
	width: 30px;
}
.fl-node-600a22e569923 .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-600a22e569923 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-600a22e569923 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
@media ( max-width: 992px ) {
 .fl-node-600a22e569923.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-600a230012b00,
.fl-col-group-equal-height .fl-node-600a230012b00 .fl-module-content,
.fl-col-group-equal-height .fl-node-600a230012b00 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-600a230012b00 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-600a230012b00 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-600a230012b00 .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-600a230012b00.fl-visible-large,
.fl-col-group-equal-height .fl-node-600a230012b00.fl-visible-medium,
.fl-col-group-equal-height .fl-node-600a230012b00.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-600a230012b00.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-600a230012b00 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-600a230012b00 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-600a230012b00 .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-600a230012b00.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a230012b00.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-600a230012b00.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a230012b00.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a230012b00.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-600a230012b00.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a230012b00.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a230012b00.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-600a230012b00.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-600a230012b00 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-600a230012b00 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-600a230012b00 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-600a230012b00 .pp-infobox-description {
		color: #999999;
			}
	.fl-node-600a230012b00 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-600a230012b00 .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-600a230012b00 .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-600a230012b00 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-600a230012b00 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-600a230012b00 .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-600a230012b00 .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-600a230012b00 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-600a230012b00 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-600a230012b00 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-600a230012b00 .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-600a230012b00 .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-600a230012b00 .pp-infobox-image img {
	width: 30px;
}
.fl-node-600a230012b00 .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-600a230012b00 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-600a230012b00 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
@media ( max-width: 992px ) {
 .fl-node-600a230012b00.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-600a2562b44ef .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-600a2562b44ef .pp-heading-content {
	text-align: left;
}

div.fl-node-600a2562b44ef .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-600a2562b44ef .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-600a2562b44ef .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-600a2562b44ef .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-600a2562b44ef .pp-heading-content .pp-sub-heading,
div.fl-node-600a2562b44ef .pp-heading-content .pp-sub-heading p {
		color: #999999;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-600a2562b44ef .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-600a2562b44ef .pp-heading-content {
				text-align: ;
			}
	div.fl-node-600a2562b44ef .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-600a2562b44ef .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-600a2562b44ef .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}
div.fl-node-600a2562b44ef div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-600a2562b44ef div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-600a2562b44ef div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-600a2562b44ef div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-600a2562b44ef .pp-heading-content .pp-sub-heading, div.fl-node-600a2562b44ef .pp-heading-content .pp-sub-heading p {
	font-size: 16px;
	line-height: 1.8;
}
div.fl-node-600a2562b44ef .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-600a2562b44ef .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-600a2562b44ef .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

div.fl-node-600a35f20c53a .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-600a35f20c53a .pp-heading-content {
	text-align: left;
}

div.fl-node-600a35f20c53a .pp-heading-content .pp-heading {
		}

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


div.fl-node-600a35f20c53a .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #4c4c4c;
								text-transform: lowercase;
				}
div.fl-node-600a35f20c53a .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-600a35f20c53a .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #4c4c4c;
					margin-left: 0px;
}
div.fl-node-600a35f20c53a .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-600a35f20c53a .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-600a35f20c53a .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title:before {
		width: 100%;
			border-style: solid;
			border-color: #e8e8e8;
			border-bottom-width: 1px;
	}

div.fl-node-600a35f20c53a .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title:after {
		width: 100%;
			border-style: solid;
			border-color: #e8e8e8;
			border-bottom-width: 1px;
	}

div.fl-node-600a35f20c53a .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100%;
			border-bottom-style: solid;
			border-bottom-color: #e8e8e8;
			border-bottom-width: 1px;
	}

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


div.fl-node-600a35f20c53a .pp-heading-content .pp-sub-heading,
div.fl-node-600a35f20c53a .pp-heading-content .pp-sub-heading p {
		color: #7d7d7d;
	}

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

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

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

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

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

div.fl-node-600a35f20c53a .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-600a35f20c53a .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100%;
			border-style: solid;
			border-color: #e8e8e8;
			border-bottom-width: 1px;
	}

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

div.fl-node-600a35f20c53a .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #e8e8e8;
			width: 100%;
			float: left;
	}

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-600a35f20c53a .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-600a35f20c53a .pp-heading-content {
				text-align: ;
			}
	div.fl-node-600a35f20c53a .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-600a35f20c53a .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-600a35f20c53a .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 28px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-600a35f20c53a .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
}
div.fl-node-600a35f20c53a div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-600a35f20c53a div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-600a35f20c53a div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-600a35f20c53a div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-600a35f20c53a .pp-heading-content .pp-sub-heading, div.fl-node-600a35f20c53a .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-600a35f20c53a .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-600a35f20c53a .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-600a35f20c53a .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-600a35f20c53a > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.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-6010bb75ea433 .pp-photo-container .pp-photo-content {
	}


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

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

.fl-node-6010bb75ea433 .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-6010bb75ea433 .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-6010bb75ea433 .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


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

@media only screen and (max-width: 992px) {
	    .fl-node-6010bb75ea433 .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: 600px) {
	.fl-node-6010bb75ea433 .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-6010bb75ea433 .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-6010bb75ea433 .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-6010bb75ea433 .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-6010bb75ea433 .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-6010bb75ea433 .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-6010bb75ea433 > .fl-module-content {
	margin-top:15px;
}
 .fl-node-6010bb75ea434 > .fl-module-content {
	margin-right:0px;
}
.pp-search-form {
	display: block;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.pp-screen-reader-text {
	position: absolute;
    top: -10000em;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/*---- Reset ---- */
.pp-search-form input[type="search"],
.pp-search-form button {
    margin: 0;
    border: 0;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    background: none;
    line-height: 1;
    min-width: 0;
    font-size: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.pp-search-form button:hover {
	border: 0;
}

.pp-search-form input[type="search"]:focus,
.pp-search-form button:focus {
	outline: 0;
    color: inherit;
}
.pp-search-form input[type="search"]:focus {
	background: none;
	background-color: transparent;
	border: 0;
}

.pp-search-form input[type="search"] {
	padding: 10px;
}

.pp-search-form button {
    background-color: #aaa;
    font-size: 16px;
    color: #fff;
    border-radius: 0;
}
.pp-search-form button[type="submit"] {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.pp-search-form__input {
    flex-basis: 100%;
    color: #555;
	transition: color 0.2s;
}
.pp-search-form__input::-webkit-input-placeholder {
	color: inherit;
	font-family: inherit;
	opacity: 0.6;
}
.pp-search-form__input:-ms-input-placeholder {
	color: inherit;
	font-family: inherit;
	opacity: 0.6;
}
.pp-search-form__input::-moz-placeholder {
	color: inherit;
	font-family: inherit;
	opacity: 0.6;
}
.pp-search-form__input:-moz-placeholder {
	color: inherit;
	font-family: inherit;
	opacity: 0.6;
}
.pp-search-form__input::placeholder {
	color: inherit;
	font-family: inherit;
	opacity: 0.6;
}

.pp-search-form__container {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    overflow: hidden;
    border: 0 solid transparent;
    min-height: 50px;
}

.pp-search-form--style-minimal .pp-search-form__icon {
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: flex-end;
	color: #555;
}

.pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form__container:not(.pp-search-form--lightbox) {
	background: #eee;
}

.pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form__container:not(.pp-search-form--lightbox) {
	overflow: hidden;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
	transform: scale(0);
}
.pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form__container {
	-webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    padding: 0 15%;
    background-color: rgba(0, 0, 0, 0.8);
}

.pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form input[type="search"].pp-search-form__input {
	font-size: 30px;
    text-align: center;
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: #fff;
    line-height: 1.5;
	color: #fff;
	border-radius: 0;
}

.pp-search-form--style-full_screen .pp-search-form__toggle {
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
    color: #333;
}
.pp-search-form--style-full_screen .pp-search-form__toggle i {
    position: relative;
    display: block;
    border: solid 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    width: 33px;
    height: 33px;
    background-color: rgba(0, 0, 0, 0.05);
	border-radius: 3px;
}
.pp-search-form--style-full_screen .pp-search-form__toggle i:before {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 0.55em;
}

.pp-search-form__submit {
	color: #fff;
    -webkit-transition: color 0.2s, background 0.2s;
    -o-transition: color 0.2s, background 0.2s;
    transition: color 0.2s, background 0.2s;
}
.pp-search-form--button-type-text .pp-search-form__submit {
	-webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.pp-search-form--lightbox-close {
	color: #eaeaea;
	-webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
	opacity: 1;
	cursor: pointer;
	position: absolute;
	top: 30px;
    right: 30px;
	font-size: 25px;
	line-height: 1;
    padding: 5px;
    z-index: 2;
}
.pp-search-form--lightbox-close svg {
    stroke: #fff;
	stroke-width: 3px;
	width: 30px;
	height: 30px;
}.fl-node-6010bb75ea437 .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form__container:not(.pp-search-form--lightbox) {
			background-color: #000000;
	}

.fl-node-6010bb75ea437 .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form--focus .pp-search-form__container:not(.pp-search-form--lightbox) {
				border-color: #ffffff;
	}

.fl-node-6010bb75ea437 .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form__container {
	}

.fl-node-6010bb75ea437 .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form--focus input[type="search"].pp-search-form__input {
			border-color: #ffffff;
	}

.fl-node-6010bb75ea437 .pp-search-form__icon {
	padding-left: calc( 38px / 3 );
}

.fl-node-6010bb75ea437 .pp-search-form__input,
.fl-node-6010bb75ea437 .pp-search-form-wrap.pp-search-form--style-full_screen input[type="search"].pp-search-form__input {
			color: #ffffff;
	}

.fl-node-6010bb75ea437 .pp-search-form--focus input[type="search"].pp-search-form__input,
.fl-node-6010bb75ea437 .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form--focus input[type="search"].pp-search-form__input {
			color: #ffffff;
	}

.fl-node-6010bb75ea437 .pp-search-form__input::-webkit-input-placeholder {
	color: #ffffff;
}
.fl-node-6010bb75ea437 .pp-search-form__input:-ms-input-placeholder {
	color: #ffffff;
}
.fl-node-6010bb75ea437 .pp-search-form__input::-moz-placeholder {
	color: #ffffff;
}
.fl-node-6010bb75ea437 .pp-search-form__input:-moz-placeholder {
	color: #ffffff;
}
.fl-node-6010bb75ea437 .pp-search-form__input::placeholder {
	color: #ffffff;
}

.fl-node-6010bb75ea437 .pp-search-form--lightbox-close {
	color: #ffffff;
}
.fl-node-6010bb75ea437 .pp-search-form--lightbox-close svg {
	stroke: #ffffff;
}

.fl-node-6010bb75ea437 .pp-search-form__submit {
			background-color: #000000 !important;
				color: #ffffff !important;
	}

.fl-node-6010bb75ea437 .pp-search-form__submit:hover {
			background-color: #000000 !important;
				color: #ffffff !important;
	}

.fl-node-6010bb75ea437 .pp-search-form--style-full_screen .pp-search-form {
	text-align: center;	
}

.fl-node-6010bb75ea437 .pp-search-form__toggle i {
				font-size:  26px;
		width:  26px;
		height:  26px;
				color: #ffffff;
						}
.fl-node-6010bb75ea437 .pp-search-form__toggle:hover i {
		}
.fl-node-6010bb75ea437 .pp-search-form__toggle i:before {
	}.fl-node-6010bb75ea437 .pp-search-form__container {
	min-height: 38px;
}
.fl-node-6010bb75ea437 .pp-search-form--button-type-icon .pp-search-form__submit {
	font-size: 14px;
}
.fl-node-6010bb75ea437 input[type='search'].pp-search-form__input, .fl-node-6010bb75ea437 .pp-search-form--button-type-text .pp-search-form__submit {
	padding-left: calc( 38px / 3 );
	padding-right: calc( 38px / 3 );
}
.fl-node-6010bb75ea437 input[type='search'].pp-search-form__input {
	min-height: 50px;
}
.fl-node-6010bb75ea437 .pp-search-form__container:not(.pp-search-form--lightbox), .fl-node-6010bb75ea437 .pp-search-form-wrap.pp-search-form--style-full_screen input[type='search'].pp-search-form__input {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-node-6010bb75ea437 input[type='search'].pp-search-form__input, .fl-node-6010bb75ea437 .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form input[type='search'].pp-search-form__input {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
}
.fl-node-6010bb75ea437 .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form__input {
	min-height: 38px;
	max-height: 38px;
}
.fl-node-6010bb75ea437 .pp-search-form__submit {
	min-width: calc( 1 * 38px );
}
 .fl-node-6010bb75ea437 > .fl-module-content {
	margin-right:10px;
	margin-left:0px;
}

div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6010bc72c8d3d .pp-heading-content {
	text-align: left;
}

div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading {
		}

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


div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
				}
div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					margin-left: 0px;
}
div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-6010bc72c8d3d .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-6010bc72c8d3d .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-6010bc72c8d3d .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-6010bc72c8d3d .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-6010bc72c8d3d .pp-heading-content .pp-sub-heading,
div.fl-node-6010bc72c8d3d .pp-heading-content .pp-sub-heading p {
		color: #4C4C4C;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6010bc72c8d3d .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
	text-shadow: 1px 1px 2px #4c4c4c;
}
div.fl-node-6010bc72c8d3d div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-6010bc72c8d3d div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6010bc72c8d3d div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-6010bc72c8d3d div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6010bc72c8d3d .pp-heading-content .pp-sub-heading, div.fl-node-6010bc72c8d3d .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-6010bc72c8d3d .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6010bc72c8d3d .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-6010bc72c8d3d .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-6010bc72c8d3d > .fl-module-content {
	margin-top:40px;
	margin-bottom:60px;
}
@media (max-width: 600px) { .fl-node-6010bc72c8d3d > .fl-module-content { margin-top:20px;margin-bottom:20px; } }.fl-col-group-equal-height .fl-node-6010bc72c8d42,
.fl-col-group-equal-height .fl-node-6010bc72c8d42 .fl-module-content,
.fl-col-group-equal-height .fl-node-6010bc72c8d42 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6010bc72c8d42 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6010bc72c8d42 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6010bc72c8d42 .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-6010bc72c8d42.fl-visible-large,
.fl-col-group-equal-height .fl-node-6010bc72c8d42.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6010bc72c8d42.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6010bc72c8d42.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6010bc72c8d42 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6010bc72c8d42 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6010bc72c8d42 .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-6010bc72c8d42.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d42.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6010bc72c8d42.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d42.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d42.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6010bc72c8d42.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d42.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d42.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d42.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6010bc72c8d42 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6010bc72c8d42 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6010bc72c8d42 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6010bc72c8d42 .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6010bc72c8d42 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6010bc72c8d42 .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6010bc72c8d42 .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6010bc72c8d42 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6010bc72c8d42 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6010bc72c8d42 .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6010bc72c8d42 .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6010bc72c8d42 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6010bc72c8d42 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6010bc72c8d42 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6010bc72c8d42 .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6010bc72c8d42 .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6010bc72c8d42 .pp-infobox-image img {
	width: 30px;
}
.fl-node-6010bc72c8d42 .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-6010bc72c8d42 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6010bc72c8d42 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
@media ( max-width: 992px ) {
 .fl-node-6010bc72c8d42.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-6010bc72c8d44,
.fl-col-group-equal-height .fl-node-6010bc72c8d44 .fl-module-content,
.fl-col-group-equal-height .fl-node-6010bc72c8d44 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6010bc72c8d44 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6010bc72c8d44 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6010bc72c8d44 .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-6010bc72c8d44.fl-visible-large,
.fl-col-group-equal-height .fl-node-6010bc72c8d44.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6010bc72c8d44.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6010bc72c8d44.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6010bc72c8d44 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6010bc72c8d44 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6010bc72c8d44 .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-6010bc72c8d44.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d44.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6010bc72c8d44.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d44.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d44.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6010bc72c8d44.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d44.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d44.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d44.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6010bc72c8d44 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6010bc72c8d44 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6010bc72c8d44 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6010bc72c8d44 .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6010bc72c8d44 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6010bc72c8d44 .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6010bc72c8d44 .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6010bc72c8d44 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6010bc72c8d44 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6010bc72c8d44 .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6010bc72c8d44 .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6010bc72c8d44 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6010bc72c8d44 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6010bc72c8d44 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6010bc72c8d44 .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6010bc72c8d44 .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6010bc72c8d44 .pp-infobox-image img {
	width: 30px;
}
.fl-node-6010bc72c8d44 .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-6010bc72c8d44 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6010bc72c8d44 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
@media ( max-width: 992px ) {
 .fl-node-6010bc72c8d44.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-6010bc72c8d49,
.fl-col-group-equal-height .fl-node-6010bc72c8d49 .fl-module-content,
.fl-col-group-equal-height .fl-node-6010bc72c8d49 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6010bc72c8d49 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6010bc72c8d49 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6010bc72c8d49 .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-6010bc72c8d49.fl-visible-large,
.fl-col-group-equal-height .fl-node-6010bc72c8d49.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6010bc72c8d49.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6010bc72c8d49.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6010bc72c8d49 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6010bc72c8d49 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6010bc72c8d49 .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-6010bc72c8d49.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d49.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6010bc72c8d49.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d49.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d49.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6010bc72c8d49.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d49.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d49.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d49.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6010bc72c8d49 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6010bc72c8d49 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6010bc72c8d49 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6010bc72c8d49 .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6010bc72c8d49 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6010bc72c8d49 .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6010bc72c8d49 .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6010bc72c8d49 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6010bc72c8d49 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6010bc72c8d49 .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6010bc72c8d49 .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6010bc72c8d49 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6010bc72c8d49 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6010bc72c8d49 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6010bc72c8d49 .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6010bc72c8d49 .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6010bc72c8d49 .pp-infobox-image img {
	width: 30px;
}
.fl-node-6010bc72c8d49 .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-6010bc72c8d49 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6010bc72c8d49 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
@media ( max-width: 992px ) {
 .fl-node-6010bc72c8d49.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-6010bc72c8d4c,
.fl-col-group-equal-height .fl-node-6010bc72c8d4c .fl-module-content,
.fl-col-group-equal-height .fl-node-6010bc72c8d4c .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6010bc72c8d4c .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6010bc72c8d4c .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6010bc72c8d4c .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-6010bc72c8d4c.fl-visible-large,
.fl-col-group-equal-height .fl-node-6010bc72c8d4c.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6010bc72c8d4c.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6010bc72c8d4c.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6010bc72c8d4c .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6010bc72c8d4c .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6010bc72c8d4c .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-6010bc72c8d4c.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d4c.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6010bc72c8d4c.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d4c.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d4c.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6010bc72c8d4c.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d4c.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d4c.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010bc72c8d4c.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6010bc72c8d4c .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6010bc72c8d4c .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6010bc72c8d4c .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6010bc72c8d4c .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6010bc72c8d4c .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6010bc72c8d4c .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6010bc72c8d4c .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6010bc72c8d4c .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6010bc72c8d4c .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6010bc72c8d4c .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6010bc72c8d4c .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6010bc72c8d4c .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6010bc72c8d4c .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6010bc72c8d4c .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6010bc72c8d4c .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6010bc72c8d4c .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6010bc72c8d4c .pp-infobox-image img {
	width: 30px;
}
.fl-node-6010bc72c8d4c .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-6010bc72c8d4c .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6010bc72c8d4c .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
@media ( max-width: 992px ) {
 .fl-node-6010bc72c8d4c.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-node-6010bc88c8919 .pp-photo-container .pp-photo-content {
	}


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

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

.fl-node-6010bc88c8919 .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-6010bc88c8919 .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-6010bc88c8919 .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


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

@media only screen and (max-width: 992px) {
	    .fl-node-6010bc88c8919 .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: 600px) {
	.fl-node-6010bc88c8919 .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-6010bc88c8919 .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-6010bc88c8919 .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-6010bc88c8919 .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-6010bc88c8919 .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-6010bc88c8919 .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-6010bc88c8919 > .fl-module-content {
	margin-top:15px;
}
 .fl-node-6010bc88c891c > .fl-module-content {
	margin-right:0px;
}
.fl-node-6010bc88c891e .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form__container:not(.pp-search-form--lightbox) {
			background-color: #000000;
	}

.fl-node-6010bc88c891e .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form--focus .pp-search-form__container:not(.pp-search-form--lightbox) {
				border-color: #ffffff;
	}

.fl-node-6010bc88c891e .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form__container {
	}

.fl-node-6010bc88c891e .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form--focus input[type="search"].pp-search-form__input {
			border-color: #ffffff;
	}

.fl-node-6010bc88c891e .pp-search-form__icon {
	padding-left: calc( 38px / 3 );
}

.fl-node-6010bc88c891e .pp-search-form__input,
.fl-node-6010bc88c891e .pp-search-form-wrap.pp-search-form--style-full_screen input[type="search"].pp-search-form__input {
			color: #ffffff;
	}

.fl-node-6010bc88c891e .pp-search-form--focus input[type="search"].pp-search-form__input,
.fl-node-6010bc88c891e .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form--focus input[type="search"].pp-search-form__input {
			color: #ffffff;
	}

.fl-node-6010bc88c891e .pp-search-form__input::-webkit-input-placeholder {
	color: #ffffff;
}
.fl-node-6010bc88c891e .pp-search-form__input:-ms-input-placeholder {
	color: #ffffff;
}
.fl-node-6010bc88c891e .pp-search-form__input::-moz-placeholder {
	color: #ffffff;
}
.fl-node-6010bc88c891e .pp-search-form__input:-moz-placeholder {
	color: #ffffff;
}
.fl-node-6010bc88c891e .pp-search-form__input::placeholder {
	color: #ffffff;
}

.fl-node-6010bc88c891e .pp-search-form--lightbox-close {
	color: #ffffff;
}
.fl-node-6010bc88c891e .pp-search-form--lightbox-close svg {
	stroke: #ffffff;
}

.fl-node-6010bc88c891e .pp-search-form__submit {
			background-color: #000000 !important;
				color: #ffffff !important;
	}

.fl-node-6010bc88c891e .pp-search-form__submit:hover {
			background-color: #000000 !important;
				color: #ffffff !important;
	}

.fl-node-6010bc88c891e .pp-search-form--style-full_screen .pp-search-form {
	text-align: center;	
}

.fl-node-6010bc88c891e .pp-search-form__toggle i {
				font-size:  26px;
		width:  26px;
		height:  26px;
				color: #ffffff;
						}
.fl-node-6010bc88c891e .pp-search-form__toggle:hover i {
		}
.fl-node-6010bc88c891e .pp-search-form__toggle i:before {
	}.fl-node-6010bc88c891e .pp-search-form__container {
	min-height: 38px;
}
.fl-node-6010bc88c891e .pp-search-form--button-type-icon .pp-search-form__submit {
	font-size: 14px;
}
.fl-node-6010bc88c891e input[type='search'].pp-search-form__input, .fl-node-6010bc88c891e .pp-search-form--button-type-text .pp-search-form__submit {
	padding-left: calc( 38px / 3 );
	padding-right: calc( 38px / 3 );
}
.fl-node-6010bc88c891e input[type='search'].pp-search-form__input {
	min-height: 50px;
}
.fl-node-6010bc88c891e .pp-search-form__container:not(.pp-search-form--lightbox), .fl-node-6010bc88c891e .pp-search-form-wrap.pp-search-form--style-full_screen input[type='search'].pp-search-form__input {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-node-6010bc88c891e input[type='search'].pp-search-form__input, .fl-node-6010bc88c891e .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form input[type='search'].pp-search-form__input {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
}
.fl-node-6010bc88c891e .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form__input {
	min-height: 38px;
	max-height: 38px;
}
.fl-node-6010bc88c891e .pp-search-form__submit {
	min-width: calc( 1 * 38px );
}
 .fl-node-6010bc88c891e > .fl-module-content {
	margin-right:10px;
	margin-left:0px;
}

div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6010bc8fd5bb1 .pp-heading-content {
	text-align: center;
}

div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading {
		}

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


div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
					display: inline;
	}
div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					display: inline;
		margin-left: 0px;
}
div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-6010bc8fd5bb1 .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-6010bc8fd5bb1 .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-6010bc8fd5bb1 .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-6010bc8fd5bb1 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-sub-heading,
div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-sub-heading p {
		color: #4C4C4C;
	}

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

div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

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

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

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

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

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

div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6010bc8fd5bb1 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
}
div.fl-node-6010bc8fd5bb1 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-6010bc8fd5bb1 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6010bc8fd5bb1 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-6010bc8fd5bb1 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-sub-heading, div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-6010bc8fd5bb1 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6010bc8fd5bb1 .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-6010bc8fd5bb1 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-6010bc8fd5bb1 > .fl-module-content {
	margin-bottom:50px;
}
@media (max-width: 600px) { .fl-node-6010bc8fd5bb1 > .fl-module-content { margin-bottom:20px; } }
div.fl-node-6010c87069946 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6010c87069946 .pp-heading-content {
	text-align: center;
}

div.fl-node-6010c87069946 .pp-heading-content .pp-heading {
		}

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


div.fl-node-6010c87069946 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
					display: inline;
	}
div.fl-node-6010c87069946 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6010c87069946 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					display: inline;
		margin-left: 0px;
}
div.fl-node-6010c87069946 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-6010c87069946 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-6010c87069946 .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-6010c87069946 .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-6010c87069946 .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-6010c87069946 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-6010c87069946 .pp-heading-content .pp-sub-heading,
div.fl-node-6010c87069946 .pp-heading-content .pp-sub-heading p {
		color: #4C4C4C;
	}

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

div.fl-node-6010c87069946 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

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

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

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

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

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

div.fl-node-6010c87069946 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-6010c87069946 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6010c87069946 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6010c87069946 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6010c87069946 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6010c87069946 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-6010c87069946 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
}
div.fl-node-6010c87069946 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-6010c87069946 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6010c87069946 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-6010c87069946 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6010c87069946 .pp-heading-content .pp-sub-heading, div.fl-node-6010c87069946 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-6010c87069946 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6010c87069946 .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-6010c87069946 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-6010c87069946 > .fl-module-content {
	margin-bottom:50px;
}
@media (max-width: 600px) { .fl-node-6010c87069946 > .fl-module-content { margin-bottom:20px; } }
div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6010c878d9d22 .pp-heading-content {
	text-align: left;
}

div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading {
		}

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


div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
				}
div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					margin-left: 0px;
}
div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-6010c878d9d22 .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-6010c878d9d22 .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-6010c878d9d22 .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-6010c878d9d22 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-6010c878d9d22 .pp-heading-content .pp-sub-heading,
div.fl-node-6010c878d9d22 .pp-heading-content .pp-sub-heading p {
		color: #4C4C4C;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6010c878d9d22 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
	text-shadow: 1px 1px 2px #4c4c4c;
}
div.fl-node-6010c878d9d22 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-6010c878d9d22 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6010c878d9d22 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-6010c878d9d22 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6010c878d9d22 .pp-heading-content .pp-sub-heading, div.fl-node-6010c878d9d22 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-6010c878d9d22 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6010c878d9d22 .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-6010c878d9d22 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-6010c878d9d22 > .fl-module-content {
	margin-top:40px;
	margin-bottom:60px;
}
@media (max-width: 600px) { .fl-node-6010c878d9d22 > .fl-module-content { margin-top:20px;margin-bottom:20px; } }.fl-col-group-equal-height .fl-node-6010c878d9d26,
.fl-col-group-equal-height .fl-node-6010c878d9d26 .fl-module-content,
.fl-col-group-equal-height .fl-node-6010c878d9d26 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6010c878d9d26 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6010c878d9d26 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6010c878d9d26 .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-6010c878d9d26.fl-visible-large,
.fl-col-group-equal-height .fl-node-6010c878d9d26.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6010c878d9d26.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6010c878d9d26.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6010c878d9d26 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6010c878d9d26 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6010c878d9d26 .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-6010c878d9d26.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d26.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6010c878d9d26.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d26.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d26.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6010c878d9d26.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d26.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d26.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d26.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6010c878d9d26 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6010c878d9d26 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6010c878d9d26 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6010c878d9d26 .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6010c878d9d26 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6010c878d9d26 .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6010c878d9d26 .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6010c878d9d26 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6010c878d9d26 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6010c878d9d26 .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6010c878d9d26 .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6010c878d9d26 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6010c878d9d26 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6010c878d9d26 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6010c878d9d26 .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6010c878d9d26 .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6010c878d9d26 .pp-infobox-image img {
	width: 30px;
}
.fl-node-6010c878d9d26 .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-6010c878d9d26 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6010c878d9d26 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-6010c878d9d26 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-6010c878d9d26.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-6010c878d9d28,
.fl-col-group-equal-height .fl-node-6010c878d9d28 .fl-module-content,
.fl-col-group-equal-height .fl-node-6010c878d9d28 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6010c878d9d28 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6010c878d9d28 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6010c878d9d28 .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-6010c878d9d28.fl-visible-large,
.fl-col-group-equal-height .fl-node-6010c878d9d28.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6010c878d9d28.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6010c878d9d28.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6010c878d9d28 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6010c878d9d28 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6010c878d9d28 .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-6010c878d9d28.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d28.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6010c878d9d28.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d28.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d28.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6010c878d9d28.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d28.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d28.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d28.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6010c878d9d28 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6010c878d9d28 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6010c878d9d28 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6010c878d9d28 .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6010c878d9d28 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6010c878d9d28 .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6010c878d9d28 .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6010c878d9d28 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6010c878d9d28 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6010c878d9d28 .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6010c878d9d28 .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6010c878d9d28 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6010c878d9d28 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6010c878d9d28 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6010c878d9d28 .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6010c878d9d28 .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6010c878d9d28 .pp-infobox-image img {
	width: 30px;
}
.fl-node-6010c878d9d28 .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-6010c878d9d28 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6010c878d9d28 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-6010c878d9d28 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-6010c878d9d28.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-6010c878d9d2b,
.fl-col-group-equal-height .fl-node-6010c878d9d2b .fl-module-content,
.fl-col-group-equal-height .fl-node-6010c878d9d2b .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6010c878d9d2b .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6010c878d9d2b .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6010c878d9d2b .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-6010c878d9d2b.fl-visible-large,
.fl-col-group-equal-height .fl-node-6010c878d9d2b.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6010c878d9d2b.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6010c878d9d2b.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6010c878d9d2b .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6010c878d9d2b .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6010c878d9d2b .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-6010c878d9d2b.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2b.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6010c878d9d2b.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2b.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2b.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6010c878d9d2b.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2b.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2b.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2b.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6010c878d9d2b .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6010c878d9d2b .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6010c878d9d2b .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6010c878d9d2b .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6010c878d9d2b .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6010c878d9d2b .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6010c878d9d2b .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6010c878d9d2b .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6010c878d9d2b .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6010c878d9d2b .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6010c878d9d2b .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6010c878d9d2b .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6010c878d9d2b .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6010c878d9d2b .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6010c878d9d2b .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6010c878d9d2b .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6010c878d9d2b .pp-infobox-image img {
	width: 30px;
}
.fl-node-6010c878d9d2b .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-6010c878d9d2b .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6010c878d9d2b .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-6010c878d9d2b > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-6010c878d9d2b.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-6010c878d9d2d,
.fl-col-group-equal-height .fl-node-6010c878d9d2d .fl-module-content,
.fl-col-group-equal-height .fl-node-6010c878d9d2d .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6010c878d9d2d .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6010c878d9d2d .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6010c878d9d2d .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-6010c878d9d2d.fl-visible-large,
.fl-col-group-equal-height .fl-node-6010c878d9d2d.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6010c878d9d2d.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6010c878d9d2d.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6010c878d9d2d .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6010c878d9d2d .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6010c878d9d2d .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-6010c878d9d2d.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2d.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6010c878d9d2d.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2d.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2d.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6010c878d9d2d.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2d.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2d.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6010c878d9d2d.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6010c878d9d2d .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6010c878d9d2d .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6010c878d9d2d .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6010c878d9d2d .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6010c878d9d2d .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6010c878d9d2d .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6010c878d9d2d .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6010c878d9d2d .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6010c878d9d2d .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6010c878d9d2d .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6010c878d9d2d .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6010c878d9d2d .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6010c878d9d2d .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6010c878d9d2d .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6010c878d9d2d .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6010c878d9d2d .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6010c878d9d2d .pp-infobox-image img {
	width: 30px;
}
.fl-node-6010c878d9d2d .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-node-6010c878d9d2d .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6010c878d9d2d .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-6010c878d9d2d > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-6010c878d9d2d.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6010c878d9d2f .pp-heading-content {
	text-align: left;
}

div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading {
		}

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


div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #4c4c4c;
								text-transform: lowercase;
				}
div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #4c4c4c;
					margin-left: 0px;
}
div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-6010c878d9d2f .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-6010c878d9d2f .pp-heading-content .pp-sub-heading {
	margin-top: 00px;
	margin-bottom: 00px;
}


div.fl-node-6010c878d9d2f .pp-heading-content .pp-sub-heading,
div.fl-node-6010c878d9d2f .pp-heading-content .pp-sub-heading p {
		color: #7d7d7d;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6010c878d9d2f .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 28px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
}
div.fl-node-6010c878d9d2f div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-6010c878d9d2f div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6010c878d9d2f div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-6010c878d9d2f div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6010c878d9d2f .pp-heading-content .pp-sub-heading, div.fl-node-6010c878d9d2f .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
}
div.fl-node-6010c878d9d2f .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6010c878d9d2f .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-6010c878d9d2f .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-6010c878d9d2f > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-6010c8f844e92 .pp-photo-container .pp-photo-content {
	}


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

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

.fl-node-6010c8f844e92 .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-6010c8f844e92 .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-6010c8f844e92 .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


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

@media only screen and (max-width: 992px) {
	    .fl-node-6010c8f844e92 .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: 600px) {
	.fl-node-6010c8f844e92 .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-6010c8f844e92 .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-6010c8f844e92 .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-6010c8f844e92 .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-6010c8f844e92 .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-6010c8f844e92 .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-6010c8f844e92 > .fl-module-content {
	margin-top:15px;
}
 .fl-node-6010c8f844e94 > .fl-module-content {
	margin-right:0px;
}
.fl-node-6010c8f844e96 .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form__container:not(.pp-search-form--lightbox) {
			background-color: #000000;
	}

.fl-node-6010c8f844e96 .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form--focus .pp-search-form__container:not(.pp-search-form--lightbox) {
				border-color: rgba(122,199,12,0);
	}

.fl-node-6010c8f844e96 .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form__container {
		background-color: rgba(0,0,0,0.7)	}

.fl-node-6010c8f844e96 .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form--focus input[type="search"].pp-search-form__input {
			border-color: rgba(122,199,12,0);
	}

.fl-node-6010c8f844e96 .pp-search-form__icon {
	padding-left: calc( 38px / 3 );
}

.fl-node-6010c8f844e96 .pp-search-form__input,
.fl-node-6010c8f844e96 .pp-search-form-wrap.pp-search-form--style-full_screen input[type="search"].pp-search-form__input {
			color: #4c4c4c;
	}

.fl-node-6010c8f844e96 .pp-search-form--focus input[type="search"].pp-search-form__input,
.fl-node-6010c8f844e96 .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form--focus input[type="search"].pp-search-form__input {
			color: #4c4c4c;
	}

.fl-node-6010c8f844e96 .pp-search-form__input::-webkit-input-placeholder {
	color: #4c4c4c;
}
.fl-node-6010c8f844e96 .pp-search-form__input:-ms-input-placeholder {
	color: #4c4c4c;
}
.fl-node-6010c8f844e96 .pp-search-form__input::-moz-placeholder {
	color: #4c4c4c;
}
.fl-node-6010c8f844e96 .pp-search-form__input:-moz-placeholder {
	color: #4c4c4c;
}
.fl-node-6010c8f844e96 .pp-search-form__input::placeholder {
	color: #4c4c4c;
}

.fl-node-6010c8f844e96 .pp-search-form--lightbox-close {
	color: #4c4c4c;
}
.fl-node-6010c8f844e96 .pp-search-form--lightbox-close svg {
	stroke: #4c4c4c;
}

.fl-node-6010c8f844e96 .pp-search-form__submit {
			background-color: #000000 !important;
				color: #ffffff !important;
	}

.fl-node-6010c8f844e96 .pp-search-form__submit:hover {
			background-color: #000000 !important;
				color: #ffffff !important;
	}

.fl-node-6010c8f844e96 .pp-search-form--style-full_screen .pp-search-form {
	text-align: center;	
}

.fl-node-6010c8f844e96 .pp-search-form__toggle i {
				font-size:  26px;
		width:  26px;
		height:  26px;
				color: #ffffff;
						}
.fl-node-6010c8f844e96 .pp-search-form__toggle:hover i {
			color: #7ac70c;
				}
.fl-node-6010c8f844e96 .pp-search-form__toggle i:before {
	}.fl-node-6010c8f844e96 .pp-search-form__container {
	min-height: 38px;
}
.fl-node-6010c8f844e96 .pp-search-form--button-type-icon .pp-search-form__submit {
	font-size: 14px;
}
.fl-node-6010c8f844e96 input[type='search'].pp-search-form__input, .fl-node-6010c8f844e96 .pp-search-form--button-type-text .pp-search-form__submit {
	padding-left: calc( 38px / 3 );
	padding-right: calc( 38px / 3 );
}
.fl-node-6010c8f844e96 input[type='search'].pp-search-form__input {
	min-height: 80px;
}
.fl-node-6010c8f844e96 .pp-search-form__container:not(.pp-search-form--lightbox), .fl-node-6010c8f844e96 .pp-search-form-wrap.pp-search-form--style-full_screen input[type='search'].pp-search-form__input {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-node-6010c8f844e96 input[type='search'].pp-search-form__input, .fl-node-6010c8f844e96 .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form input[type='search'].pp-search-form__input {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
}
.fl-node-6010c8f844e96 .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form__input {
	min-height: 38px;
	max-height: 38px;
}
.fl-node-6010c8f844e96 .pp-search-form__submit {
	min-width: calc( 1 * 38px );
}
 .fl-node-6010c8f844e96 > .fl-module-content {
	margin-right:10px;
	margin-left:0px;
}
.fl-node-6018cf5b2bcd5 .pp-photo-container .pp-photo-content {
	}


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

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

.fl-node-6018cf5b2bcd5 .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-6018cf5b2bcd5 .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-6018cf5b2bcd5 .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


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

@media only screen and (max-width: 992px) {
	    .fl-node-6018cf5b2bcd5 .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: 600px) {
	.fl-node-6018cf5b2bcd5 .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-6018cf5b2bcd5 .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-6018cf5b2bcd5 .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-6018cf5b2bcd5 .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-6018cf5b2bcd5 .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-6018cf5b2bcd5 .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-6018cf5b2bcd5 > .fl-module-content {
	margin-top:15px;
}
 .fl-node-6018cf5b2bcd8 > .fl-module-content {
	margin-right:0px;
}
.fl-node-6018cf5b2bcda .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form__container:not(.pp-search-form--lightbox) {
			background-color: #000000;
	}

.fl-node-6018cf5b2bcda .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form--focus .pp-search-form__container:not(.pp-search-form--lightbox) {
				border-color: rgba(122,199,12,0);
	}

.fl-node-6018cf5b2bcda .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form__container {
		background-color: rgba(0,0,0,0.7)	}

.fl-node-6018cf5b2bcda .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form--focus input[type="search"].pp-search-form__input {
			border-color: rgba(122,199,12,0);
	}

.fl-node-6018cf5b2bcda .pp-search-form__icon {
	padding-left: calc( 38px / 3 );
}

.fl-node-6018cf5b2bcda .pp-search-form__input,
.fl-node-6018cf5b2bcda .pp-search-form-wrap.pp-search-form--style-full_screen input[type="search"].pp-search-form__input {
			color: #4c4c4c;
	}

.fl-node-6018cf5b2bcda .pp-search-form--focus input[type="search"].pp-search-form__input,
.fl-node-6018cf5b2bcda .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form--focus input[type="search"].pp-search-form__input {
			color: #4c4c4c;
	}

.fl-node-6018cf5b2bcda .pp-search-form__input::-webkit-input-placeholder {
	color: #4c4c4c;
}
.fl-node-6018cf5b2bcda .pp-search-form__input:-ms-input-placeholder {
	color: #4c4c4c;
}
.fl-node-6018cf5b2bcda .pp-search-form__input::-moz-placeholder {
	color: #4c4c4c;
}
.fl-node-6018cf5b2bcda .pp-search-form__input:-moz-placeholder {
	color: #4c4c4c;
}
.fl-node-6018cf5b2bcda .pp-search-form__input::placeholder {
	color: #4c4c4c;
}

.fl-node-6018cf5b2bcda .pp-search-form--lightbox-close {
	color: #4c4c4c;
}
.fl-node-6018cf5b2bcda .pp-search-form--lightbox-close svg {
	stroke: #4c4c4c;
}

.fl-node-6018cf5b2bcda .pp-search-form__submit {
			background-color: #000000 !important;
				color: #ffffff !important;
	}

.fl-node-6018cf5b2bcda .pp-search-form__submit:hover {
			background-color: #000000 !important;
				color: #ffffff !important;
	}

.fl-node-6018cf5b2bcda .pp-search-form--style-full_screen .pp-search-form {
	text-align: center;	
}

.fl-node-6018cf5b2bcda .pp-search-form__toggle i {
				font-size:  26px;
		width:  26px;
		height:  26px;
				color: #ffffff;
						}
.fl-node-6018cf5b2bcda .pp-search-form__toggle:hover i {
			color: #7ac70c;
				}
.fl-node-6018cf5b2bcda .pp-search-form__toggle i:before {
	}.fl-node-6018cf5b2bcda .pp-search-form__container {
	min-height: 38px;
}
.fl-node-6018cf5b2bcda .pp-search-form--button-type-icon .pp-search-form__submit {
	font-size: 14px;
}
.fl-node-6018cf5b2bcda input[type='search'].pp-search-form__input, .fl-node-6018cf5b2bcda .pp-search-form--button-type-text .pp-search-form__submit {
	padding-left: calc( 38px / 3 );
	padding-right: calc( 38px / 3 );
}
.fl-node-6018cf5b2bcda input[type='search'].pp-search-form__input {
	min-height: 80px;
}
.fl-node-6018cf5b2bcda .pp-search-form__container:not(.pp-search-form--lightbox), .fl-node-6018cf5b2bcda .pp-search-form-wrap.pp-search-form--style-full_screen input[type='search'].pp-search-form__input {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-node-6018cf5b2bcda input[type='search'].pp-search-form__input, .fl-node-6018cf5b2bcda .pp-search-form-wrap.pp-search-form--style-full_screen .pp-search-form input[type='search'].pp-search-form__input {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
}
.fl-node-6018cf5b2bcda .pp-search-form-wrap:not(.pp-search-form--style-full_screen) .pp-search-form__input {
	min-height: 38px;
	max-height: 38px;
}
.fl-node-6018cf5b2bcda .pp-search-form__submit {
	min-width: calc( 1 * 38px );
}
 .fl-node-6018cf5b2bcda > .fl-module-content {
	margin-right:10px;
	margin-left:0px;
}

div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6018cf62a38ae .pp-heading-content {
	text-align: center;
}

div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading {
		}

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


div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
					display: inline;
	}
div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					display: inline;
		margin-left: 0px;
}
div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-6018cf62a38ae .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-6018cf62a38ae .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-6018cf62a38ae .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-6018cf62a38ae .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-6018cf62a38ae .pp-heading-content .pp-sub-heading,
div.fl-node-6018cf62a38ae .pp-heading-content .pp-sub-heading p {
		color: #4C4C4C;
	}

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

div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

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

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

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

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

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

div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6018cf62a38ae .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
}
div.fl-node-6018cf62a38ae div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-6018cf62a38ae div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6018cf62a38ae div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-6018cf62a38ae div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6018cf62a38ae .pp-heading-content .pp-sub-heading, div.fl-node-6018cf62a38ae .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-6018cf62a38ae .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6018cf62a38ae .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-6018cf62a38ae .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-6018cf62a38ae > .fl-module-content {
	margin-bottom:50px;
}
@media (max-width: 600px) { .fl-node-6018cf62a38ae > .fl-module-content { margin-bottom:20px; } }
div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6018cf6caaa09 .pp-heading-content {
	text-align: left;
}

div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading {
		}

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


div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: none;
				}
div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					margin-left: 0px;
}
div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-6018cf6caaa09 .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-6018cf6caaa09 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-6018cf6caaa09 .pp-heading-content .pp-sub-heading,
div.fl-node-6018cf6caaa09 .pp-heading-content .pp-sub-heading p {
		color: #4C4C4C;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6018cf6caaa09 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 42px;
	line-height: 1.4;
	font-style: normal;
	text-shadow: 1px 1px 2px #4c4c4c;
}
div.fl-node-6018cf6caaa09 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-6018cf6caaa09 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6018cf6caaa09 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-6018cf6caaa09 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6018cf6caaa09 .pp-heading-content .pp-sub-heading, div.fl-node-6018cf6caaa09 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-6018cf6caaa09 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6018cf6caaa09 .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-6018cf6caaa09 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-6018cf6caaa09 > .fl-module-content {
	margin-top:40px;
	margin-bottom:60px;
}
@media (max-width: 600px) { .fl-node-6018cf6caaa09 > .fl-module-content { margin-top:20px;margin-bottom:20px; } }.fl-col-group-equal-height .fl-node-6018cf6caaa0e,
.fl-col-group-equal-height .fl-node-6018cf6caaa0e .fl-module-content,
.fl-col-group-equal-height .fl-node-6018cf6caaa0e .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6018cf6caaa0e .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6018cf6caaa0e .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6018cf6caaa0e .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-6018cf6caaa0e.fl-visible-large,
.fl-col-group-equal-height .fl-node-6018cf6caaa0e.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6018cf6caaa0e.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6018cf6caaa0e.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6018cf6caaa0e .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6018cf6caaa0e .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6018cf6caaa0e .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-6018cf6caaa0e.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa0e.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6018cf6caaa0e.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa0e.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa0e.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6018cf6caaa0e.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa0e.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa0e.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa0e.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6018cf6caaa0e .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6018cf6caaa0e .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6018cf6caaa0e .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6018cf6caaa0e .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6018cf6caaa0e .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6018cf6caaa0e .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6018cf6caaa0e .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6018cf6caaa0e .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6018cf6caaa0e .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6018cf6caaa0e .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6018cf6caaa0e .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6018cf6caaa0e .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6018cf6caaa0e .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6018cf6caaa0e .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6018cf6caaa0e .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6018cf6caaa0e .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6018cf6caaa0e .pp-infobox-image img {
	width: 30px;
}
.fl-node-6018cf6caaa0e .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}
.fl-node-6018cf6caaa0e .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6018cf6caaa0e .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-6018cf6caaa0e > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-6018cf6caaa0e.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-6018cf6caaa10,
.fl-col-group-equal-height .fl-node-6018cf6caaa10 .fl-module-content,
.fl-col-group-equal-height .fl-node-6018cf6caaa10 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6018cf6caaa10 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6018cf6caaa10 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6018cf6caaa10 .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-6018cf6caaa10.fl-visible-large,
.fl-col-group-equal-height .fl-node-6018cf6caaa10.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6018cf6caaa10.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6018cf6caaa10.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6018cf6caaa10 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6018cf6caaa10 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6018cf6caaa10 .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-6018cf6caaa10.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa10.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6018cf6caaa10.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa10.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa10.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6018cf6caaa10.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa10.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa10.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa10.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6018cf6caaa10 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6018cf6caaa10 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6018cf6caaa10 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6018cf6caaa10 .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6018cf6caaa10 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6018cf6caaa10 .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6018cf6caaa10 .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6018cf6caaa10 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6018cf6caaa10 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6018cf6caaa10 .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6018cf6caaa10 .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6018cf6caaa10 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6018cf6caaa10 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6018cf6caaa10 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6018cf6caaa10 .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6018cf6caaa10 .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6018cf6caaa10 .pp-infobox-image img {
	width: 30px;
}
.fl-node-6018cf6caaa10 .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}
.fl-node-6018cf6caaa10 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6018cf6caaa10 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-6018cf6caaa10 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-6018cf6caaa10.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-6018cf6caaa12,
.fl-col-group-equal-height .fl-node-6018cf6caaa12 .fl-module-content,
.fl-col-group-equal-height .fl-node-6018cf6caaa12 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6018cf6caaa12 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6018cf6caaa12 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6018cf6caaa12 .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-6018cf6caaa12.fl-visible-large,
.fl-col-group-equal-height .fl-node-6018cf6caaa12.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6018cf6caaa12.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6018cf6caaa12.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6018cf6caaa12 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6018cf6caaa12 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6018cf6caaa12 .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-6018cf6caaa12.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa12.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6018cf6caaa12.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa12.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa12.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6018cf6caaa12.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa12.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa12.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa12.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6018cf6caaa12 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6018cf6caaa12 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6018cf6caaa12 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6018cf6caaa12 .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6018cf6caaa12 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6018cf6caaa12 .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6018cf6caaa12 .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6018cf6caaa12 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6018cf6caaa12 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6018cf6caaa12 .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6018cf6caaa12 .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6018cf6caaa12 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6018cf6caaa12 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6018cf6caaa12 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6018cf6caaa12 .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6018cf6caaa12 .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6018cf6caaa12 .pp-infobox-image img {
	width: 30px;
}
.fl-node-6018cf6caaa12 .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}
.fl-node-6018cf6caaa12 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6018cf6caaa12 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-6018cf6caaa12 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-6018cf6caaa12.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-col-group-equal-height .fl-node-6018cf6caaa14,
.fl-col-group-equal-height .fl-node-6018cf6caaa14 .fl-module-content,
.fl-col-group-equal-height .fl-node-6018cf6caaa14 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6018cf6caaa14 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6018cf6caaa14 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6018cf6caaa14 .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-6018cf6caaa14.fl-visible-large,
.fl-col-group-equal-height .fl-node-6018cf6caaa14.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6018cf6caaa14.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6018cf6caaa14.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6018cf6caaa14 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6018cf6caaa14 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6018cf6caaa14 .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-6018cf6caaa14.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa14.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6018cf6caaa14.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa14.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa14.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 600px) {
	.fl-col-group-equal-height .fl-node-6018cf6caaa14.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa14.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa14.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6018cf6caaa14.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6018cf6caaa14 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6018cf6caaa14 .pp-infobox-title-wrapper .pp-infobox-title {
		color: #ffffff;
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6018cf6caaa14 .pp-infobox-title-wrapper .pp-infobox-title a {
		color: #ffffff;
	}
.fl-node-6018cf6caaa14 .pp-infobox-description {
		color: #999999;
			}
	.fl-node-6018cf6caaa14 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6018cf6caaa14 .pp-infobox:hover .pp-infobox-title {
					color: #7ac70c;
			}
	.fl-node-6018cf6caaa14 .pp-infobox:hover .pp-infobox-title a {
					color: #7ac70c;
			}
	.fl-node-6018cf6caaa14 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6018cf6caaa14 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6018cf6caaa14 .pp-infobox-image img {
		height: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6018cf6caaa14 .pp-infobox:hover .pp-infobox-image img {
			}

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


.fl-node-6018cf6caaa14 .pp-infobox:hover {
	}


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

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


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


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


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

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

	@media only screen and (max-width: 480px) {
		.fl-node-6018cf6caaa14 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6018cf6caaa14 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6018cf6caaa14 .pp-infobox-title-wrapper .pp-infobox-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 18px;
}
.fl-node-6018cf6caaa14 .pp-infobox-description {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
.fl-builder-content .fl-node-6018cf6caaa14 .pp-infobox-image img {
	width: 30px;
}
.fl-node-6018cf6caaa14 .pp-infobox {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}
.fl-node-6018cf6caaa14 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6018cf6caaa14 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-6018cf6caaa14 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 992px ) {
 .fl-node-6018cf6caaa14.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6018cf6caaa16 .pp-heading-content {
	text-align: left;
}

div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading {
		}

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


div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #4c4c4c;
								text-transform: lowercase;
				}
div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #4c4c4c;
					margin-left: 0px;
}
div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-6018cf6caaa16 .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-6018cf6caaa16 .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-6018cf6caaa16 .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-6018cf6caaa16 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-6018cf6caaa16 .pp-heading-content .pp-sub-heading,
div.fl-node-6018cf6caaa16 .pp-heading-content .pp-sub-heading p {
		color: #7d7d7d;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6018cf6caaa16 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 28px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
}
div.fl-node-6018cf6caaa16 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-6018cf6caaa16 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6018cf6caaa16 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-6018cf6caaa16 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6018cf6caaa16 .pp-heading-content .pp-sub-heading, div.fl-node-6018cf6caaa16 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-6018cf6caaa16 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6018cf6caaa16 .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-6018cf6caaa16 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-6018cf6caaa16 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

div.fl-node-60233d0685d08 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-60233d0685d08 .pp-heading-content {
	text-align: left;
}

div.fl-node-60233d0685d08 .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-60233d0685d08 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-60233d0685d08 .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-60233d0685d08 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-60233d0685d08 .pp-heading-content .pp-sub-heading,
div.fl-node-60233d0685d08 .pp-heading-content .pp-sub-heading p {
		color: #999999;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-60233d0685d08 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-60233d0685d08 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-60233d0685d08 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-60233d0685d08 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-60233d0685d08 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}
div.fl-node-60233d0685d08 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d0685d08 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-60233d0685d08 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d0685d08 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-60233d0685d08 .pp-heading-content .pp-sub-heading, div.fl-node-60233d0685d08 .pp-heading-content .pp-sub-heading p {
	font-size: 16px;
	line-height: 1.8;
}
div.fl-node-60233d0685d08 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-60233d0685d08 .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-60233d0685d08 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

div.fl-node-60233d0685d0d .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-60233d0685d0d .pp-heading-content {
	text-align: left;
}

div.fl-node-60233d0685d0d .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-60233d0685d0d .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-60233d0685d0d .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-60233d0685d0d .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-60233d0685d0d .pp-heading-content .pp-sub-heading,
div.fl-node-60233d0685d0d .pp-heading-content .pp-sub-heading p {
		color: #999999;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-60233d0685d0d .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-60233d0685d0d .pp-heading-content {
				text-align: ;
			}
	div.fl-node-60233d0685d0d .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-60233d0685d0d .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-60233d0685d0d .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}
div.fl-node-60233d0685d0d div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d0685d0d div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-60233d0685d0d div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d0685d0d div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-60233d0685d0d .pp-heading-content .pp-sub-heading, div.fl-node-60233d0685d0d .pp-heading-content .pp-sub-heading p {
	font-size: 16px;
	line-height: 1.8;
}
div.fl-node-60233d0685d0d .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-60233d0685d0d .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-60233d0685d0d .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

div.fl-node-60233d5119802 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-60233d5119802 .pp-heading-content {
	text-align: left;
}

div.fl-node-60233d5119802 .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-60233d5119802 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-60233d5119802 .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-60233d5119802 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-60233d5119802 .pp-heading-content .pp-sub-heading,
div.fl-node-60233d5119802 .pp-heading-content .pp-sub-heading p {
		color: #999999;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-60233d5119802 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-60233d5119802 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-60233d5119802 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-60233d5119802 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-60233d5119802 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}
div.fl-node-60233d5119802 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d5119802 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-60233d5119802 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d5119802 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-60233d5119802 .pp-heading-content .pp-sub-heading, div.fl-node-60233d5119802 .pp-heading-content .pp-sub-heading p {
	font-size: 16px;
	line-height: 1.8;
}
div.fl-node-60233d5119802 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-60233d5119802 .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-60233d5119802 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

div.fl-node-60233d5119807 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-60233d5119807 .pp-heading-content {
	text-align: left;
}

div.fl-node-60233d5119807 .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-60233d5119807 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-60233d5119807 .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-60233d5119807 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-60233d5119807 .pp-heading-content .pp-sub-heading,
div.fl-node-60233d5119807 .pp-heading-content .pp-sub-heading p {
		color: #999999;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-60233d5119807 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-60233d5119807 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-60233d5119807 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-60233d5119807 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-60233d5119807 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}
div.fl-node-60233d5119807 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d5119807 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-60233d5119807 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d5119807 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-60233d5119807 .pp-heading-content .pp-sub-heading, div.fl-node-60233d5119807 .pp-heading-content .pp-sub-heading p {
	font-size: 16px;
	line-height: 1.8;
}
div.fl-node-60233d5119807 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-60233d5119807 .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-60233d5119807 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

div.fl-node-60233d825e3df .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-60233d825e3df .pp-heading-content {
	text-align: left;
}

div.fl-node-60233d825e3df .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-60233d825e3df .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-60233d825e3df .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-60233d825e3df .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-60233d825e3df .pp-heading-content .pp-sub-heading,
div.fl-node-60233d825e3df .pp-heading-content .pp-sub-heading p {
		color: #999999;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-60233d825e3df .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-60233d825e3df .pp-heading-content {
				text-align: ;
			}
	div.fl-node-60233d825e3df .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-60233d825e3df .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-60233d825e3df .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}
div.fl-node-60233d825e3df div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d825e3df div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-60233d825e3df div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d825e3df div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-60233d825e3df .pp-heading-content .pp-sub-heading, div.fl-node-60233d825e3df .pp-heading-content .pp-sub-heading p {
	font-size: 16px;
	line-height: 1.8;
}
div.fl-node-60233d825e3df .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-60233d825e3df .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-60233d825e3df .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

div.fl-node-60233d825e3e9 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-60233d825e3e9 .pp-heading-content {
	text-align: left;
}

div.fl-node-60233d825e3e9 .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-60233d825e3e9 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-60233d825e3e9 .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-60233d825e3e9 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-60233d825e3e9 .pp-heading-content .pp-sub-heading,
div.fl-node-60233d825e3e9 .pp-heading-content .pp-sub-heading p {
		color: #999999;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-60233d825e3e9 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-60233d825e3e9 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-60233d825e3e9 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-60233d825e3e9 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-60233d825e3e9 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}
div.fl-node-60233d825e3e9 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d825e3e9 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-60233d825e3e9 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-60233d825e3e9 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-60233d825e3e9 .pp-heading-content .pp-sub-heading, div.fl-node-60233d825e3e9 .pp-heading-content .pp-sub-heading p {
	font-size: 16px;
	line-height: 1.8;
}
div.fl-node-60233d825e3e9 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-60233d825e3e9 .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-60233d825e3e9 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

div.fl-node-602343fdb7931 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-602343fdb7931 .pp-heading-content {
	text-align: left;
}

div.fl-node-602343fdb7931 .pp-heading-content .pp-heading {
		}

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


div.fl-node-602343fdb7931 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #4c4c4c;
								text-transform: lowercase;
				}
div.fl-node-602343fdb7931 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-602343fdb7931 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #4c4c4c;
					margin-left: 0px;
}
div.fl-node-602343fdb7931 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-602343fdb7931 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-602343fdb7931 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title:before {
		width: 100%;
			border-style: solid;
			border-color: #e8e8e8;
			border-bottom-width: 1px;
	}

div.fl-node-602343fdb7931 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title:after {
		width: 100%;
			border-style: solid;
			border-color: #e8e8e8;
			border-bottom-width: 1px;
	}

div.fl-node-602343fdb7931 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100%;
			border-bottom-style: solid;
			border-bottom-color: #e8e8e8;
			border-bottom-width: 1px;
	}

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


div.fl-node-602343fdb7931 .pp-heading-content .pp-sub-heading,
div.fl-node-602343fdb7931 .pp-heading-content .pp-sub-heading p {
		color: #7d7d7d;
	}

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

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

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

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

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

div.fl-node-602343fdb7931 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-602343fdb7931 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100%;
			border-style: solid;
			border-color: #e8e8e8;
			border-bottom-width: 1px;
	}

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

div.fl-node-602343fdb7931 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #e8e8e8;
			width: 100%;
			float: left;
	}

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-602343fdb7931 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-602343fdb7931 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-602343fdb7931 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-602343fdb7931 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-602343fdb7931 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 28px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-602343fdb7931 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
}
div.fl-node-602343fdb7931 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-602343fdb7931 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-602343fdb7931 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-602343fdb7931 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-602343fdb7931 .pp-heading-content .pp-sub-heading, div.fl-node-602343fdb7931 .pp-heading-content .pp-sub-heading p {
	font-family: "Noto Sans", sans-serif;
	font-weight: 400;
	line-height: 1;
}
div.fl-node-602343fdb7931 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-602343fdb7931 .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-602343fdb7931 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-602343fdb7931 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.uabb-module-content.uabb-countdown.uabb-timer {
	width: 100%;
}

.uabb-module-content.uabb-countdown.uabb-fixed-date-countWeeks,
.uabb-module-content.uabb-countdown.uabb-fixed-date-countDays,
.uabb-module-content.uabb-countdown.uabb-fixed-date-countHours,
.uabb-module-content.uabb-countdown.uabb-fixed-date-countMinutes,
.uabb-module-content.uabb-countdown.uabb-fixed-date-countSeconds,
.uabb-module-content.uabb-countdown.uabb-evergreen-date-countWeeks,
.uabb-module-content.uabb-countdown.uabb-evergreen-date-countDays,
.uabb-module-content.uabb-countdown.uabb-evergreen-date-countHours,
.uabb-module-content.uabb-countdown.uabb-evergreen-date-countMinutes,
.uabb-module-content.uabb-countdown.uabb-evergreen-date-countSeconds {
	border: 4px solid #000;
	border-radius: 50%;
	padding: 30px;
	margin-right: 20px;
}

.uabb-countdown-holding .uabb-count-down-unit,
.uabb-countdown-holding .uabb-count-down-digit {
	padding: 0;
	margin: 0;
}

.uabb-countdown-fixed-timer .uabb-count-down-digit,
.uabb-countdown-evergreen-timer .uabb-count-down-digit {
	font-size: 50px;
}

.uabb-countdown-fixed-timer .uabb-count-down-unit,
.uabb-countdown-evergreen-timer .uabb-count-down-unit {
	font-size: 15px;
}

.uabb-countdown .uabb-countdown-digit-wrapper.square {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-holdings: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.countdown-rtl {
	direction: rtl;
}

.countdown-holding span {
	color: #888;
}

.countdown-row {
	clear: both;
	width: 100%;
	padding: 0 2px;
	text-align: center;
}

.countdown-show1 .countdown-section {
	width: 98%;
}

.countdown-show2 .countdown-section {
	width: 48%;
}

.countdown-show3 .countdown-section {
	width: 32.5%;
}

.countdown-show4 .countdown-section {
	width: 24.5%;
}

.countdown-show5 .countdown-section {
	width: 19.5%;
}

.countdown-show6 .countdown-section {
	width: 16.25%;
}

.countdown-show7 .countdown-section {
	width: 14%;
}

.countdown-section {
	display: block;
	font-size: 75%;
	text-align: center;
}

.countdown-amount {
	font-size: 200%;
}

.countdown-period {
	display: block;
}

.countdown-descr {
	display: block;
	width: 100%;
}

.uabb-countdown-custom-fields {
	float: left;
	text-align: center;
}

.uabb-countdown-fixed-timer,
.uabb-countdown-evergreen-timer {
	width: 100%;
	display: block;
}

.uabb-countdown-fixed-timer .uabb-countdown-holding,
.uabb-countdown-evergreen-timer .uabb-countdown-holding {
	display: inline-block;
	margin-bottom: 15px;
}

.uabb-countdown-digit-wrapper,
.uabb-countdown-unit-names {
	text-align: center;
}

@-webkit-keyframes flash {
	0%,
	50%,
	100% {
		opacity: 1;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	}
	25%,
	75% {
		opacity: 0;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	}
}

@keyframes flash {
	0%,
	50%,
	100% {
		opacity: 1;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	}
	25%,
	75% {
		opacity: 0;
		-ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	}
}

@-webkit-keyframes pulse {
	50% {
		-webkit-transform: scale(1.1);
	}
	0%,
	100% {
		-webkit-transform: scale(1);
	}
}

@keyframes pulse {
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	0%,
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		-webkit-transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-30px);
	}
	60% {
		-webkit-transform: translateY(-15px);
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

@-webkit-keyframes shake {
	0%,
	100% {
		-webkit-transform: translateX(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translateX(-30px);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translateX(30px);
	}
}

@keyframes shake {
	0%,
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translateX(-30px);
		transform: translateX(-30px);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
}

.uabb-countdown.uabb-countdown-separator-line .uabb-countdown-holding {
	position: relative;
	padding: 0;
	margin-left: 0;
	margin-right: 0;
}

.uabb-countdown.uabb-countdown-separator-colon .uabb-countdown-digit-wrapper {
	position: relative;
}

.uabb-countdown.uabb-countdown-separator-colon .uabb-countdown-holding .uabb-countdown-digit-wrapper:after {
	content: ':';
	display: inline-block;
	font-size: 30px;
	position: absolute;
	right: -5px;
	top: 50%;
	z-index: 10;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

.uabb-countdown.uabb-countdown-separator-line .uabb-countdown-holding:after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 10;
	border-right: 1px solid #ccc;
}

.uabb-countdown.uabb-countdown-separator-colon .uabb-countdown-holding:last-child .uabb-countdown-digit-wrapper:after,
.uabb-countdown.uabb-countdown-separator-line .uabb-countdown-holding:last-child:after {
	content: none;
}

@media (max-width: 600px) {
	.uabb-hide-seprator-yes .uabb-countdown.uabb-countdown-separator-line .uabb-countdown-holding:after,
	.uabb-hide-seprator-yes .uabb-countdown.uabb-countdown-separator-colon .uabb-countdown-digit-wrapper:after {
		display: none!important;
	}
}	
	.fl-node-600a1cfd907d5 .uabb-countdown-fixed-timer,
	.fl-node-600a1cfd907d5 .uabb-countdown-evergreen-timer {
		text-align: center;
	}
.fl-node-600a1cfd907d5 .uabb-countdown-holding {
	margin-left: 5px;margin-right: 5px;	}
.fl-node-600a1cfd907d5 .uabb-countdown-unit-names {

	}
.fl-node-600a1cfd907d5 .uabb-count-down-digit {
				margin-top:2px;	}
	

.fl-node-600a1cfd907d5 .uabb-countdown-fixed-timer .uabb-count-down-digit,
.fl-node-600a1cfd907d5 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
			color: #ffffff;
	}

/* Typography style starts here  */



.fl-node-600a1cfd907d5 .uabb-countdown-fixed-timer .uabb-count-down-unit,
.fl-node-600a1cfd907d5 .uabb-countdown-evergreen-timer .uabb-count-down-unit {
			color: #7ac70c;
	}


/* Typography responsive layout starts here */
/* Typography responsive layout Ends here */
.fl-node-600a1cfd907d5 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-600a1cfd907d5 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	font-size: 22px;
	line-height: 1em;
}
.fl-node-600a1cfd907d5 .uabb-countdown-fixed-timer .uabb-count-down-unit, .fl-node-600a1cfd907d5 .uabb-countdown-evergreen-timer .uabb-count-down-unit {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 1.33em;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-node-600a1cfd907d5 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-600a1cfd907d5 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
		font-size: 50px;
		line-height: 1em;
	}
}
@media(max-width: 600px) {
	.fl-node-600a1cfd907d5 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-600a1cfd907d5 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
		font-size: 40px;
		line-height: 1em;
	}
}
 .fl-node-600a1cfd907d5 > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}


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


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

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

.fl-node-600a1f16ea552 .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-600a1f16ea552 .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-600a1f16ea552 .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

.fl-node-600a1f16ea552 .pp-content-post .pp-post-title {
				margin-top: 0px;
				margin-bottom: 0px;
	}

.fl-node-600a1f16ea552 .pp-content-post .pp-post-title,
.fl-node-600a1f16ea552 .pp-content-post .pp-post-title a {
			color: #ffffff;
	}
.fl-node-600a1f16ea552 .pp-content-post:hover .pp-post-title,
.fl-node-600a1f16ea552 .pp-content-post:hover .pp-post-title a {
	}


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

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

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



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

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


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

.fl-node-600a1f16ea552 .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-600a1f16ea552 .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-600a1f16ea552 .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

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


.fl-node-600a1f16ea552 .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-600a1f16ea552 .pp-content-post:hover .pp-post-meta {
	}
.fl-node-600a1f16ea552 .pp-content-post .pp-post-meta span {
			background-color: #333;
	}
.fl-node-600a1f16ea552 .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-600a1f16ea552 .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

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

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

.fl-node-600a1f16ea552 .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-600a1f16ea552 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-600a1f16ea552 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-600a1f16ea552 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	background: #000000;
    	opacity: 1;
    box-shadow: none;
}


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

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



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

.fl-node-600a1f16ea552 .pp-content-post:hover {
	}

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

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


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

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


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

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


.fl-node-600a1f16ea552 .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

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

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

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

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



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

.fl-node-600a1f16ea552.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-600a1f16ea552.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.fl-node-600a1f16ea552 .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-600a1f16ea552 .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-600a1f16ea552 .pp-content-grid-pagination li a.page-numbers, .fl-node-600a1f16ea552 .pp-content-grid-pagination li span.page-numbers, .fl-node-600a1f16ea552 .pp-content-grid-load-more a {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 14px;
}
.fl-node-600a1f16ea552 .pp-content-post .pp-post-title, .fl-node-600a1f16ea552 .pp-content-post .pp-post-title a {
	font-size: 16px;
	line-height: 1.2;
}
.fl-node-600a1f16ea552 .pp-content-post .pp-more-link-button, .fl-node-600a1f16ea552 .pp-content-post .pp-add-to-cart a, .fl-node-600a1f16ea552 .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-600a1f16ea552 .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-600a1f16ea552 .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-600a1f16ea552 .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-600a1f16ea552 .pp-content-post {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-600a1f16ea552 .pp-content-post .pp-content-body {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-600a1f16ea552 .pp-content-post.pp-grid-style-9 {
	height: 100px;
}
 .fl-node-600a1f16ea552 > .fl-module-content {
	margin-top:0px;
}


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


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

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

.fl-node-600a1f16ea559 .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-600a1f16ea559 .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-600a1f16ea559 .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

.fl-node-600a1f16ea559 .pp-content-post .pp-post-title {
				margin-top: 0px;
				margin-bottom: 0px;
	}

.fl-node-600a1f16ea559 .pp-content-post .pp-post-title,
.fl-node-600a1f16ea559 .pp-content-post .pp-post-title a {
			color: #ffffff;
	}
.fl-node-600a1f16ea559 .pp-content-post:hover .pp-post-title,
.fl-node-600a1f16ea559 .pp-content-post:hover .pp-post-title a {
	}


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

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

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



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

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


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

.fl-node-600a1f16ea559 .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-600a1f16ea559 .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-600a1f16ea559 .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

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


.fl-node-600a1f16ea559 .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-600a1f16ea559 .pp-content-post:hover .pp-post-meta {
	}
.fl-node-600a1f16ea559 .pp-content-post .pp-post-meta span {
			background-color: #333;
	}
.fl-node-600a1f16ea559 .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-600a1f16ea559 .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

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

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

.fl-node-600a1f16ea559 .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-600a1f16ea559 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-600a1f16ea559 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-600a1f16ea559 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	background: #000000;
    	opacity: 1;
    box-shadow: none;
}


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

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



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

.fl-node-600a1f16ea559 .pp-content-post:hover {
	}

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

.woocommerce .fl-node-600a1f16ea559 .pp-content-post {
		margin-bottom: 3px;
	}


.fl-node-600a1f16ea559 .pp-content-post {
	position: relative;
		float: left;
	margin-bottom: 3px;
	width: calc((100% - 6.1px) / 3);/*31.233333333333%;*/
			}
.fl-node-600a1f16ea559.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 3px;
}

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


.fl-node-600a1f16ea559 .pp-grid-space {
	width: 3px;
}

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


.fl-node-600a1f16ea559 .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

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

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

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

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



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

.fl-node-600a1f16ea559.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-600a1f16ea559.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

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

	@media screen and (max-width: 1200px) {
		
		
		.fl-node-600a1f16ea559 .pp-content-post {
						margin-bottom: 3px;
			width: 31.333333333333%;
			width: calc((100% - 6px) / 3);
								}

		.fl-node-600a1f16ea559 .pp-grid-space {
			width: 3px;
		}
	}

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

	.fl-node-600a1f16ea559 .pp-grid-space {
		width: 3px;
	}

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

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

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

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

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

	.fl-node-600a1f16ea559 .pp-grid-space {
		width: 3px;
	}

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

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

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

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

	.fl-node-600a1f16ea559 .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-600a1f16ea559 .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-600a1f16ea559 .pp-content-grid-pagination li a.page-numbers, .fl-node-600a1f16ea559 .pp-content-grid-pagination li span.page-numbers, .fl-node-600a1f16ea559 .pp-content-grid-load-more a {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 14px;
}
.fl-node-600a1f16ea559 .pp-content-post .pp-post-title, .fl-node-600a1f16ea559 .pp-content-post .pp-post-title a {
	font-size: 14px;
	line-height: 1.2;
}
.fl-node-600a1f16ea559 .pp-content-post .pp-more-link-button, .fl-node-600a1f16ea559 .pp-content-post .pp-add-to-cart a, .fl-node-600a1f16ea559 .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-600a1f16ea559 .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-600a1f16ea559 .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-600a1f16ea559 .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-600a1f16ea559 .pp-content-post {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-600a1f16ea559 .pp-content-post .pp-content-body {
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
}
.fl-node-600a1f16ea559 .pp-content-post.pp-grid-style-9 {
	height: 150px;
}
 .fl-node-600a1f16ea559 > .fl-module-content {
	margin-top:0px;
}

div.fl-node-600a24118915b .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-600a24118915b .pp-heading-content {
	text-align: left;
}

div.fl-node-600a24118915b .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-600a24118915b .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
				}
div.fl-node-600a24118915b .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-600a24118915b .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					margin-left: 0px;
}
div.fl-node-600a24118915b .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-600a24118915b .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-600a24118915b .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-600a24118915b .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-600a24118915b .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-600a24118915b .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-600a24118915b .pp-heading-content .pp-sub-heading,
div.fl-node-600a24118915b .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-600a24118915b .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-600a24118915b .pp-heading-content {
				text-align: ;
			}
	div.fl-node-600a24118915b .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-600a24118915b .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-600a24118915b .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-600a24118915b .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
	text-shadow: 1px 1px 2px #4c4c4c;
}
div.fl-node-600a24118915b div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-600a24118915b div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-600a24118915b div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-600a24118915b div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-600a24118915b .pp-heading-content .pp-sub-heading, div.fl-node-600a24118915b .pp-heading-content .pp-sub-heading p {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
div.fl-node-600a24118915b .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-600a24118915b .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-600a24118915b .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-600a24118915b > .fl-module-content {
	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: 600px) { .fl-module-button .pp-button-left,
.fl-module-button .pp-button-right {
	text-align: center;
}
 }



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

			width: 100%;
			
			background: #7ac70c;
	
		background-clip: border-box;
}

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

					background: #ffffff;
			
	}



.fl-node-600a371eee673 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-600a371eee673 a.pp-button,
.fl-node-600a371eee673 a.pp-button * {
	color: #ffffff;
}

.fl-node-600a371eee673 a.pp-button:hover,
.fl-node-600a371eee673 a.pp-button:focus,
.fl-node-600a371eee673 a.pp-button:hover *,
.fl-node-600a371eee673 a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-600a371eee673 .pp-button-wrap a.pp-button,
		.fl-node-600a371eee673 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-600a371eee673 .pp-button-wrap {
	text-align: left;
}
.fl-node-600a371eee673 a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-600a371eee673 .pp-button-wrap a.pp-button, .fl-node-600a371eee673 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-600a371eee673 .pp-button-wrap a.pp-button:hover, .fl-node-600a371eee673 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-600a371eee673 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-600a371eee673 > .fl-module-content {
	margin-top:0px;
}




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

	
			background: #7ac70c;
	
		background-clip: border-box;
}

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

					background: #ffffff;
			
	}



.fl-node-6010bb75ea435 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-6010bb75ea435 a.pp-button,
.fl-node-6010bb75ea435 a.pp-button * {
	color: #ffffff;
}

.fl-node-6010bb75ea435 a.pp-button:hover,
.fl-node-6010bb75ea435 a.pp-button:focus,
.fl-node-6010bb75ea435 a.pp-button:hover *,
.fl-node-6010bb75ea435 a.pp-button:focus * {
	color: #7ac70c;
}

			.fl-node-6010bb75ea435 .pp-button-wrap a.pp-button,
			.fl-node-6010bb75ea435 .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6010bb75ea435 .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #7ac70c;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6010bb75ea435 .pp-button-wrap a.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);
	        }
	    .fl-node-6010bb75ea435 .pp-button-wrap {
	text-align: left;
}
.fl-node-6010bb75ea435 a.pp-button {
	padding-top: 6px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
}
.fl-node-6010bb75ea435 .pp-button-wrap a.pp-button, .fl-node-6010bb75ea435 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #7ac70c;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
}
.fl-node-6010bb75ea435 .pp-button-wrap a.pp-button:hover, .fl-node-6010bb75ea435 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6010bb75ea435 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6010bb75ea435 > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}

div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6010bc72c8d3f .pp-heading-content {
	text-align: left;
}

div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
				}
div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					margin-left: 0px;
}
div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-6010bc72c8d3f .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-6010bc72c8d3f .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-6010bc72c8d3f .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-6010bc72c8d3f .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-6010bc72c8d3f .pp-heading-content .pp-sub-heading,
div.fl-node-6010bc72c8d3f .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6010bc72c8d3f .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
	text-shadow: 1px 1px 2px #4c4c4c;
}
div.fl-node-6010bc72c8d3f div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-6010bc72c8d3f div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6010bc72c8d3f div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-6010bc72c8d3f div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6010bc72c8d3f .pp-heading-content .pp-sub-heading, div.fl-node-6010bc72c8d3f .pp-heading-content .pp-sub-heading p {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
div.fl-node-6010bc72c8d3f .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6010bc72c8d3f .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-6010bc72c8d3f .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-6010bc72c8d3f > .fl-module-content {
	margin-bottom:0px;
}




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

	
			background: #7ac70c;
	
		background-clip: border-box;
}

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

					background: #ffffff;
			
	}



.fl-node-6010bc88c891f 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-6010bc88c891f a.pp-button,
.fl-node-6010bc88c891f a.pp-button * {
	color: #ffffff;
}

.fl-node-6010bc88c891f a.pp-button:hover,
.fl-node-6010bc88c891f a.pp-button:focus,
.fl-node-6010bc88c891f a.pp-button:hover *,
.fl-node-6010bc88c891f a.pp-button:focus * {
	color: #7ac70c;
}

			.fl-node-6010bc88c891f .pp-button-wrap a.pp-button,
			.fl-node-6010bc88c891f .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6010bc88c891f .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #7ac70c;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6010bc88c891f .pp-button-wrap a.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);
	        }
	    .fl-node-6010bc88c891f .pp-button-wrap {
	text-align: left;
}
.fl-node-6010bc88c891f a.pp-button {
	padding-top: 6px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
}
.fl-node-6010bc88c891f .pp-button-wrap a.pp-button, .fl-node-6010bc88c891f .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #7ac70c;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
}
.fl-node-6010bc88c891f .pp-button-wrap a.pp-button:hover, .fl-node-6010bc88c891f .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6010bc88c891f .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6010bc88c891f > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}

div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6010c878d9d23 .pp-heading-content {
	text-align: left;
}

div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
				}
div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					margin-left: 0px;
}
div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-6010c878d9d23 .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-6010c878d9d23 .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-6010c878d9d23 .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-6010c878d9d23 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-6010c878d9d23 .pp-heading-content .pp-sub-heading,
div.fl-node-6010c878d9d23 .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 600px) {
	div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6010c878d9d23 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
	text-shadow: 1px 1px 2px #4c4c4c;
}
div.fl-node-6010c878d9d23 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-6010c878d9d23 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6010c878d9d23 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-6010c878d9d23 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6010c878d9d23 .pp-heading-content .pp-sub-heading, div.fl-node-6010c878d9d23 .pp-heading-content .pp-sub-heading p {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
div.fl-node-6010c878d9d23 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6010c878d9d23 .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-6010c878d9d23 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-6010c878d9d23 > .fl-module-content {
	margin-bottom:0px;
}




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

	
			background: #7ac70c;
	
		background-clip: border-box;
}

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

					background: #ffffff;
			
	}



.fl-node-6010c8f844e97 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-6010c8f844e97 a.pp-button,
.fl-node-6010c8f844e97 a.pp-button * {
	color: #ffffff;
}

.fl-node-6010c8f844e97 a.pp-button:hover,
.fl-node-6010c8f844e97 a.pp-button:focus,
.fl-node-6010c8f844e97 a.pp-button:hover *,
.fl-node-6010c8f844e97 a.pp-button:focus * {
	color: #7ac70c;
}

			.fl-node-6010c8f844e97 .pp-button-wrap a.pp-button,
			.fl-node-6010c8f844e97 .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6010c8f844e97 .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #7ac70c;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6010c8f844e97 .pp-button-wrap a.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);
	        }
	    .fl-node-6010c8f844e97 .pp-button-wrap {
	text-align: left;
}
.fl-node-6010c8f844e97 a.pp-button {
	padding-top: 6px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
}
.fl-node-6010c8f844e97 .pp-button-wrap a.pp-button, .fl-node-6010c8f844e97 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #7ac70c;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
}
.fl-node-6010c8f844e97 .pp-button-wrap a.pp-button:hover, .fl-node-6010c8f844e97 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6010c8f844e97 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6010c8f844e97 > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}
/**
 * This file should contain frontend styles that
 * will be applied to all module instances.
 */

.bb-gf-input.input-small {
    width: 46px !important;
}

.pp-gf-content {
	position: relative;
}

.pp-gf-content:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.pp-gf-content .pp-gf-inner {
	position: relative;
}

.pp-gf-content .form-title,
.pp-gf-content .form-description {
	position: relative;
}

.pp-gf-content .gform_wrapper form {
	position: relative;
}

.pp-gf-content legend {
    border: 0;
}

.pp-gf-content .gform_wrapper .gform_body {
	width: 100% !important;
}

.pp-gf-content .gform_wrapper ul.gform_fields {
    padding: 0;
}

.pp-gf-content .gform_wrapper ul.gform_fields li.gfield {
	padding-right: 0;
}

.pp-gf-content .gform_wrapper ul.gform_fields li.gfield.gf_left_half {
	padding-right: 16px;
}

.pp-gf-content .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
	max-width: 100% !important;
}

.pp-gf-content .gform_wrapper .gfield input[type="checkbox"]:focus, .pp-gf-content .gform_wrapper .gfield input[type="radio"]:focus {
    width: auto;
    text-align: left !important;
}

.gform_wrapper .top_label li.gfield.gf_left_half input.medium,
.gform_wrapper .top_label li.gfield.gf_right_half input.medium,
.gform_wrapper .top_label li.gfield.gf_left_half select.medium,
.gform_wrapper .top_label li.gfield.gf_right_half select.medium {
    width: 100% !important;
}

/* .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.gform_wrapper .gfield input:focus,
.gform_wrapper .gfield select,
.gform_wrapper .gfield textarea {
    height: auto;
} */

.gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]) {
    width: 100% !important;
}

.gform_wrapper.gf_browser_chrome .gfield_checkbox li input,
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox],
.gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
    margin-top: 0 !important;
}

div.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
    margin-bottom: 0;
}

.pp-gf-content .gform_wrapper ul li.gfield {
    margin-top: 0;
}

.pp-gf-content .gform_wrapper ul.gfield_radio li input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']) {
    width: auto !important;
    display: inline-block;
}

.pp-gf-content .gform_wrapper .ginput_complex span.ginput_full:not(.ginput_cardextras) {
    display: block;
}

.pp-gf-content .gform_wrapper .gfield .gfield_description {
    padding-top: 5px;
}

.pp-gf-content .gform_wrapper h2.gsection_title {
	margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
	.pp-gf-content .gform_wrapper ul.gform_fields li.gfield.gf_left_half {
		padding-right: 0;
	}
}
@media (max-width: 600px) { /**
 * 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-6010d0b965a5e .pp-gf-content .gform_wrapper {
	max-width: 100%;
}

.fl-node-6010d0b965a5e .pp-gf-content {
	background-color: transparent;
			background-size: cover;
			background-repeat: no-repeat;
	}


.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper ul li.gfield {
	list-style-type: none !important;
		margin-bottom: 10px;
	}

.fl-builder-content .fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_title,
.fl-builder-content .fl-node-6010d0b965a5e .pp-gf-content .form-title {
		display: none;
}

.fl-builder-content .fl-node-6010d0b965a5e .pp-gf-content .form-title {
	display: none;
}

.fl-builder-content .fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_title {
	}

.fl-builder-content .fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper span.gform_description,
.fl-builder-content .fl-node-6010d0b965a5e .pp-gf-content .form-description {
		display: none;
}

.fl-builder-content .fl-node-6010d0b965a5e .pp-gf-content .form-description {
	display: none;
}

.fl-builder-content .fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper span.gform_description {
	}

.fl-builder-content .fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield .gfield_label {
			display: none;
	}


.fl-builder-content .fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield_required {
	}

.fl-builder-content .fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield .ginput_complex.ginput_container label {
		display: none;
	}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .ginput_container label,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper table.gfield_list thead th,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper span.ginput_product_price,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper span.ginput_product_price_label,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper span.ginput_quantity_label,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield_html {
		font-weight: 300;}


.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper span.ginput_product_price {
		color: #900900 !important;
	}


.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield .gfield_description {
		color: #000000;
	}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gsection {
		border-bottom-width: 1px;
			border-bottom-color: #cccccc;
				margin-bottom: 20px;
	}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper h2.gsection_title,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper h3.gsection_title {
		color: #333333;
	}


.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield select,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield textarea {
		color: #4c4c4c;
		background-color: #ededed;
	width: 100% !important;	outline: none;
}


.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield select {
			height: px;
	}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]),
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .ginput_complex select {
		margin-bottom: 3px;
	}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .ginput_complex span {
		margin-bottom: 4px;
	}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield input::-webkit-input-placeholder {
	color: #c1c1c1;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield input:-moz-placeholder {
	color: #c1c1c1;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield input::-moz-placeholder {
	color: #c1c1c1;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield input:-ms-input-placeholder {
	color: #c1c1c1;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield textarea::-webkit-input-placeholder {
	color: #c1c1c1;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield textarea:-moz-placeholder {
	color: #c1c1c1;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield textarea::-moz-placeholder {
	color: #c1c1c1;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield textarea:-ms-input-placeholder {
	color: #c1c1c1;
}


.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']):focus,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield select:focus,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield textarea:focus {
	border-color: #7ac70c;
}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .top_label input.medium,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .top_label select.medium {
	width: 100% !important;
}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper textarea.medium {
	width: 100% !important;}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .ginput_complex .ginput_full input[type="text"],
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .ginput_complex  input[type="text"] {
	width: 100% !important;
}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .ginput_complex .ginput_right {
	margin-left: 0 !important;
}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .ginput_complex .ginput_right input,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .ginput_complex .ginput_right select {
	width: 100% !important;}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_footer {
		text-align: left;
				justify-content: flex-start;
			}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform-button,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_footer .gform_button,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_page_footer .button,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
		width: auto;
			color: #ffffff;
		background-color: #7ac70c;
		padding-top: 15px;
	padding-bottom: 15px;
			padding-left: 45px;
	padding-right: 45px;
		white-space: normal;
}


.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_page_footer .button {
	}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform-button:hover,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_footer .gform_button:hover,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_page_footer .button:hover {
		color: #7ac70c;
		background: #ffffff;
}


.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield input[type=file] {
	background-color: transparent;
					border-style: none;
					}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .validation_error,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_validation_errors > h2,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper li.gfield.gfield_error,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
		color: #790000 !important;
		border-color: transparent !important;
			border: none;
		padding-top: 0;
		padding-bottom: 0;
	}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .validation_error,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_validation_errors > h2 {
			display: none !important;
	}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield.gfield_error {
	background-color: transparent;
	width: 100%;
}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield.gfield_error .gfield_label {
		margin-left: 0;
}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield_error .validation_message {
		display: block;
			color: #ef3300;
		}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
	margin-top: 8px;
}

.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield_error input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield_error .ginput_container select,
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield_error .ginput_container textarea {
	border-color: #ef3300;
		border-width: 1px !important;
	}


@media only screen and (max-width: 992px) {
	.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
					}
}

@media only screen and (max-width: 600px) {
	.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
					}
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform-button, .fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_footer .gform_button,
							.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_page_footer .button {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #7ac70c;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-6010d0b965a5e .pp-gf-content {
	padding-top: 0px;
	padding-right: 0px;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform-button,
							.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_footer .gform_button, 
							.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gform_page_footer .button {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield .gfield_label {
	font-weight: 300;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield .gfield_description {
	font-weight: 300;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
						.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield select,
						.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield textarea {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	text-align: left;
}
.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
							.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield select,
							.fl-node-6010d0b965a5e .pp-gf-content .gform_wrapper .gfield textarea {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #4C4C4C;
	border-bottom-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	padding: 12px;
}
 .fl-node-6010d0b965a5e > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}




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

	
			background: #7ac70c;
	
		background-clip: border-box;
}

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

					background: #ffffff;
			
	}



.fl-node-6018cf5b2bcdf 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-6018cf5b2bcdf a.pp-button,
.fl-node-6018cf5b2bcdf a.pp-button * {
	color: #ffffff;
}

.fl-node-6018cf5b2bcdf a.pp-button:hover,
.fl-node-6018cf5b2bcdf a.pp-button:focus,
.fl-node-6018cf5b2bcdf a.pp-button:hover *,
.fl-node-6018cf5b2bcdf a.pp-button:focus * {
	color: #7ac70c;
}

			.fl-node-6018cf5b2bcdf .pp-button-wrap a.pp-button,
			.fl-node-6018cf5b2bcdf .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6018cf5b2bcdf .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #7ac70c;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6018cf5b2bcdf .pp-button-wrap a.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);
	        }
	    .fl-node-6018cf5b2bcdf .pp-button-wrap {
	text-align: left;
}
.fl-node-6018cf5b2bcdf a.pp-button {
	padding-top: 6px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
}
.fl-node-6018cf5b2bcdf .pp-button-wrap a.pp-button, .fl-node-6018cf5b2bcdf .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #7ac70c;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-6018cf5b2bcdf .pp-button-wrap a.pp-button:hover, .fl-node-6018cf5b2bcdf .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6018cf5b2bcdf .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6018cf5b2bcdf > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}

div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6018cf6caaa0a .pp-heading-content {
	text-align: left;
}

div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading {
			display: none;
	}

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


div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: lowercase;
				}
div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #ffffff;
					margin-left: 0px;
}
div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-6018cf6caaa0a .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-6018cf6caaa0a .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-6018cf6caaa0a .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-6018cf6caaa0a .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-6018cf6caaa0a .pp-heading-content .pp-sub-heading,
div.fl-node-6018cf6caaa0a .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

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

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

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

div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-6018cf6caaa0a .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-6018cf6caaa0a .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6018cf6caaa0a .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 600px) {
	div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6018cf6caaa0a .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 42px;
	line-height: 1.4;
	text-transform: none;
	font-style: normal;
}
div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Serif Display", serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4;
	font-style: italic;
	text-shadow: 1px 1px 2px #4c4c4c;
}
div.fl-node-6018cf6caaa0a div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-6018cf6caaa0a div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6018cf6caaa0a div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-6018cf6caaa0a div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6018cf6caaa0a .pp-heading-content .pp-sub-heading, div.fl-node-6018cf6caaa0a .pp-heading-content .pp-sub-heading p {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
}
div.fl-node-6018cf6caaa0a .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6018cf6caaa0a .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-6018cf6caaa0a .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-6018cf6caaa0a > .fl-module-content {
	margin-bottom:0px;
}


/* Fix for Box module */
.fl-node-6018cf799e675 {
	min-width: 1px;
}


.fl-node-6018cf799e675 .pp-content-grid-pagination {
			text-align: center;
	}
.fl-node-6018cf799e675 .pp-content-grid-pagination.fl-builder-pagination {
    padding-top: 15px;
    padding-bottom: 15px;
}
.fl-node-6018cf799e675 .pp-content-grid-pagination li a.page-numbers,
.fl-node-6018cf799e675 .pp-content-grid-pagination li span.page-numbers {
			background-color: #ffffff;
				color: #000000;
		margin-right: 5px;
}

.fl-node-6018cf799e675 .pp-content-grid-pagination li a.page-numbers:hover,
.fl-node-6018cf799e675 .pp-content-grid-pagination li span.current,
.fl-node-6018cf799e675 .pp-content-grid-pagination li span[aria-current] {
			background-color: #eeeeee;
		}

.fl-node-6018cf799e675 .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-6018cf799e675 .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-6018cf799e675 .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

.fl-node-6018cf799e675 .pp-content-post .pp-post-title {
				margin-top: 0px;
				margin-bottom: 0px;
	}

.fl-node-6018cf799e675 .pp-content-post .pp-post-title,
.fl-node-6018cf799e675 .pp-content-post .pp-post-title a {
			color: #ffffff;
	}
.fl-node-6018cf799e675 .pp-content-post:hover .pp-post-title,
.fl-node-6018cf799e675 .pp-content-post:hover .pp-post-title a {
	}


.fl-node-6018cf799e675 .pp-content-post .pp-post-content {
				margin-top: 5px;
				margin-bottom: 5px;
	}
.fl-node-6018cf799e675 .pp-content-post:hover .pp-post-content {
	}

.fl-node-6018cf799e675 .pp-post-event-calendar-date,
.fl-node-6018cf799e675 .pp-post-event-calendar-date span {
		}
.fl-node-6018cf799e675 .pp-post-event-calendar-venue,
.fl-node-6018cf799e675 .pp-post-event-calendar-venue span.tribe-address {
	}
.fl-node-6018cf799e675 .pp-post-event-calendar-cost,
.fl-node-6018cf799e675 .pp-post-event-calendar-cost span.ticket-cost {
	}
.fl-node-6018cf799e675 .pp-post-event-calendar-cost form {
	margin-top: 10px;
}

.fl-node-6018cf799e675 .pp-content-post .pp-more-link-button,
.fl-node-6018cf799e675 .pp-content-post .pp-more-link-button:visited,
.fl-node-6018cf799e675 .pp-content-post .pp-add-to-cart a,
.fl-node-6018cf799e675 .pp-content-post .pp-add-to-cart a:visited,
.fl-node-6018cf799e675 .pp-post-event-calendar-cost form .tribe-button,
.fl-node-6018cf799e675 .pp-post-event-calendar-cost form .tribe-button:visited {
	
			color: #ffffff;
	
   cursor: pointer;
}



.fl-node-6018cf799e675 .pp-content-post .pp-content-grid-more:hover,
.fl-node-6018cf799e675 .pp-content-post .pp-add-to-cart a:hover,
.fl-node-6018cf799e675 .pp-post-event-calendar-cost form .tribe-button:hover {
			background: #000000;
					border-color: #eeeeee;
	}

.fl-node-6018cf799e675 .pp-content-post .pp-post-title-divider {
	background-color: #333333;
}


.fl-node-6018cf799e675 .pp-content-post .pp-post-image .pp-content-category-list {
	background-color: #000000;
	color: #ffffff;
		right: auto;
	left: 0;
	}
.fl-node-6018cf799e675 .pp-content-post .pp-post-image .pp-content-category-list a {
	color: #ffffff;
}

.fl-node-6018cf799e675 .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-6018cf799e675 .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-6018cf799e675 .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

.fl-node-6018cf799e675 .pp-content-post .pp-post-image .pp-post-title {
	background: rgba(0, 0, 0, 0.5);
	text-align: left;
}


.fl-node-6018cf799e675 .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-6018cf799e675 .pp-content-post:hover .pp-post-meta {
	}
.fl-node-6018cf799e675 .pp-content-post .pp-post-meta span {
	}
.fl-node-6018cf799e675 .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-6018cf799e675 .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

.fl-node-6018cf799e675 .pp-content-grid-post .pp-content-category-list,
.fl-node-6018cf799e675 .pp-content-carousel-post .pp-content-category-list {
	}

.fl-node-6018cf799e675 .pp-content-post.pp-grid-style-7 .pp-content-post-meta {
	}
.fl-node-6018cf799e675 .pp-content-post.pp-grid-style-7:hover .pp-content-post-meta {
	}

.fl-node-6018cf799e675 .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-6018cf799e675 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-6018cf799e675 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-6018cf799e675 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	background: #000000;
    	opacity: 1;
    box-shadow: none;
}


.fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button {
		width: 40px;
	height: 40px;
	}
.fl-builder-content .fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-builder-content .fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button[class*=owl]:visited,
.fl-page .fl-builder-content .fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-page .fl-builder-content .fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button[class*=owl]:visited {
	}
.fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button svg {
	height: 30px;
}
.fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button svg path {
			fill: #000000;
	}

.fl-builder-content .fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-builder-content .fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button[class*=owl]:focus,
.fl-page .fl-builder-content .fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-page .fl-builder-content .fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button[class*=owl]:focus {
		}
.fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button:hover svg path {
			fill: #eeeeee;
	}



.fl-node-6018cf799e675 .pp-content-post {
    opacity: 1;
	text-align: left;
}

.fl-node-6018cf799e675 .pp-content-post:hover {
	}

.fl-node-6018cf799e675 .pp-content-post.pp-grid-style-7 .pp-content-body {
	}
.fl-node-6018cf799e675 .pp-content-post.pp-grid-style-7:hover .pp-content-body {
	}

.woocommerce .fl-node-6018cf799e675 .pp-content-post {
		margin-bottom: 3px;
	}


.fl-node-6018cf799e675 .pp-content-post {
	position: relative;
		float: left;
	margin-bottom: 3px;
	width: calc((100% - 3.1px) / 2);/*48.4%;*/
			}
.fl-node-6018cf799e675.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 3px;
}

@media only screen and (min-width: 768px) {
	.fl-node-6018cf799e675.cg-css-grid .pp-content-post-grid.pp-equal-height {
		grid-column-gap: 3px;
		grid-row-gap: 3ch;
	}
}


.fl-node-6018cf799e675 .pp-grid-space {
	width: 3px;
}

.fl-node-6018cf799e675 .pp-content-post .pp-content-grid-more-link,
.fl-node-6018cf799e675 .pp-content-post .pp-add-to-cart {
	margin-top: 10px;
	margin-bottom: 5px;
    position: relative;
    z-index: 2;
}


.fl-node-6018cf799e675 .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

.fl-node-6018cf799e675 .pp-content-post .star-rating {
            margin-left: 0;
    }

.fl-node-6018cf799e675 .pp-content-post.pp-grid-style-5 .star-rating {
    margin-left: 0;
}

.fl-node-6018cf799e675 .pp-content-post .star-rating:before,
.fl-node-6018cf799e675 .pp-content-post .star-rating span:before {
    color: #000000;
}

.fl-node-6018cf799e675 .pp-content-post .pp-product-price,
.fl-node-6018cf799e675 .pp-content-post .pp-product-price span.price {
    color: #000000;
    	font-size: px;
	}



.fl-node-6018cf799e675.cg-square-layout .pp-content-post.pp-grid-style-9 {
	height: auto !important;
}

.fl-node-6018cf799e675.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-6018cf799e675.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

	.fl-node-6018cf799e675 .pp-post-filters-sidebar .pp-content-posts {
		width: 100%;
	}
	.fl-node-6018cf799e675 .pp-post-filters-sidebar.pp-posts-wrapper {
		display: flex;
		flex-direction: row;
	}
	.fl-node-6018cf799e675 .pp-post-filters-sidebar-right.pp-posts-wrapper {
		flex-direction: row-reverse;
	}
	.fl-node-6018cf799e675 .pp-post-filters-sidebar .pp-post-filters-wrapper {
		flex: 1 0 0;
	}
	.fl-node-6018cf799e675 .pp-post-filters-sidebar .pp-post-filters li {
		display: block;
					margin-bottom: 10px;
			}
		.fl-node-6018cf799e675 .pp-post-filters-sidebar-right .pp-post-filters li {
		margin-right: 0;
		margin-left: 10px;
	}
	

	@media screen and (max-width: 1200px) {
		
		
		.fl-node-6018cf799e675 .pp-content-post {
						margin-bottom: 3px;
			width: 48.5%;
			width: calc((100% - 3px) / 2);
								}

		.fl-node-6018cf799e675 .pp-grid-space {
			width: 3px;
		}
	}

@media screen and (max-width: 992px) {
	
	
	.fl-node-6018cf799e675 .pp-content-post {
				margin-bottom: 3px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-6018cf799e675 .pp-grid-space {
		width: 3px;
	}

	.fl-node-6018cf799e675 .pp-content-grid-post:nth-of-type(2n+1) {
	    clear: none;
	}

	.fl-node-6018cf799e675 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-6018cf799e675 .pp-content-grid-post:nth-of-type(2n) {
	    margin-right: 3px;
	}
	*/

	.fl-node-6018cf799e675 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}
}

@media screen and (max-width: 600px) {
	
	
	.fl-node-6018cf799e675 .pp-content-post {
				margin-bottom: 3px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-6018cf799e675 .pp-grid-space {
		width: 3px;
	}

	.fl-node-6018cf799e675 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-6018cf799e675 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-6018cf799e675 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 3px;
	}
	*/

	.fl-node-6018cf799e675 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}

	.fl-node-6018cf799e675 .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-6018cf799e675 .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-6018cf799e675 .pp-content-grid-pagination li a.page-numbers, .fl-node-6018cf799e675 .pp-content-grid-pagination li span.page-numbers, .fl-node-6018cf799e675 .pp-content-grid-load-more a {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 14px;
}
.fl-node-6018cf799e675 .pp-content-post .pp-post-title, .fl-node-6018cf799e675 .pp-content-post .pp-post-title a {
	font-size: 14px;
	line-height: 1.2;
}
.fl-node-6018cf799e675 .pp-content-post .pp-more-link-button, .fl-node-6018cf799e675 .pp-content-post .pp-add-to-cart a, .fl-node-6018cf799e675 .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-6018cf799e675 .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-6018cf799e675 .pp-content-post {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-node-6018cf799e675 .pp-content-post .pp-content-body {
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
}
.fl-node-6018cf799e675 .pp-content-post.pp-grid-style-9 {
	height: 150px;
}
 .fl-node-6018cf799e675 > .fl-module-content {
	margin-top:0px;
}




.fl-node-6018d2770f413 .pp-button-wrap a.pp-button,
.fl-node-6018d2770f413 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
			background: #7ac70c;
	
		background-clip: border-box;
}

.fl-node-6018d2770f413 .pp-button-wrap a.pp-button:hover,
.fl-node-6018d2770f413 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-6018d2770f413 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-6018d2770f413 a.pp-button,
.fl-node-6018d2770f413 a.pp-button * {
	color: #ffffff;
}

.fl-node-6018d2770f413 a.pp-button:hover,
.fl-node-6018d2770f413 a.pp-button:focus,
.fl-node-6018d2770f413 a.pp-button:hover *,
.fl-node-6018d2770f413 a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-6018d2770f413 .pp-button-wrap a.pp-button,
		.fl-node-6018d2770f413 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-6018d2770f413 .pp-button-wrap {
	text-align: left;
}
.fl-node-6018d2770f413 a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-6018d2770f413 .pp-button-wrap a.pp-button, .fl-node-6018d2770f413 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-6018d2770f413 .pp-button-wrap a.pp-button:hover, .fl-node-6018d2770f413 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6018d2770f413 .pp-button .pp-button-icon {
	font-size: 16px;
}


/* Fix for Box module */
.fl-node-60233d0685d09 {
	min-width: 1px;
}


.fl-node-60233d0685d09 .pp-content-grid-pagination {
			text-align: center;
	}
.fl-node-60233d0685d09 .pp-content-grid-pagination.fl-builder-pagination {
    padding-top: 15px;
    padding-bottom: 15px;
}
.fl-node-60233d0685d09 .pp-content-grid-pagination li a.page-numbers,
.fl-node-60233d0685d09 .pp-content-grid-pagination li span.page-numbers {
			background-color: #ffffff;
				color: #000000;
		margin-right: 5px;
}

.fl-node-60233d0685d09 .pp-content-grid-pagination li a.page-numbers:hover,
.fl-node-60233d0685d09 .pp-content-grid-pagination li span.current,
.fl-node-60233d0685d09 .pp-content-grid-pagination li span[aria-current] {
			background-color: #eeeeee;
		}

.fl-node-60233d0685d09 .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-60233d0685d09 .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-60233d0685d09 .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

.fl-node-60233d0685d09 .pp-content-post .pp-post-title {
				margin-top: 0px;
				margin-bottom: 0px;
	}

.fl-node-60233d0685d09 .pp-content-post .pp-post-title,
.fl-node-60233d0685d09 .pp-content-post .pp-post-title a {
			color: #ffffff;
	}
.fl-node-60233d0685d09 .pp-content-post:hover .pp-post-title,
.fl-node-60233d0685d09 .pp-content-post:hover .pp-post-title a {
	}


.fl-node-60233d0685d09 .pp-content-post .pp-post-content {
				margin-top: 5px;
				margin-bottom: 5px;
	}
.fl-node-60233d0685d09 .pp-content-post:hover .pp-post-content {
	}

.fl-node-60233d0685d09 .pp-post-event-calendar-date,
.fl-node-60233d0685d09 .pp-post-event-calendar-date span {
		}
.fl-node-60233d0685d09 .pp-post-event-calendar-venue,
.fl-node-60233d0685d09 .pp-post-event-calendar-venue span.tribe-address {
	}
.fl-node-60233d0685d09 .pp-post-event-calendar-cost,
.fl-node-60233d0685d09 .pp-post-event-calendar-cost span.ticket-cost {
	}
.fl-node-60233d0685d09 .pp-post-event-calendar-cost form {
	margin-top: 10px;
}

.fl-node-60233d0685d09 .pp-content-post .pp-more-link-button,
.fl-node-60233d0685d09 .pp-content-post .pp-more-link-button:visited,
.fl-node-60233d0685d09 .pp-content-post .pp-add-to-cart a,
.fl-node-60233d0685d09 .pp-content-post .pp-add-to-cart a:visited,
.fl-node-60233d0685d09 .pp-post-event-calendar-cost form .tribe-button,
.fl-node-60233d0685d09 .pp-post-event-calendar-cost form .tribe-button:visited {
	
			color: #ffffff;
	
   cursor: pointer;
}



.fl-node-60233d0685d09 .pp-content-post .pp-content-grid-more:hover,
.fl-node-60233d0685d09 .pp-content-post .pp-add-to-cart a:hover,
.fl-node-60233d0685d09 .pp-post-event-calendar-cost form .tribe-button:hover {
			background: #000000;
					border-color: #eeeeee;
	}

.fl-node-60233d0685d09 .pp-content-post .pp-post-title-divider {
	background-color: #333333;
}


.fl-node-60233d0685d09 .pp-content-post .pp-post-image .pp-content-category-list {
	background-color: #000000;
	color: #ffffff;
		right: auto;
	left: 0;
	}
.fl-node-60233d0685d09 .pp-content-post .pp-post-image .pp-content-category-list a {
	color: #ffffff;
}

.fl-node-60233d0685d09 .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-60233d0685d09 .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-60233d0685d09 .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

.fl-node-60233d0685d09 .pp-content-post .pp-post-image .pp-post-title {
	background: rgba(0, 0, 0, 0.5);
	text-align: left;
}


.fl-node-60233d0685d09 .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-60233d0685d09 .pp-content-post:hover .pp-post-meta {
	}
.fl-node-60233d0685d09 .pp-content-post .pp-post-meta span {
			background-color: #333;
	}
.fl-node-60233d0685d09 .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-60233d0685d09 .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

.fl-node-60233d0685d09 .pp-content-grid-post .pp-content-category-list,
.fl-node-60233d0685d09 .pp-content-carousel-post .pp-content-category-list {
	}

.fl-node-60233d0685d09 .pp-content-post.pp-grid-style-7 .pp-content-post-meta {
	}
.fl-node-60233d0685d09 .pp-content-post.pp-grid-style-7:hover .pp-content-post-meta {
	}

.fl-node-60233d0685d09 .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-60233d0685d09 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-60233d0685d09 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-60233d0685d09 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	background: #000000;
    	opacity: 1;
    box-shadow: none;
}


.fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button {
		width: 40px;
	height: 40px;
	}
.fl-builder-content .fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-builder-content .fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button[class*=owl]:visited,
.fl-page .fl-builder-content .fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-page .fl-builder-content .fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button[class*=owl]:visited {
	}
.fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button svg {
	height: 30px;
}
.fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button svg path {
			fill: #000000;
	}

.fl-builder-content .fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-builder-content .fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button[class*=owl]:focus,
.fl-page .fl-builder-content .fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-page .fl-builder-content .fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button[class*=owl]:focus {
		}
.fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button:hover svg path {
			fill: #eeeeee;
	}



.fl-node-60233d0685d09 .pp-content-post {
    opacity: 1;
	text-align: left;
}

.fl-node-60233d0685d09 .pp-content-post:hover {
	}

.fl-node-60233d0685d09 .pp-content-post.pp-grid-style-7 .pp-content-body {
	}
.fl-node-60233d0685d09 .pp-content-post.pp-grid-style-7:hover .pp-content-body {
	}

.woocommerce .fl-node-60233d0685d09 .pp-content-post {
		margin-bottom: 0px;
	}


.fl-node-60233d0685d09 .pp-content-post {
	position: relative;
		float: left;
	margin-bottom: 0px;
	width: calc((100% - 0.1px) / 1);/*99.9%;*/
			}
.fl-node-60233d0685d09.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 0px;
}

@media only screen and (min-width: 768px) {
	.fl-node-60233d0685d09.cg-css-grid .pp-content-post-grid.pp-equal-height {
		grid-column-gap: 0px;
		grid-row-gap: 0ch;
	}
}


.fl-node-60233d0685d09 .pp-grid-space {
	width: 0px;
}

.fl-node-60233d0685d09 .pp-content-post .pp-content-grid-more-link,
.fl-node-60233d0685d09 .pp-content-post .pp-add-to-cart {
	margin-top: 10px;
	margin-bottom: 5px;
    position: relative;
    z-index: 2;
}


.fl-node-60233d0685d09 .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

.fl-node-60233d0685d09 .pp-content-post .star-rating {
            margin-left: 0;
    }

.fl-node-60233d0685d09 .pp-content-post.pp-grid-style-5 .star-rating {
    margin-left: 0;
}

.fl-node-60233d0685d09 .pp-content-post .star-rating:before,
.fl-node-60233d0685d09 .pp-content-post .star-rating span:before {
    color: #000000;
}

.fl-node-60233d0685d09 .pp-content-post .pp-product-price,
.fl-node-60233d0685d09 .pp-content-post .pp-product-price span.price {
    color: #000000;
    	font-size: px;
	}



.fl-node-60233d0685d09.cg-square-layout .pp-content-post.pp-grid-style-9 {
	height: auto !important;
}

.fl-node-60233d0685d09.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-60233d0685d09.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

	.fl-node-60233d0685d09 .pp-post-filters-sidebar .pp-content-posts {
		width: 100%;
	}
	.fl-node-60233d0685d09 .pp-post-filters-sidebar.pp-posts-wrapper {
		display: flex;
		flex-direction: row;
	}
	.fl-node-60233d0685d09 .pp-post-filters-sidebar-right.pp-posts-wrapper {
		flex-direction: row-reverse;
	}
	.fl-node-60233d0685d09 .pp-post-filters-sidebar .pp-post-filters-wrapper {
		flex: 1 0 0;
	}
	.fl-node-60233d0685d09 .pp-post-filters-sidebar .pp-post-filters li {
		display: block;
					margin-bottom: 10px;
			}
		.fl-node-60233d0685d09 .pp-post-filters-sidebar-right .pp-post-filters li {
		margin-right: 0;
		margin-left: 10px;
	}
	

	@media screen and (max-width: 1200px) {
		
		
		.fl-node-60233d0685d09 .pp-content-post {
						margin-bottom: 0px;
			width: 100%;
			width: calc((100% - 0px) / 1);
								}

		.fl-node-60233d0685d09 .pp-grid-space {
			width: 0px;
		}
	}

@media screen and (max-width: 992px) {
	
	
	.fl-node-60233d0685d09 .pp-content-post {
				margin-bottom: 0px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-60233d0685d09 .pp-grid-space {
		width: 0px;
	}

	.fl-node-60233d0685d09 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-60233d0685d09 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-60233d0685d09 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0px;
	}
	*/

	.fl-node-60233d0685d09 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}
}

@media screen and (max-width: 600px) {
	
	
	.fl-node-60233d0685d09 .pp-content-post {
				margin-bottom: 0px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-60233d0685d09 .pp-grid-space {
		width: 0px;
	}

	.fl-node-60233d0685d09 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-60233d0685d09 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-60233d0685d09 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0px;
	}
	*/

	.fl-node-60233d0685d09 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}

	.fl-node-60233d0685d09 .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-60233d0685d09 .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-60233d0685d09 .pp-content-grid-pagination li a.page-numbers, .fl-node-60233d0685d09 .pp-content-grid-pagination li span.page-numbers, .fl-node-60233d0685d09 .pp-content-grid-load-more a {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 14px;
}
.fl-node-60233d0685d09 .pp-content-post .pp-post-title, .fl-node-60233d0685d09 .pp-content-post .pp-post-title a {
	font-size: 16px;
	line-height: 1.2;
}
.fl-node-60233d0685d09 .pp-content-post .pp-more-link-button, .fl-node-60233d0685d09 .pp-content-post .pp-add-to-cart a, .fl-node-60233d0685d09 .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-60233d0685d09 .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-60233d0685d09 .pp-content-post {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-60233d0685d09 .pp-content-post .pp-content-body {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-60233d0685d09 .pp-content-post.pp-grid-style-9 {
	height: 100px;
}
 .fl-node-60233d0685d09 > .fl-module-content {
	margin-top:0px;
}


/* Fix for Box module */
.fl-node-60233d0685d0e {
	min-width: 1px;
}


.fl-node-60233d0685d0e .pp-content-grid-pagination {
			text-align: center;
	}
.fl-node-60233d0685d0e .pp-content-grid-pagination.fl-builder-pagination {
    padding-top: 15px;
    padding-bottom: 15px;
}
.fl-node-60233d0685d0e .pp-content-grid-pagination li a.page-numbers,
.fl-node-60233d0685d0e .pp-content-grid-pagination li span.page-numbers {
			background-color: #ffffff;
				color: #000000;
		margin-right: 5px;
}

.fl-node-60233d0685d0e .pp-content-grid-pagination li a.page-numbers:hover,
.fl-node-60233d0685d0e .pp-content-grid-pagination li span.current,
.fl-node-60233d0685d0e .pp-content-grid-pagination li span[aria-current] {
			background-color: #eeeeee;
		}

.fl-node-60233d0685d0e .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-60233d0685d0e .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-60233d0685d0e .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

.fl-node-60233d0685d0e .pp-content-post .pp-post-title {
				margin-top: 0px;
				margin-bottom: 0px;
	}

.fl-node-60233d0685d0e .pp-content-post .pp-post-title,
.fl-node-60233d0685d0e .pp-content-post .pp-post-title a {
			color: #ffffff;
	}
.fl-node-60233d0685d0e .pp-content-post:hover .pp-post-title,
.fl-node-60233d0685d0e .pp-content-post:hover .pp-post-title a {
	}


.fl-node-60233d0685d0e .pp-content-post .pp-post-content {
				margin-top: 5px;
				margin-bottom: 5px;
	}
.fl-node-60233d0685d0e .pp-content-post:hover .pp-post-content {
	}

.fl-node-60233d0685d0e .pp-post-event-calendar-date,
.fl-node-60233d0685d0e .pp-post-event-calendar-date span {
		}
.fl-node-60233d0685d0e .pp-post-event-calendar-venue,
.fl-node-60233d0685d0e .pp-post-event-calendar-venue span.tribe-address {
	}
.fl-node-60233d0685d0e .pp-post-event-calendar-cost,
.fl-node-60233d0685d0e .pp-post-event-calendar-cost span.ticket-cost {
	}
.fl-node-60233d0685d0e .pp-post-event-calendar-cost form {
	margin-top: 10px;
}

.fl-node-60233d0685d0e .pp-content-post .pp-more-link-button,
.fl-node-60233d0685d0e .pp-content-post .pp-more-link-button:visited,
.fl-node-60233d0685d0e .pp-content-post .pp-add-to-cart a,
.fl-node-60233d0685d0e .pp-content-post .pp-add-to-cart a:visited,
.fl-node-60233d0685d0e .pp-post-event-calendar-cost form .tribe-button,
.fl-node-60233d0685d0e .pp-post-event-calendar-cost form .tribe-button:visited {
	
			color: #ffffff;
	
   cursor: pointer;
}



.fl-node-60233d0685d0e .pp-content-post .pp-content-grid-more:hover,
.fl-node-60233d0685d0e .pp-content-post .pp-add-to-cart a:hover,
.fl-node-60233d0685d0e .pp-post-event-calendar-cost form .tribe-button:hover {
			background: #000000;
					border-color: #eeeeee;
	}

.fl-node-60233d0685d0e .pp-content-post .pp-post-title-divider {
	background-color: #333333;
}


.fl-node-60233d0685d0e .pp-content-post .pp-post-image .pp-content-category-list {
	background-color: #000000;
	color: #ffffff;
		right: auto;
	left: 0;
	}
.fl-node-60233d0685d0e .pp-content-post .pp-post-image .pp-content-category-list a {
	color: #ffffff;
}

.fl-node-60233d0685d0e .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-60233d0685d0e .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-60233d0685d0e .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

.fl-node-60233d0685d0e .pp-content-post .pp-post-image .pp-post-title {
	background: rgba(0, 0, 0, 0.5);
	text-align: left;
}


.fl-node-60233d0685d0e .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-60233d0685d0e .pp-content-post:hover .pp-post-meta {
	}
.fl-node-60233d0685d0e .pp-content-post .pp-post-meta span {
			background-color: #333;
	}
.fl-node-60233d0685d0e .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-60233d0685d0e .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

.fl-node-60233d0685d0e .pp-content-grid-post .pp-content-category-list,
.fl-node-60233d0685d0e .pp-content-carousel-post .pp-content-category-list {
	}

.fl-node-60233d0685d0e .pp-content-post.pp-grid-style-7 .pp-content-post-meta {
	}
.fl-node-60233d0685d0e .pp-content-post.pp-grid-style-7:hover .pp-content-post-meta {
	}

.fl-node-60233d0685d0e .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-60233d0685d0e .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-60233d0685d0e .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-60233d0685d0e .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	background: #000000;
    	opacity: 1;
    box-shadow: none;
}


.fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button {
		width: 40px;
	height: 40px;
	}
.fl-builder-content .fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-builder-content .fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button[class*=owl]:visited,
.fl-page .fl-builder-content .fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-page .fl-builder-content .fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button[class*=owl]:visited {
	}
.fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button svg {
	height: 30px;
}
.fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button svg path {
			fill: #000000;
	}

.fl-builder-content .fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-builder-content .fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button[class*=owl]:focus,
.fl-page .fl-builder-content .fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-page .fl-builder-content .fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button[class*=owl]:focus {
		}
.fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button:hover svg path {
			fill: #eeeeee;
	}



.fl-node-60233d0685d0e .pp-content-post {
    opacity: 1;
	text-align: left;
}

.fl-node-60233d0685d0e .pp-content-post:hover {
	}

.fl-node-60233d0685d0e .pp-content-post.pp-grid-style-7 .pp-content-body {
	}
.fl-node-60233d0685d0e .pp-content-post.pp-grid-style-7:hover .pp-content-body {
	}

.woocommerce .fl-node-60233d0685d0e .pp-content-post {
		margin-bottom: 3px;
	}


.fl-node-60233d0685d0e .pp-content-post {
	position: relative;
		float: left;
	margin-bottom: 3px;
	width: calc((100% - 6.1px) / 3);/*31.233333333333%;*/
			}
.fl-node-60233d0685d0e.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 3px;
}

@media only screen and (min-width: 768px) {
	.fl-node-60233d0685d0e.cg-css-grid .pp-content-post-grid.pp-equal-height {
		grid-column-gap: 3px;
		grid-row-gap: 3ch;
	}
}


.fl-node-60233d0685d0e .pp-grid-space {
	width: 3px;
}

.fl-node-60233d0685d0e .pp-content-post .pp-content-grid-more-link,
.fl-node-60233d0685d0e .pp-content-post .pp-add-to-cart {
	margin-top: 10px;
	margin-bottom: 5px;
    position: relative;
    z-index: 2;
}


.fl-node-60233d0685d0e .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

.fl-node-60233d0685d0e .pp-content-post .star-rating {
            margin-left: 0;
    }

.fl-node-60233d0685d0e .pp-content-post.pp-grid-style-5 .star-rating {
    margin-left: 0;
}

.fl-node-60233d0685d0e .pp-content-post .star-rating:before,
.fl-node-60233d0685d0e .pp-content-post .star-rating span:before {
    color: #000000;
}

.fl-node-60233d0685d0e .pp-content-post .pp-product-price,
.fl-node-60233d0685d0e .pp-content-post .pp-product-price span.price {
    color: #000000;
    	font-size: px;
	}



.fl-node-60233d0685d0e.cg-square-layout .pp-content-post.pp-grid-style-9 {
	height: auto !important;
}

.fl-node-60233d0685d0e.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-60233d0685d0e.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

	.fl-node-60233d0685d0e .pp-post-filters-sidebar .pp-content-posts {
		width: 100%;
	}
	.fl-node-60233d0685d0e .pp-post-filters-sidebar.pp-posts-wrapper {
		display: flex;
		flex-direction: row;
	}
	.fl-node-60233d0685d0e .pp-post-filters-sidebar-right.pp-posts-wrapper {
		flex-direction: row-reverse;
	}
	.fl-node-60233d0685d0e .pp-post-filters-sidebar .pp-post-filters-wrapper {
		flex: 1 0 0;
	}
	.fl-node-60233d0685d0e .pp-post-filters-sidebar .pp-post-filters li {
		display: block;
					margin-bottom: 10px;
			}
		.fl-node-60233d0685d0e .pp-post-filters-sidebar-right .pp-post-filters li {
		margin-right: 0;
		margin-left: 10px;
	}
	

	@media screen and (max-width: 1200px) {
		
		
		.fl-node-60233d0685d0e .pp-content-post {
						margin-bottom: 3px;
			width: 31.333333333333%;
			width: calc((100% - 6px) / 3);
								}

		.fl-node-60233d0685d0e .pp-grid-space {
			width: 3px;
		}
	}

@media screen and (max-width: 992px) {
	
	
	.fl-node-60233d0685d0e .pp-content-post {
				margin-bottom: 3px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-60233d0685d0e .pp-grid-space {
		width: 3px;
	}

	.fl-node-60233d0685d0e .pp-content-grid-post:nth-of-type(3n+1) {
	    clear: none;
	}

	.fl-node-60233d0685d0e .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-60233d0685d0e .pp-content-grid-post:nth-of-type(3n) {
	    margin-right: 3px;
	}
	*/

	.fl-node-60233d0685d0e .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}
}

@media screen and (max-width: 600px) {
	
	
	.fl-node-60233d0685d0e .pp-content-post {
				margin-bottom: 3px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-60233d0685d0e .pp-grid-space {
		width: 3px;
	}

	.fl-node-60233d0685d0e .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-60233d0685d0e .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-60233d0685d0e .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 3px;
	}
	*/

	.fl-node-60233d0685d0e .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}

	.fl-node-60233d0685d0e .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-60233d0685d0e .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-60233d0685d0e .pp-content-grid-pagination li a.page-numbers, .fl-node-60233d0685d0e .pp-content-grid-pagination li span.page-numbers, .fl-node-60233d0685d0e .pp-content-grid-load-more a {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 14px;
}
.fl-node-60233d0685d0e .pp-content-post .pp-post-title, .fl-node-60233d0685d0e .pp-content-post .pp-post-title a {
	font-size: 14px;
	line-height: 1.2;
}
.fl-node-60233d0685d0e .pp-content-post .pp-more-link-button, .fl-node-60233d0685d0e .pp-content-post .pp-add-to-cart a, .fl-node-60233d0685d0e .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-60233d0685d0e .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-60233d0685d0e .pp-content-post {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-60233d0685d0e .pp-content-post .pp-content-body {
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
}
.fl-node-60233d0685d0e .pp-content-post.pp-grid-style-9 {
	height: 150px;
}
 .fl-node-60233d0685d0e > .fl-module-content {
	margin-top:0px;
}


/* Fix for Box module */
.fl-node-60233d5119803 {
	min-width: 1px;
}


.fl-node-60233d5119803 .pp-content-grid-pagination {
			text-align: center;
	}
.fl-node-60233d5119803 .pp-content-grid-pagination.fl-builder-pagination {
    padding-top: 15px;
    padding-bottom: 15px;
}
.fl-node-60233d5119803 .pp-content-grid-pagination li a.page-numbers,
.fl-node-60233d5119803 .pp-content-grid-pagination li span.page-numbers {
			background-color: #ffffff;
				color: #000000;
		margin-right: 5px;
}

.fl-node-60233d5119803 .pp-content-grid-pagination li a.page-numbers:hover,
.fl-node-60233d5119803 .pp-content-grid-pagination li span.current,
.fl-node-60233d5119803 .pp-content-grid-pagination li span[aria-current] {
			background-color: #eeeeee;
		}

.fl-node-60233d5119803 .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-60233d5119803 .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-60233d5119803 .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

.fl-node-60233d5119803 .pp-content-post .pp-post-title {
				margin-top: 0px;
				margin-bottom: 0px;
	}

.fl-node-60233d5119803 .pp-content-post .pp-post-title,
.fl-node-60233d5119803 .pp-content-post .pp-post-title a {
			color: #ffffff;
	}
.fl-node-60233d5119803 .pp-content-post:hover .pp-post-title,
.fl-node-60233d5119803 .pp-content-post:hover .pp-post-title a {
	}


.fl-node-60233d5119803 .pp-content-post .pp-post-content {
				margin-top: 5px;
				margin-bottom: 5px;
	}
.fl-node-60233d5119803 .pp-content-post:hover .pp-post-content {
	}

.fl-node-60233d5119803 .pp-post-event-calendar-date,
.fl-node-60233d5119803 .pp-post-event-calendar-date span {
		}
.fl-node-60233d5119803 .pp-post-event-calendar-venue,
.fl-node-60233d5119803 .pp-post-event-calendar-venue span.tribe-address {
	}
.fl-node-60233d5119803 .pp-post-event-calendar-cost,
.fl-node-60233d5119803 .pp-post-event-calendar-cost span.ticket-cost {
	}
.fl-node-60233d5119803 .pp-post-event-calendar-cost form {
	margin-top: 10px;
}

.fl-node-60233d5119803 .pp-content-post .pp-more-link-button,
.fl-node-60233d5119803 .pp-content-post .pp-more-link-button:visited,
.fl-node-60233d5119803 .pp-content-post .pp-add-to-cart a,
.fl-node-60233d5119803 .pp-content-post .pp-add-to-cart a:visited,
.fl-node-60233d5119803 .pp-post-event-calendar-cost form .tribe-button,
.fl-node-60233d5119803 .pp-post-event-calendar-cost form .tribe-button:visited {
	
			color: #ffffff;
	
   cursor: pointer;
}



.fl-node-60233d5119803 .pp-content-post .pp-content-grid-more:hover,
.fl-node-60233d5119803 .pp-content-post .pp-add-to-cart a:hover,
.fl-node-60233d5119803 .pp-post-event-calendar-cost form .tribe-button:hover {
			background: #000000;
					border-color: #eeeeee;
	}

.fl-node-60233d5119803 .pp-content-post .pp-post-title-divider {
	background-color: #333333;
}


.fl-node-60233d5119803 .pp-content-post .pp-post-image .pp-content-category-list {
	background-color: #000000;
	color: #ffffff;
		right: auto;
	left: 0;
	}
.fl-node-60233d5119803 .pp-content-post .pp-post-image .pp-content-category-list a {
	color: #ffffff;
}

.fl-node-60233d5119803 .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-60233d5119803 .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-60233d5119803 .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

.fl-node-60233d5119803 .pp-content-post .pp-post-image .pp-post-title {
	background: rgba(0, 0, 0, 0.5);
	text-align: left;
}


.fl-node-60233d5119803 .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-60233d5119803 .pp-content-post:hover .pp-post-meta {
	}
.fl-node-60233d5119803 .pp-content-post .pp-post-meta span {
			background-color: #333;
	}
.fl-node-60233d5119803 .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-60233d5119803 .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

.fl-node-60233d5119803 .pp-content-grid-post .pp-content-category-list,
.fl-node-60233d5119803 .pp-content-carousel-post .pp-content-category-list {
	}

.fl-node-60233d5119803 .pp-content-post.pp-grid-style-7 .pp-content-post-meta {
	}
.fl-node-60233d5119803 .pp-content-post.pp-grid-style-7:hover .pp-content-post-meta {
	}

.fl-node-60233d5119803 .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-60233d5119803 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-60233d5119803 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-60233d5119803 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	background: #000000;
    	opacity: 1;
    box-shadow: none;
}


.fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button {
		width: 40px;
	height: 40px;
	}
.fl-builder-content .fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-builder-content .fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button[class*=owl]:visited,
.fl-page .fl-builder-content .fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-page .fl-builder-content .fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button[class*=owl]:visited {
	}
.fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button svg {
	height: 30px;
}
.fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button svg path {
			fill: #000000;
	}

.fl-builder-content .fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-builder-content .fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button[class*=owl]:focus,
.fl-page .fl-builder-content .fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-page .fl-builder-content .fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button[class*=owl]:focus {
		}
.fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button:hover svg path {
			fill: #eeeeee;
	}



.fl-node-60233d5119803 .pp-content-post {
    opacity: 1;
	text-align: left;
}

.fl-node-60233d5119803 .pp-content-post:hover {
	}

.fl-node-60233d5119803 .pp-content-post.pp-grid-style-7 .pp-content-body {
	}
.fl-node-60233d5119803 .pp-content-post.pp-grid-style-7:hover .pp-content-body {
	}

.woocommerce .fl-node-60233d5119803 .pp-content-post {
		margin-bottom: 0px;
	}


.fl-node-60233d5119803 .pp-content-post {
	position: relative;
		float: left;
	margin-bottom: 0px;
	width: calc((100% - 0.1px) / 1);/*99.9%;*/
			}
.fl-node-60233d5119803.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 0px;
}

@media only screen and (min-width: 768px) {
	.fl-node-60233d5119803.cg-css-grid .pp-content-post-grid.pp-equal-height {
		grid-column-gap: 0px;
		grid-row-gap: 0ch;
	}
}


.fl-node-60233d5119803 .pp-grid-space {
	width: 0px;
}

.fl-node-60233d5119803 .pp-content-post .pp-content-grid-more-link,
.fl-node-60233d5119803 .pp-content-post .pp-add-to-cart {
	margin-top: 10px;
	margin-bottom: 5px;
    position: relative;
    z-index: 2;
}


.fl-node-60233d5119803 .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

.fl-node-60233d5119803 .pp-content-post .star-rating {
            margin-left: 0;
    }

.fl-node-60233d5119803 .pp-content-post.pp-grid-style-5 .star-rating {
    margin-left: 0;
}

.fl-node-60233d5119803 .pp-content-post .star-rating:before,
.fl-node-60233d5119803 .pp-content-post .star-rating span:before {
    color: #000000;
}

.fl-node-60233d5119803 .pp-content-post .pp-product-price,
.fl-node-60233d5119803 .pp-content-post .pp-product-price span.price {
    color: #000000;
    	font-size: px;
	}



.fl-node-60233d5119803.cg-square-layout .pp-content-post.pp-grid-style-9 {
	height: auto !important;
}

.fl-node-60233d5119803.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-60233d5119803.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

	.fl-node-60233d5119803 .pp-post-filters-sidebar .pp-content-posts {
		width: 100%;
	}
	.fl-node-60233d5119803 .pp-post-filters-sidebar.pp-posts-wrapper {
		display: flex;
		flex-direction: row;
	}
	.fl-node-60233d5119803 .pp-post-filters-sidebar-right.pp-posts-wrapper {
		flex-direction: row-reverse;
	}
	.fl-node-60233d5119803 .pp-post-filters-sidebar .pp-post-filters-wrapper {
		flex: 1 0 0;
	}
	.fl-node-60233d5119803 .pp-post-filters-sidebar .pp-post-filters li {
		display: block;
					margin-bottom: 10px;
			}
		.fl-node-60233d5119803 .pp-post-filters-sidebar-right .pp-post-filters li {
		margin-right: 0;
		margin-left: 10px;
	}
	

	@media screen and (max-width: 1200px) {
		
		
		.fl-node-60233d5119803 .pp-content-post {
						margin-bottom: 0px;
			width: 100%;
			width: calc((100% - 0px) / 1);
								}

		.fl-node-60233d5119803 .pp-grid-space {
			width: 0px;
		}
	}

@media screen and (max-width: 992px) {
	
	
	.fl-node-60233d5119803 .pp-content-post {
				margin-bottom: 0px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-60233d5119803 .pp-grid-space {
		width: 0px;
	}

	.fl-node-60233d5119803 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-60233d5119803 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-60233d5119803 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0px;
	}
	*/

	.fl-node-60233d5119803 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}
}

@media screen and (max-width: 600px) {
	
	
	.fl-node-60233d5119803 .pp-content-post {
				margin-bottom: 0px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-60233d5119803 .pp-grid-space {
		width: 0px;
	}

	.fl-node-60233d5119803 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-60233d5119803 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-60233d5119803 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0px;
	}
	*/

	.fl-node-60233d5119803 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}

	.fl-node-60233d5119803 .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-60233d5119803 .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-60233d5119803 .pp-content-grid-pagination li a.page-numbers, .fl-node-60233d5119803 .pp-content-grid-pagination li span.page-numbers, .fl-node-60233d5119803 .pp-content-grid-load-more a {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 14px;
}
.fl-node-60233d5119803 .pp-content-post .pp-post-title, .fl-node-60233d5119803 .pp-content-post .pp-post-title a {
	font-size: 16px;
	line-height: 1.2;
}
.fl-node-60233d5119803 .pp-content-post .pp-more-link-button, .fl-node-60233d5119803 .pp-content-post .pp-add-to-cart a, .fl-node-60233d5119803 .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-60233d5119803 .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-60233d5119803 .pp-content-post {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-60233d5119803 .pp-content-post .pp-content-body {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-60233d5119803 .pp-content-post.pp-grid-style-9 {
	height: 100px;
}
 .fl-node-60233d5119803 > .fl-module-content {
	margin-top:0px;
}


/* Fix for Box module */
.fl-node-60233d5119808 {
	min-width: 1px;
}


.fl-node-60233d5119808 .pp-content-grid-pagination {
			text-align: center;
	}
.fl-node-60233d5119808 .pp-content-grid-pagination.fl-builder-pagination {
    padding-top: 15px;
    padding-bottom: 15px;
}
.fl-node-60233d5119808 .pp-content-grid-pagination li a.page-numbers,
.fl-node-60233d5119808 .pp-content-grid-pagination li span.page-numbers {
			background-color: #ffffff;
				color: #000000;
		margin-right: 5px;
}

.fl-node-60233d5119808 .pp-content-grid-pagination li a.page-numbers:hover,
.fl-node-60233d5119808 .pp-content-grid-pagination li span.current,
.fl-node-60233d5119808 .pp-content-grid-pagination li span[aria-current] {
			background-color: #eeeeee;
		}

.fl-node-60233d5119808 .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-60233d5119808 .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-60233d5119808 .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

.fl-node-60233d5119808 .pp-content-post .pp-post-title {
				margin-top: 0px;
				margin-bottom: 0px;
	}

.fl-node-60233d5119808 .pp-content-post .pp-post-title,
.fl-node-60233d5119808 .pp-content-post .pp-post-title a {
			color: #ffffff;
	}
.fl-node-60233d5119808 .pp-content-post:hover .pp-post-title,
.fl-node-60233d5119808 .pp-content-post:hover .pp-post-title a {
	}


.fl-node-60233d5119808 .pp-content-post .pp-post-content {
				margin-top: 5px;
				margin-bottom: 5px;
	}
.fl-node-60233d5119808 .pp-content-post:hover .pp-post-content {
	}

.fl-node-60233d5119808 .pp-post-event-calendar-date,
.fl-node-60233d5119808 .pp-post-event-calendar-date span {
		}
.fl-node-60233d5119808 .pp-post-event-calendar-venue,
.fl-node-60233d5119808 .pp-post-event-calendar-venue span.tribe-address {
	}
.fl-node-60233d5119808 .pp-post-event-calendar-cost,
.fl-node-60233d5119808 .pp-post-event-calendar-cost span.ticket-cost {
	}
.fl-node-60233d5119808 .pp-post-event-calendar-cost form {
	margin-top: 10px;
}

.fl-node-60233d5119808 .pp-content-post .pp-more-link-button,
.fl-node-60233d5119808 .pp-content-post .pp-more-link-button:visited,
.fl-node-60233d5119808 .pp-content-post .pp-add-to-cart a,
.fl-node-60233d5119808 .pp-content-post .pp-add-to-cart a:visited,
.fl-node-60233d5119808 .pp-post-event-calendar-cost form .tribe-button,
.fl-node-60233d5119808 .pp-post-event-calendar-cost form .tribe-button:visited {
	
			color: #ffffff;
	
   cursor: pointer;
}



.fl-node-60233d5119808 .pp-content-post .pp-content-grid-more:hover,
.fl-node-60233d5119808 .pp-content-post .pp-add-to-cart a:hover,
.fl-node-60233d5119808 .pp-post-event-calendar-cost form .tribe-button:hover {
			background: #000000;
					border-color: #eeeeee;
	}

.fl-node-60233d5119808 .pp-content-post .pp-post-title-divider {
	background-color: #333333;
}


.fl-node-60233d5119808 .pp-content-post .pp-post-image .pp-content-category-list {
	background-color: #000000;
	color: #ffffff;
		right: auto;
	left: 0;
	}
.fl-node-60233d5119808 .pp-content-post .pp-post-image .pp-content-category-list a {
	color: #ffffff;
}

.fl-node-60233d5119808 .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-60233d5119808 .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-60233d5119808 .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

.fl-node-60233d5119808 .pp-content-post .pp-post-image .pp-post-title {
	background: rgba(0, 0, 0, 0.5);
	text-align: left;
}


.fl-node-60233d5119808 .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-60233d5119808 .pp-content-post:hover .pp-post-meta {
	}
.fl-node-60233d5119808 .pp-content-post .pp-post-meta span {
			background-color: #333;
	}
.fl-node-60233d5119808 .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-60233d5119808 .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

.fl-node-60233d5119808 .pp-content-grid-post .pp-content-category-list,
.fl-node-60233d5119808 .pp-content-carousel-post .pp-content-category-list {
	}

.fl-node-60233d5119808 .pp-content-post.pp-grid-style-7 .pp-content-post-meta {
	}
.fl-node-60233d5119808 .pp-content-post.pp-grid-style-7:hover .pp-content-post-meta {
	}

.fl-node-60233d5119808 .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-60233d5119808 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-60233d5119808 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-60233d5119808 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	background: #000000;
    	opacity: 1;
    box-shadow: none;
}


.fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button {
		width: 40px;
	height: 40px;
	}
.fl-builder-content .fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-builder-content .fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button[class*=owl]:visited,
.fl-page .fl-builder-content .fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-page .fl-builder-content .fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button[class*=owl]:visited {
	}
.fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button svg {
	height: 30px;
}
.fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button svg path {
			fill: #000000;
	}

.fl-builder-content .fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-builder-content .fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button[class*=owl]:focus,
.fl-page .fl-builder-content .fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-page .fl-builder-content .fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button[class*=owl]:focus {
		}
.fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button:hover svg path {
			fill: #eeeeee;
	}



.fl-node-60233d5119808 .pp-content-post {
    opacity: 1;
	text-align: left;
}

.fl-node-60233d5119808 .pp-content-post:hover {
	}

.fl-node-60233d5119808 .pp-content-post.pp-grid-style-7 .pp-content-body {
	}
.fl-node-60233d5119808 .pp-content-post.pp-grid-style-7:hover .pp-content-body {
	}

.woocommerce .fl-node-60233d5119808 .pp-content-post {
		margin-bottom: 3px;
	}


.fl-node-60233d5119808 .pp-content-post {
	position: relative;
		float: left;
	margin-bottom: 3px;
	width: calc((100% - 6.1px) / 3);/*31.233333333333%;*/
			}
.fl-node-60233d5119808.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 3px;
}

@media only screen and (min-width: 768px) {
	.fl-node-60233d5119808.cg-css-grid .pp-content-post-grid.pp-equal-height {
		grid-column-gap: 3px;
		grid-row-gap: 3ch;
	}
}


.fl-node-60233d5119808 .pp-grid-space {
	width: 3px;
}

.fl-node-60233d5119808 .pp-content-post .pp-content-grid-more-link,
.fl-node-60233d5119808 .pp-content-post .pp-add-to-cart {
	margin-top: 10px;
	margin-bottom: 5px;
    position: relative;
    z-index: 2;
}


.fl-node-60233d5119808 .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

.fl-node-60233d5119808 .pp-content-post .star-rating {
            margin-left: 0;
    }

.fl-node-60233d5119808 .pp-content-post.pp-grid-style-5 .star-rating {
    margin-left: 0;
}

.fl-node-60233d5119808 .pp-content-post .star-rating:before,
.fl-node-60233d5119808 .pp-content-post .star-rating span:before {
    color: #000000;
}

.fl-node-60233d5119808 .pp-content-post .pp-product-price,
.fl-node-60233d5119808 .pp-content-post .pp-product-price span.price {
    color: #000000;
    	font-size: px;
	}



.fl-node-60233d5119808.cg-square-layout .pp-content-post.pp-grid-style-9 {
	height: auto !important;
}

.fl-node-60233d5119808.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-60233d5119808.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

	.fl-node-60233d5119808 .pp-post-filters-sidebar .pp-content-posts {
		width: 100%;
	}
	.fl-node-60233d5119808 .pp-post-filters-sidebar.pp-posts-wrapper {
		display: flex;
		flex-direction: row;
	}
	.fl-node-60233d5119808 .pp-post-filters-sidebar-right.pp-posts-wrapper {
		flex-direction: row-reverse;
	}
	.fl-node-60233d5119808 .pp-post-filters-sidebar .pp-post-filters-wrapper {
		flex: 1 0 0;
	}
	.fl-node-60233d5119808 .pp-post-filters-sidebar .pp-post-filters li {
		display: block;
					margin-bottom: 10px;
			}
		.fl-node-60233d5119808 .pp-post-filters-sidebar-right .pp-post-filters li {
		margin-right: 0;
		margin-left: 10px;
	}
	

	@media screen and (max-width: 1200px) {
		
		
		.fl-node-60233d5119808 .pp-content-post {
						margin-bottom: 3px;
			width: 31.333333333333%;
			width: calc((100% - 6px) / 3);
								}

		.fl-node-60233d5119808 .pp-grid-space {
			width: 3px;
		}
	}

@media screen and (max-width: 992px) {
	
	
	.fl-node-60233d5119808 .pp-content-post {
				margin-bottom: 3px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-60233d5119808 .pp-grid-space {
		width: 3px;
	}

	.fl-node-60233d5119808 .pp-content-grid-post:nth-of-type(3n+1) {
	    clear: none;
	}

	.fl-node-60233d5119808 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-60233d5119808 .pp-content-grid-post:nth-of-type(3n) {
	    margin-right: 3px;
	}
	*/

	.fl-node-60233d5119808 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}
}

@media screen and (max-width: 600px) {
	
	
	.fl-node-60233d5119808 .pp-content-post {
				margin-bottom: 3px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-60233d5119808 .pp-grid-space {
		width: 3px;
	}

	.fl-node-60233d5119808 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-60233d5119808 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-60233d5119808 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 3px;
	}
	*/

	.fl-node-60233d5119808 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}

	.fl-node-60233d5119808 .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-60233d5119808 .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-60233d5119808 .pp-content-grid-pagination li a.page-numbers, .fl-node-60233d5119808 .pp-content-grid-pagination li span.page-numbers, .fl-node-60233d5119808 .pp-content-grid-load-more a {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 14px;
}
.fl-node-60233d5119808 .pp-content-post .pp-post-title, .fl-node-60233d5119808 .pp-content-post .pp-post-title a {
	font-size: 14px;
	line-height: 1.2;
}
.fl-node-60233d5119808 .pp-content-post .pp-more-link-button, .fl-node-60233d5119808 .pp-content-post .pp-add-to-cart a, .fl-node-60233d5119808 .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-60233d5119808 .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-60233d5119808 .pp-content-post {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-60233d5119808 .pp-content-post .pp-content-body {
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
}
.fl-node-60233d5119808 .pp-content-post.pp-grid-style-9 {
	height: 150px;
}
 .fl-node-60233d5119808 > .fl-module-content {
	margin-top:0px;
}


/* Fix for Box module */
.fl-node-60233d825e3e0 {
	min-width: 1px;
}


.fl-node-60233d825e3e0 .pp-content-grid-pagination {
			text-align: center;
	}
.fl-node-60233d825e3e0 .pp-content-grid-pagination.fl-builder-pagination {
    padding-top: 15px;
    padding-bottom: 15px;
}
.fl-node-60233d825e3e0 .pp-content-grid-pagination li a.page-numbers,
.fl-node-60233d825e3e0 .pp-content-grid-pagination li span.page-numbers {
			background-color: #ffffff;
				color: #000000;
		margin-right: 5px;
}

.fl-node-60233d825e3e0 .pp-content-grid-pagination li a.page-numbers:hover,
.fl-node-60233d825e3e0 .pp-content-grid-pagination li span.current,
.fl-node-60233d825e3e0 .pp-content-grid-pagination li span[aria-current] {
			background-color: #eeeeee;
		}

.fl-node-60233d825e3e0 .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-60233d825e3e0 .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-60233d825e3e0 .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

.fl-node-60233d825e3e0 .pp-content-post .pp-post-title {
				margin-top: 0px;
				margin-bottom: 0px;
	}

.fl-node-60233d825e3e0 .pp-content-post .pp-post-title,
.fl-node-60233d825e3e0 .pp-content-post .pp-post-title a {
			color: #ffffff;
	}
.fl-node-60233d825e3e0 .pp-content-post:hover .pp-post-title,
.fl-node-60233d825e3e0 .pp-content-post:hover .pp-post-title a {
	}


.fl-node-60233d825e3e0 .pp-content-post .pp-post-content {
				margin-top: 5px;
				margin-bottom: 5px;
	}
.fl-node-60233d825e3e0 .pp-content-post:hover .pp-post-content {
	}

.fl-node-60233d825e3e0 .pp-post-event-calendar-date,
.fl-node-60233d825e3e0 .pp-post-event-calendar-date span {
		}
.fl-node-60233d825e3e0 .pp-post-event-calendar-venue,
.fl-node-60233d825e3e0 .pp-post-event-calendar-venue span.tribe-address {
	}
.fl-node-60233d825e3e0 .pp-post-event-calendar-cost,
.fl-node-60233d825e3e0 .pp-post-event-calendar-cost span.ticket-cost {
	}
.fl-node-60233d825e3e0 .pp-post-event-calendar-cost form {
	margin-top: 10px;
}

.fl-node-60233d825e3e0 .pp-content-post .pp-more-link-button,
.fl-node-60233d825e3e0 .pp-content-post .pp-more-link-button:visited,
.fl-node-60233d825e3e0 .pp-content-post .pp-add-to-cart a,
.fl-node-60233d825e3e0 .pp-content-post .pp-add-to-cart a:visited,
.fl-node-60233d825e3e0 .pp-post-event-calendar-cost form .tribe-button,
.fl-node-60233d825e3e0 .pp-post-event-calendar-cost form .tribe-button:visited {
	
			color: #ffffff;
	
   cursor: pointer;
}



.fl-node-60233d825e3e0 .pp-content-post .pp-content-grid-more:hover,
.fl-node-60233d825e3e0 .pp-content-post .pp-add-to-cart a:hover,
.fl-node-60233d825e3e0 .pp-post-event-calendar-cost form .tribe-button:hover {
			background: #000000;
					border-color: #eeeeee;
	}

.fl-node-60233d825e3e0 .pp-content-post .pp-post-title-divider {
	background-color: #333333;
}


.fl-node-60233d825e3e0 .pp-content-post .pp-post-image .pp-content-category-list {
	background-color: #000000;
	color: #ffffff;
		right: auto;
	left: 0;
	}
.fl-node-60233d825e3e0 .pp-content-post .pp-post-image .pp-content-category-list a {
	color: #ffffff;
}

.fl-node-60233d825e3e0 .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-60233d825e3e0 .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-60233d825e3e0 .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

.fl-node-60233d825e3e0 .pp-content-post .pp-post-image .pp-post-title {
	background: rgba(0, 0, 0, 0.5);
	text-align: left;
}


.fl-node-60233d825e3e0 .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-60233d825e3e0 .pp-content-post:hover .pp-post-meta {
	}
.fl-node-60233d825e3e0 .pp-content-post .pp-post-meta span {
			background-color: #333;
	}
.fl-node-60233d825e3e0 .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-60233d825e3e0 .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

.fl-node-60233d825e3e0 .pp-content-grid-post .pp-content-category-list,
.fl-node-60233d825e3e0 .pp-content-carousel-post .pp-content-category-list {
	}

.fl-node-60233d825e3e0 .pp-content-post.pp-grid-style-7 .pp-content-post-meta {
	}
.fl-node-60233d825e3e0 .pp-content-post.pp-grid-style-7:hover .pp-content-post-meta {
	}

.fl-node-60233d825e3e0 .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-60233d825e3e0 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-60233d825e3e0 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-60233d825e3e0 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	background: #000000;
    	opacity: 1;
    box-shadow: none;
}


.fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button {
		width: 40px;
	height: 40px;
	}
.fl-builder-content .fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-builder-content .fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button[class*=owl]:visited,
.fl-page .fl-builder-content .fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-page .fl-builder-content .fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button[class*=owl]:visited {
	}
.fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button svg {
	height: 30px;
}
.fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button svg path {
			fill: #000000;
	}

.fl-builder-content .fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-builder-content .fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button[class*=owl]:focus,
.fl-page .fl-builder-content .fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-page .fl-builder-content .fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button[class*=owl]:focus {
		}
.fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button:hover svg path {
			fill: #eeeeee;
	}



.fl-node-60233d825e3e0 .pp-content-post {
    opacity: 1;
	text-align: left;
}

.fl-node-60233d825e3e0 .pp-content-post:hover {
	}

.fl-node-60233d825e3e0 .pp-content-post.pp-grid-style-7 .pp-content-body {
	}
.fl-node-60233d825e3e0 .pp-content-post.pp-grid-style-7:hover .pp-content-body {
	}

.woocommerce .fl-node-60233d825e3e0 .pp-content-post {
		margin-bottom: 0px;
	}


.fl-node-60233d825e3e0 .pp-content-post {
	position: relative;
		float: left;
	margin-bottom: 0px;
	width: calc((100% - 0.1px) / 1);/*99.9%;*/
			}
.fl-node-60233d825e3e0.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 0px;
}

@media only screen and (min-width: 768px) {
	.fl-node-60233d825e3e0.cg-css-grid .pp-content-post-grid.pp-equal-height {
		grid-column-gap: 0px;
		grid-row-gap: 0ch;
	}
}


.fl-node-60233d825e3e0 .pp-grid-space {
	width: 0px;
}

.fl-node-60233d825e3e0 .pp-content-post .pp-content-grid-more-link,
.fl-node-60233d825e3e0 .pp-content-post .pp-add-to-cart {
	margin-top: 10px;
	margin-bottom: 5px;
    position: relative;
    z-index: 2;
}


.fl-node-60233d825e3e0 .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

.fl-node-60233d825e3e0 .pp-content-post .star-rating {
            margin-left: 0;
    }

.fl-node-60233d825e3e0 .pp-content-post.pp-grid-style-5 .star-rating {
    margin-left: 0;
}

.fl-node-60233d825e3e0 .pp-content-post .star-rating:before,
.fl-node-60233d825e3e0 .pp-content-post .star-rating span:before {
    color: #000000;
}

.fl-node-60233d825e3e0 .pp-content-post .pp-product-price,
.fl-node-60233d825e3e0 .pp-content-post .pp-product-price span.price {
    color: #000000;
    	font-size: px;
	}



.fl-node-60233d825e3e0.cg-square-layout .pp-content-post.pp-grid-style-9 {
	height: auto !important;
}

.fl-node-60233d825e3e0.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-60233d825e3e0.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

	.fl-node-60233d825e3e0 .pp-post-filters-sidebar .pp-content-posts {
		width: 100%;
	}
	.fl-node-60233d825e3e0 .pp-post-filters-sidebar.pp-posts-wrapper {
		display: flex;
		flex-direction: row;
	}
	.fl-node-60233d825e3e0 .pp-post-filters-sidebar-right.pp-posts-wrapper {
		flex-direction: row-reverse;
	}
	.fl-node-60233d825e3e0 .pp-post-filters-sidebar .pp-post-filters-wrapper {
		flex: 1 0 0;
	}
	.fl-node-60233d825e3e0 .pp-post-filters-sidebar .pp-post-filters li {
		display: block;
					margin-bottom: 10px;
			}
		.fl-node-60233d825e3e0 .pp-post-filters-sidebar-right .pp-post-filters li {
		margin-right: 0;
		margin-left: 10px;
	}
	

	@media screen and (max-width: 1200px) {
		
		
		.fl-node-60233d825e3e0 .pp-content-post {
						margin-bottom: 0px;
			width: 100%;
			width: calc((100% - 0px) / 1);
								}

		.fl-node-60233d825e3e0 .pp-grid-space {
			width: 0px;
		}
	}

@media screen and (max-width: 992px) {
	
	
	.fl-node-60233d825e3e0 .pp-content-post {
				margin-bottom: 0px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-60233d825e3e0 .pp-grid-space {
		width: 0px;
	}

	.fl-node-60233d825e3e0 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-60233d825e3e0 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-60233d825e3e0 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0px;
	}
	*/

	.fl-node-60233d825e3e0 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}
}

@media screen and (max-width: 600px) {
	
	
	.fl-node-60233d825e3e0 .pp-content-post {
				margin-bottom: 0px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-60233d825e3e0 .pp-grid-space {
		width: 0px;
	}

	.fl-node-60233d825e3e0 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-60233d825e3e0 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-60233d825e3e0 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0px;
	}
	*/

	.fl-node-60233d825e3e0 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}

	.fl-node-60233d825e3e0 .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-60233d825e3e0 .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-60233d825e3e0 .pp-content-grid-pagination li a.page-numbers, .fl-node-60233d825e3e0 .pp-content-grid-pagination li span.page-numbers, .fl-node-60233d825e3e0 .pp-content-grid-load-more a {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 14px;
}
.fl-node-60233d825e3e0 .pp-content-post .pp-post-title, .fl-node-60233d825e3e0 .pp-content-post .pp-post-title a {
	font-size: 16px;
	line-height: 1.2;
}
.fl-node-60233d825e3e0 .pp-content-post .pp-more-link-button, .fl-node-60233d825e3e0 .pp-content-post .pp-add-to-cart a, .fl-node-60233d825e3e0 .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-60233d825e3e0 .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-60233d825e3e0 .pp-content-post {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-60233d825e3e0 .pp-content-post .pp-content-body {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-60233d825e3e0 .pp-content-post.pp-grid-style-9 {
	height: 100px;
}
 .fl-node-60233d825e3e0 > .fl-module-content {
	margin-top:0px;
}




.fl-node-602343fdb7935 .pp-button-wrap a.pp-button,
.fl-node-602343fdb7935 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
			background: #7ac70c;
	
		background-clip: border-box;
}

.fl-node-602343fdb7935 .pp-button-wrap a.pp-button:hover,
.fl-node-602343fdb7935 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-602343fdb7935 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-602343fdb7935 a.pp-button,
.fl-node-602343fdb7935 a.pp-button * {
	color: #ffffff;
}

.fl-node-602343fdb7935 a.pp-button:hover,
.fl-node-602343fdb7935 a.pp-button:focus,
.fl-node-602343fdb7935 a.pp-button:hover *,
.fl-node-602343fdb7935 a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-602343fdb7935 .pp-button-wrap a.pp-button,
		.fl-node-602343fdb7935 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-602343fdb7935 .pp-button-wrap {
	text-align: left;
}
.fl-node-602343fdb7935 a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-602343fdb7935 .pp-button-wrap a.pp-button, .fl-node-602343fdb7935 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-602343fdb7935 .pp-button-wrap a.pp-button:hover, .fl-node-602343fdb7935 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-602343fdb7935 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-602343fdb7935 > .fl-module-content {
	margin-top:0px;
}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-600a1cfd907cd .pp-heading-content {
	text-align: left;
}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading {
		}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
									display: inline;
	}
div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 0px;
			margin-bottom: 0px;
	}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-600a1cfd907cd .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-600a1cfd907cd .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-600a1cfd907cd .pp-heading-content .pp-sub-heading,
div.fl-node-600a1cfd907cd .pp-heading-content .pp-sub-heading p {
		color: #999999;
	}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-600a1cfd907cd .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-600a1cfd907cd .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-600a1cfd907cd .pp-heading-content {
				text-align: ;
			}
	div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 600px) {
	div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-600a1cfd907cd .pp-heading-content {
				text-align: ;
			}
	div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading .heading-title {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}
div.fl-node-600a1cfd907cd div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-600a1cfd907cd div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-600a1cfd907cd div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-600a1cfd907cd div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-600a1cfd907cd .pp-heading-content .pp-sub-heading, div.fl-node-600a1cfd907cd .pp-heading-content .pp-sub-heading p {
	font-size: 16px;
	line-height: 1.8;
}
div.fl-node-600a1cfd907cd .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-600a1cfd907cd .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-600a1cfd907cd .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-600a1cfd907cd > .fl-module-content {
	margin-top:40px;
	margin-bottom:20px;
}
@media (max-width: 600px) { .fl-node-600a1cfd907cd > .fl-module-content { margin-top:20px; } }



.fl-node-600a1cfd907d7 .pp-button-wrap a.pp-button,
.fl-node-600a1cfd907d7 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
			background: #7ac70c;
	
		background-clip: border-box;
}

.fl-node-600a1cfd907d7 .pp-button-wrap a.pp-button:hover,
.fl-node-600a1cfd907d7 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-600a1cfd907d7 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-600a1cfd907d7 a.pp-button,
.fl-node-600a1cfd907d7 a.pp-button * {
	color: #ffffff;
}

.fl-node-600a1cfd907d7 a.pp-button:hover,
.fl-node-600a1cfd907d7 a.pp-button:focus,
.fl-node-600a1cfd907d7 a.pp-button:hover *,
.fl-node-600a1cfd907d7 a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-600a1cfd907d7 .pp-button-wrap a.pp-button,
		.fl-node-600a1cfd907d7 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-600a1cfd907d7 .pp-button-wrap {
	text-align: left;
}
.fl-node-600a1cfd907d7 a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-600a1cfd907d7 .pp-button-wrap a.pp-button, .fl-node-600a1cfd907d7 .pp-button-wrap a.pp-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-600a1cfd907d7 .pp-button-wrap a.pp-button:hover, .fl-node-600a1cfd907d7 .pp-button-wrap a.pp-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-600a1cfd907d7 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-600a1cfd907d7 > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}
	
	.fl-node-600a1f16ea556 .uabb-countdown-fixed-timer,
	.fl-node-600a1f16ea556 .uabb-countdown-evergreen-timer {
		text-align: center;
	}
.fl-node-600a1f16ea556 .uabb-countdown-holding {
	margin-left: 5px;margin-right: 5px;	}
.fl-node-600a1f16ea556 .uabb-countdown-unit-names {

	}
.fl-node-600a1f16ea556 .uabb-count-down-digit {
				margin-top:2px;	}
	

.fl-node-600a1f16ea556 .uabb-countdown-fixed-timer .uabb-count-down-digit,
.fl-node-600a1f16ea556 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
			color: #ffffff;
	}

/* Typography style starts here  */



.fl-node-600a1f16ea556 .uabb-countdown-fixed-timer .uabb-count-down-unit,
.fl-node-600a1f16ea556 .uabb-countdown-evergreen-timer .uabb-count-down-unit {
			color: #7ac70c;
	}


/* Typography responsive layout starts here */
/* Typography responsive layout Ends here */
.fl-node-600a1f16ea556 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-600a1f16ea556 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	font-size: 22px;
	line-height: 1em;
}
.fl-node-600a1f16ea556 .uabb-countdown-fixed-timer .uabb-count-down-unit, .fl-node-600a1f16ea556 .uabb-countdown-evergreen-timer .uabb-count-down-unit {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 1.33em;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-node-600a1f16ea556 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-600a1f16ea556 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
		font-size: 50px;
		line-height: 1em;
	}
}
@media(max-width: 600px) {
	.fl-node-600a1f16ea556 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-600a1f16ea556 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
		font-size: 40px;
		line-height: 1em;
	}
}
 .fl-node-600a1f16ea556 > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}




.fl-node-600a1f16ea55a .pp-button-wrap a.pp-button,
.fl-node-600a1f16ea55a .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
	
		background-clip: border-box;
}

.fl-node-600a1f16ea55a .pp-button-wrap a.pp-button:hover,
.fl-node-600a1f16ea55a .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-600a1f16ea55a 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-600a1f16ea55a a.pp-button,
.fl-node-600a1f16ea55a a.pp-button * {
	color: #ffffff;
}

.fl-node-600a1f16ea55a a.pp-button:hover,
.fl-node-600a1f16ea55a a.pp-button:focus,
.fl-node-600a1f16ea55a a.pp-button:hover *,
.fl-node-600a1f16ea55a a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-600a1f16ea55a .pp-button-wrap a.pp-button,
		.fl-node-600a1f16ea55a .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-600a1f16ea55a .pp-button-wrap {
	text-align: left;
}
.fl-node-600a1f16ea55a a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-600a1f16ea55a .pp-button-wrap a.pp-button, .fl-node-600a1f16ea55a .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-600a1f16ea55a .pp-button-wrap a.pp-button:hover, .fl-node-600a1f16ea55a .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-600a1f16ea55a .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-600a1f16ea55a > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}




.fl-node-6010bb75ea438 .pp-button-wrap a.pp-button,
.fl-node-6010bb75ea438 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
	
		background-clip: border-box;
}

.fl-node-6010bb75ea438 .pp-button-wrap a.pp-button:hover,
.fl-node-6010bb75ea438 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-6010bb75ea438 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-6010bb75ea438 a.pp-button,
.fl-node-6010bb75ea438 a.pp-button * {
	color: #ffffff;
}

.fl-node-6010bb75ea438 a.pp-button:hover,
.fl-node-6010bb75ea438 a.pp-button:focus,
.fl-node-6010bb75ea438 a.pp-button:hover *,
.fl-node-6010bb75ea438 a.pp-button:focus * {
	color: #000000;
}

			.fl-node-6010bb75ea438 .pp-button-wrap a.pp-button,
			.fl-node-6010bb75ea438 .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6010bb75ea438 .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #000000;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6010bb75ea438 .pp-button-wrap a.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);
	        }
	    .fl-node-6010bb75ea438 .pp-button-wrap {
	text-align: left;
}
.fl-node-6010bb75ea438 a.pp-button {
	padding-top: 6px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
}
.fl-node-6010bb75ea438 .pp-button-wrap a.pp-button, .fl-node-6010bb75ea438 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
}
.fl-node-6010bb75ea438 .pp-button-wrap a.pp-button:hover, .fl-node-6010bb75ea438 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6010bb75ea438 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6010bb75ea438 > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}




.fl-node-6010bc88c8920 .pp-button-wrap a.pp-button,
.fl-node-6010bc88c8920 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
	
		background-clip: border-box;
}

.fl-node-6010bc88c8920 .pp-button-wrap a.pp-button:hover,
.fl-node-6010bc88c8920 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-6010bc88c8920 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-6010bc88c8920 a.pp-button,
.fl-node-6010bc88c8920 a.pp-button * {
	color: #ffffff;
}

.fl-node-6010bc88c8920 a.pp-button:hover,
.fl-node-6010bc88c8920 a.pp-button:focus,
.fl-node-6010bc88c8920 a.pp-button:hover *,
.fl-node-6010bc88c8920 a.pp-button:focus * {
	color: #000000;
}

			.fl-node-6010bc88c8920 .pp-button-wrap a.pp-button,
			.fl-node-6010bc88c8920 .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6010bc88c8920 .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #000000;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6010bc88c8920 .pp-button-wrap a.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);
	        }
	    .fl-node-6010bc88c8920 .pp-button-wrap {
	text-align: left;
}
.fl-node-6010bc88c8920 a.pp-button {
	padding-top: 6px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
}
.fl-node-6010bc88c8920 .pp-button-wrap a.pp-button, .fl-node-6010bc88c8920 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
}
.fl-node-6010bc88c8920 .pp-button-wrap a.pp-button:hover, .fl-node-6010bc88c8920 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6010bc88c8920 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6010bc88c8920 > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}




.fl-node-6010c8f844e98 .pp-button-wrap a.pp-button,
.fl-node-6010c8f844e98 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
	
		background-clip: border-box;
}

.fl-node-6010c8f844e98 .pp-button-wrap a.pp-button:hover,
.fl-node-6010c8f844e98 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-6010c8f844e98 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-6010c8f844e98 a.pp-button,
.fl-node-6010c8f844e98 a.pp-button * {
	color: #ffffff;
}

.fl-node-6010c8f844e98 a.pp-button:hover,
.fl-node-6010c8f844e98 a.pp-button:focus,
.fl-node-6010c8f844e98 a.pp-button:hover *,
.fl-node-6010c8f844e98 a.pp-button:focus * {
	color: #000000;
}

			.fl-node-6010c8f844e98 .pp-button-wrap a.pp-button,
			.fl-node-6010c8f844e98 .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6010c8f844e98 .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #000000;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6010c8f844e98 .pp-button-wrap a.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);
	        }
	    .fl-node-6010c8f844e98 .pp-button-wrap {
	text-align: left;
}
.fl-node-6010c8f844e98 a.pp-button {
	padding-top: 6px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
}
.fl-node-6010c8f844e98 .pp-button-wrap a.pp-button, .fl-node-6010c8f844e98 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
}
.fl-node-6010c8f844e98 .pp-button-wrap a.pp-button:hover, .fl-node-6010c8f844e98 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6010c8f844e98 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6010c8f844e98 > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}




.fl-node-6018cf5b2bce0 .pp-button-wrap a.pp-button,
.fl-node-6018cf5b2bce0 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
	
		background-clip: border-box;
}

.fl-node-6018cf5b2bce0 .pp-button-wrap a.pp-button:hover,
.fl-node-6018cf5b2bce0 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-6018cf5b2bce0 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-6018cf5b2bce0 a.pp-button,
.fl-node-6018cf5b2bce0 a.pp-button * {
	color: #ffffff;
}

.fl-node-6018cf5b2bce0 a.pp-button:hover,
.fl-node-6018cf5b2bce0 a.pp-button:focus,
.fl-node-6018cf5b2bce0 a.pp-button:hover *,
.fl-node-6018cf5b2bce0 a.pp-button:focus * {
	color: #000000;
}

			.fl-node-6018cf5b2bce0 .pp-button-wrap a.pp-button,
			.fl-node-6018cf5b2bce0 .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6018cf5b2bce0 .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #000000;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6018cf5b2bce0 .pp-button-wrap a.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);
	        }
	    .fl-node-6018cf5b2bce0 .pp-button-wrap {
	text-align: left;
}
.fl-node-6018cf5b2bce0 a.pp-button {
	padding-top: 6px;
	padding-right: 20px;
	padding-bottom: 8px;
	padding-left: 20px;
}
.fl-node-6018cf5b2bce0 .pp-button-wrap a.pp-button, .fl-node-6018cf5b2bce0 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-6018cf5b2bce0 .pp-button-wrap a.pp-button:hover, .fl-node-6018cf5b2bce0 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6018cf5b2bce0 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6018cf5b2bce0 > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper {
	max-width: 100%;
}

.fl-node-6018cf6caaa17 .pp-gf-content {
	background-color: transparent;
			background-size: cover;
			background-repeat: no-repeat;
	}


.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper ul li.gfield {
	list-style-type: none !important;
		margin-bottom: 10px;
	}

.fl-builder-content .fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_title,
.fl-builder-content .fl-node-6018cf6caaa17 .pp-gf-content .form-title {
		display: none;
}

.fl-builder-content .fl-node-6018cf6caaa17 .pp-gf-content .form-title {
	display: none;
}

.fl-builder-content .fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_title {
	}

.fl-builder-content .fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper span.gform_description,
.fl-builder-content .fl-node-6018cf6caaa17 .pp-gf-content .form-description {
		display: none;
}

.fl-builder-content .fl-node-6018cf6caaa17 .pp-gf-content .form-description {
	display: none;
}

.fl-builder-content .fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper span.gform_description {
	}

.fl-builder-content .fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield .gfield_label {
			display: none;
	}


.fl-builder-content .fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield_required {
	}

.fl-builder-content .fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield .ginput_complex.ginput_container label {
		display: none;
	}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .ginput_container label,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper table.gfield_list thead th,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper span.ginput_product_price,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper span.ginput_product_price_label,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper span.ginput_quantity_label,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield_html {
		font-weight: 300;}


.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper span.ginput_product_price {
		color: #900900 !important;
	}


.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield .gfield_description {
		color: #000000;
	}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gsection {
		border-bottom-width: 1px;
			border-bottom-color: #cccccc;
				margin-bottom: 20px;
	}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper h2.gsection_title,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper h3.gsection_title {
		color: #333333;
	}


.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield select,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield textarea {
		color: #4c4c4c;
		background-color: #ededed;
	width: 100% !important;	outline: none;
}


.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield select {
			height: px;
	}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]),
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .ginput_complex select {
		margin-bottom: 3px;
	}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .ginput_complex span {
		margin-bottom: 4px;
	}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield input::-webkit-input-placeholder {
	color: #c1c1c1;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield input:-moz-placeholder {
	color: #c1c1c1;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield input::-moz-placeholder {
	color: #c1c1c1;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield input:-ms-input-placeholder {
	color: #c1c1c1;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield textarea::-webkit-input-placeholder {
	color: #c1c1c1;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield textarea:-moz-placeholder {
	color: #c1c1c1;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield textarea::-moz-placeholder {
	color: #c1c1c1;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield textarea:-ms-input-placeholder {
	color: #c1c1c1;
}


.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']):focus,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield select:focus,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield textarea:focus {
	border-color: #7ac70c;
}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .top_label input.medium,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .top_label select.medium {
	width: 100% !important;
}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper textarea.medium {
	width: 100% !important;}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .ginput_complex .ginput_full input[type="text"],
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .ginput_complex  input[type="text"] {
	width: 100% !important;
}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .ginput_complex .ginput_right {
	margin-left: 0 !important;
}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .ginput_complex .ginput_right input,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .ginput_complex .ginput_right select {
	width: 100% !important;}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_footer {
		text-align: left;
				justify-content: flex-start;
			}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform-button,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_footer .gform_button,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_page_footer .button,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
		width: auto;
			color: #ffffff;
		background-color: #7ac70c;
		padding-top: 15px;
	padding-bottom: 15px;
			padding-left: 45px;
	padding-right: 45px;
		white-space: normal;
}


.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_page_footer .button {
	}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform-button:hover,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_footer .gform_button:hover,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_page_footer .button:hover {
		color: #7ac70c;
		background: #ffffff;
}


.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield input[type=file] {
	background-color: transparent;
					border-style: none;
					}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .validation_error,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_validation_errors > h2,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper li.gfield.gfield_error,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
		color: #790000 !important;
		border-color: transparent !important;
			border: none;
		padding-top: 0;
		padding-bottom: 0;
	}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .validation_error,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_validation_errors > h2 {
			display: none !important;
	}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield.gfield_error {
	background-color: transparent;
	width: 100%;
}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield.gfield_error .gfield_label {
		margin-left: 0;
}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield_error .validation_message {
		display: block;
			color: #ef3300;
		}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
	margin-top: 8px;
}

.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield_error input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield_error .ginput_container select,
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield_error .ginput_container textarea {
	border-color: #ef3300;
		border-width: 1px !important;
	}


@media only screen and (max-width: 992px) {
	.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
					}
}

@media only screen and (max-width: 600px) {
	.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
					}
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform-button, .fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_footer .gform_button,
							.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_page_footer .button {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #7ac70c;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-6018cf6caaa17 .pp-gf-content {
	padding-top: 0px;
	padding-right: 0px;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform-button,
							.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_footer .gform_button, 
							.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gform_page_footer .button {
	font-family: "DM Sans", sans-serif;
	font-weight: 500;
	font-size: 16px;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield .gfield_label {
	font-weight: 300;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield .gfield_description {
	font-weight: 300;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
						.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield select,
						.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield textarea {
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	text-align: left;
}
.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
							.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield select,
							.fl-node-6018cf6caaa17 .pp-gf-content .gform_wrapper .gfield textarea {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #4C4C4C;
	border-bottom-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	padding: 12px;
}
 .fl-node-6018cf6caaa17 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
	
	.fl-node-60233d0685d0a .uabb-countdown-fixed-timer,
	.fl-node-60233d0685d0a .uabb-countdown-evergreen-timer {
		text-align: center;
	}
.fl-node-60233d0685d0a .uabb-countdown-holding {
	margin-left: 5px;margin-right: 5px;	}
.fl-node-60233d0685d0a .uabb-countdown-unit-names {

	}
.fl-node-60233d0685d0a .uabb-count-down-digit {
				margin-top:2px;	}
	

.fl-node-60233d0685d0a .uabb-countdown-fixed-timer .uabb-count-down-digit,
.fl-node-60233d0685d0a .uabb-countdown-evergreen-timer .uabb-count-down-digit {
			color: #ffffff;
	}

/* Typography style starts here  */



.fl-node-60233d0685d0a .uabb-countdown-fixed-timer .uabb-count-down-unit,
.fl-node-60233d0685d0a .uabb-countdown-evergreen-timer .uabb-count-down-unit {
			color: #7ac70c;
	}


/* Typography responsive layout starts here */
/* Typography responsive layout Ends here */
.fl-node-60233d0685d0a .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-60233d0685d0a .uabb-countdown-evergreen-timer .uabb-count-down-digit {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	font-size: 22px;
	line-height: 1em;
}
.fl-node-60233d0685d0a .uabb-countdown-fixed-timer .uabb-count-down-unit, .fl-node-60233d0685d0a .uabb-countdown-evergreen-timer .uabb-count-down-unit {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 1.33em;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-node-60233d0685d0a .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-60233d0685d0a .uabb-countdown-evergreen-timer .uabb-count-down-digit {
		font-size: 50px;
		line-height: 1em;
	}
}
@media(max-width: 600px) {
	.fl-node-60233d0685d0a .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-60233d0685d0a .uabb-countdown-evergreen-timer .uabb-count-down-digit {
		font-size: 40px;
		line-height: 1em;
	}
}
 .fl-node-60233d0685d0a > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}




.fl-node-60233d0685d0f .pp-button-wrap a.pp-button,
.fl-node-60233d0685d0f .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
	
		background-clip: border-box;
}

.fl-node-60233d0685d0f .pp-button-wrap a.pp-button:hover,
.fl-node-60233d0685d0f .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-60233d0685d0f 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-60233d0685d0f a.pp-button,
.fl-node-60233d0685d0f a.pp-button * {
	color: #ffffff;
}

.fl-node-60233d0685d0f a.pp-button:hover,
.fl-node-60233d0685d0f a.pp-button:focus,
.fl-node-60233d0685d0f a.pp-button:hover *,
.fl-node-60233d0685d0f a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-60233d0685d0f .pp-button-wrap a.pp-button,
		.fl-node-60233d0685d0f .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-60233d0685d0f .pp-button-wrap {
	text-align: left;
}
.fl-node-60233d0685d0f a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-60233d0685d0f .pp-button-wrap a.pp-button, .fl-node-60233d0685d0f .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-60233d0685d0f .pp-button-wrap a.pp-button:hover, .fl-node-60233d0685d0f .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-60233d0685d0f .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-60233d0685d0f > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}
	
	.fl-node-60233d5119804 .uabb-countdown-fixed-timer,
	.fl-node-60233d5119804 .uabb-countdown-evergreen-timer {
		text-align: center;
	}
.fl-node-60233d5119804 .uabb-countdown-holding {
	margin-left: 5px;margin-right: 5px;	}
.fl-node-60233d5119804 .uabb-countdown-unit-names {

	}
.fl-node-60233d5119804 .uabb-count-down-digit {
				margin-top:2px;	}
	

.fl-node-60233d5119804 .uabb-countdown-fixed-timer .uabb-count-down-digit,
.fl-node-60233d5119804 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
			color: #ffffff;
	}

/* Typography style starts here  */



.fl-node-60233d5119804 .uabb-countdown-fixed-timer .uabb-count-down-unit,
.fl-node-60233d5119804 .uabb-countdown-evergreen-timer .uabb-count-down-unit {
			color: #7ac70c;
	}


/* Typography responsive layout starts here */
/* Typography responsive layout Ends here */
.fl-node-60233d5119804 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-60233d5119804 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	font-size: 22px;
	line-height: 1em;
}
.fl-node-60233d5119804 .uabb-countdown-fixed-timer .uabb-count-down-unit, .fl-node-60233d5119804 .uabb-countdown-evergreen-timer .uabb-count-down-unit {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 1.33em;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-node-60233d5119804 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-60233d5119804 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
		font-size: 50px;
		line-height: 1em;
	}
}
@media(max-width: 600px) {
	.fl-node-60233d5119804 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-60233d5119804 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
		font-size: 40px;
		line-height: 1em;
	}
}
 .fl-node-60233d5119804 > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}




.fl-node-60233d5119809 .pp-button-wrap a.pp-button,
.fl-node-60233d5119809 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
	
		background-clip: border-box;
}

.fl-node-60233d5119809 .pp-button-wrap a.pp-button:hover,
.fl-node-60233d5119809 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-60233d5119809 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-60233d5119809 a.pp-button,
.fl-node-60233d5119809 a.pp-button * {
	color: #ffffff;
}

.fl-node-60233d5119809 a.pp-button:hover,
.fl-node-60233d5119809 a.pp-button:focus,
.fl-node-60233d5119809 a.pp-button:hover *,
.fl-node-60233d5119809 a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-60233d5119809 .pp-button-wrap a.pp-button,
		.fl-node-60233d5119809 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-60233d5119809 .pp-button-wrap {
	text-align: left;
}
.fl-node-60233d5119809 a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-60233d5119809 .pp-button-wrap a.pp-button, .fl-node-60233d5119809 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-60233d5119809 .pp-button-wrap a.pp-button:hover, .fl-node-60233d5119809 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-60233d5119809 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-60233d5119809 > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}
	
	.fl-node-60233d825e3e1 .uabb-countdown-fixed-timer,
	.fl-node-60233d825e3e1 .uabb-countdown-evergreen-timer {
		text-align: center;
	}
.fl-node-60233d825e3e1 .uabb-countdown-holding {
	margin-left: 5px;margin-right: 5px;	}
.fl-node-60233d825e3e1 .uabb-countdown-unit-names {

	}
.fl-node-60233d825e3e1 .uabb-count-down-digit {
				margin-top:2px;	}
	

.fl-node-60233d825e3e1 .uabb-countdown-fixed-timer .uabb-count-down-digit,
.fl-node-60233d825e3e1 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
			color: #ffffff;
	}

/* Typography style starts here  */



.fl-node-60233d825e3e1 .uabb-countdown-fixed-timer .uabb-count-down-unit,
.fl-node-60233d825e3e1 .uabb-countdown-evergreen-timer .uabb-count-down-unit {
			color: #7ac70c;
	}


/* Typography responsive layout starts here */
/* Typography responsive layout Ends here */
.fl-node-60233d825e3e1 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-60233d825e3e1 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	font-size: 22px;
	line-height: 1em;
}
.fl-node-60233d825e3e1 .uabb-countdown-fixed-timer .uabb-count-down-unit, .fl-node-60233d825e3e1 .uabb-countdown-evergreen-timer .uabb-count-down-unit {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 1.33em;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-node-60233d825e3e1 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-60233d825e3e1 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
		font-size: 50px;
		line-height: 1em;
	}
}
@media(max-width: 600px) {
	.fl-node-60233d825e3e1 .uabb-countdown-fixed-timer .uabb-count-down-digit, .fl-node-60233d825e3e1 .uabb-countdown-evergreen-timer .uabb-count-down-digit {
		font-size: 40px;
		line-height: 1em;
	}
}
 .fl-node-60233d825e3e1 > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}




.fl-node-60233d825e3eb .pp-button-wrap a.pp-button,
.fl-node-60233d825e3eb .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
	
		background-clip: border-box;
}

.fl-node-60233d825e3eb .pp-button-wrap a.pp-button:hover,
.fl-node-60233d825e3eb .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-60233d825e3eb 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-60233d825e3eb a.pp-button,
.fl-node-60233d825e3eb a.pp-button * {
	color: #ffffff;
}

.fl-node-60233d825e3eb a.pp-button:hover,
.fl-node-60233d825e3eb a.pp-button:focus,
.fl-node-60233d825e3eb a.pp-button:hover *,
.fl-node-60233d825e3eb a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-60233d825e3eb .pp-button-wrap a.pp-button,
		.fl-node-60233d825e3eb .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-60233d825e3eb .pp-button-wrap {
	text-align: left;
}
.fl-node-60233d825e3eb a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-60233d825e3eb .pp-button-wrap a.pp-button, .fl-node-60233d825e3eb .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-60233d825e3eb .pp-button-wrap a.pp-button:hover, .fl-node-60233d825e3eb .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-60233d825e3eb .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-60233d825e3eb > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}


/* Fix for Box module */
.fl-node-600a1cfd907d0 {
	min-width: 1px;
}


.fl-node-600a1cfd907d0 .pp-content-grid-pagination {
			text-align: center;
	}
.fl-node-600a1cfd907d0 .pp-content-grid-pagination.fl-builder-pagination {
    padding-top: 15px;
    padding-bottom: 15px;
}
.fl-node-600a1cfd907d0 .pp-content-grid-pagination li a.page-numbers,
.fl-node-600a1cfd907d0 .pp-content-grid-pagination li span.page-numbers {
			background-color: #ffffff;
				color: #000000;
		margin-right: 5px;
}

.fl-node-600a1cfd907d0 .pp-content-grid-pagination li a.page-numbers:hover,
.fl-node-600a1cfd907d0 .pp-content-grid-pagination li span.current,
.fl-node-600a1cfd907d0 .pp-content-grid-pagination li span[aria-current] {
			background-color: #eeeeee;
		}

.fl-node-600a1cfd907d0 .pp-content-grid-load-more {
	margin-top: 15px;
			text-align: center;
	}
.fl-node-600a1cfd907d0 .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-600a1cfd907d0 .pp-content-grid-load-more a:hover {
			background-color: #eeeeee;
		}

.fl-node-600a1cfd907d0 .pp-content-post .pp-post-title {
				margin-top: 0px;
				margin-bottom: 0px;
	}

.fl-node-600a1cfd907d0 .pp-content-post .pp-post-title,
.fl-node-600a1cfd907d0 .pp-content-post .pp-post-title a {
			color: #ffffff;
	}
.fl-node-600a1cfd907d0 .pp-content-post:hover .pp-post-title,
.fl-node-600a1cfd907d0 .pp-content-post:hover .pp-post-title a {
	}


.fl-node-600a1cfd907d0 .pp-content-post .pp-post-content {
				margin-top: 5px;
				margin-bottom: 5px;
	}
.fl-node-600a1cfd907d0 .pp-content-post:hover .pp-post-content {
	}

.fl-node-600a1cfd907d0 .pp-post-event-calendar-date,
.fl-node-600a1cfd907d0 .pp-post-event-calendar-date span {
		}
.fl-node-600a1cfd907d0 .pp-post-event-calendar-venue,
.fl-node-600a1cfd907d0 .pp-post-event-calendar-venue span.tribe-address {
	}
.fl-node-600a1cfd907d0 .pp-post-event-calendar-cost,
.fl-node-600a1cfd907d0 .pp-post-event-calendar-cost span.ticket-cost {
	}
.fl-node-600a1cfd907d0 .pp-post-event-calendar-cost form {
	margin-top: 10px;
}

.fl-node-600a1cfd907d0 .pp-content-post .pp-more-link-button,
.fl-node-600a1cfd907d0 .pp-content-post .pp-more-link-button:visited,
.fl-node-600a1cfd907d0 .pp-content-post .pp-add-to-cart a,
.fl-node-600a1cfd907d0 .pp-content-post .pp-add-to-cart a:visited,
.fl-node-600a1cfd907d0 .pp-post-event-calendar-cost form .tribe-button,
.fl-node-600a1cfd907d0 .pp-post-event-calendar-cost form .tribe-button:visited {
	
			color: #ffffff;
	
   cursor: pointer;
}



.fl-node-600a1cfd907d0 .pp-content-post .pp-content-grid-more:hover,
.fl-node-600a1cfd907d0 .pp-content-post .pp-add-to-cart a:hover,
.fl-node-600a1cfd907d0 .pp-post-event-calendar-cost form .tribe-button:hover {
			background: #000000;
					border-color: #eeeeee;
	}

.fl-node-600a1cfd907d0 .pp-content-post .pp-post-title-divider {
	background-color: #333333;
}


.fl-node-600a1cfd907d0 .pp-content-post .pp-post-image .pp-content-category-list {
	background-color: #000000;
	color: #ffffff;
		right: auto;
	left: 0;
	}
.fl-node-600a1cfd907d0 .pp-content-post .pp-post-image .pp-content-category-list a {
	color: #ffffff;
}

.fl-node-600a1cfd907d0 .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-600a1cfd907d0 .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-600a1cfd907d0 .pp-content-post.pp-grid-style-6 .pp-post-image .pp-content-post-date {
	background-color: #000000;
	color: #ffffff;
}

.fl-node-600a1cfd907d0 .pp-content-post .pp-post-image .pp-post-title {
	background: rgba(0, 0, 0, 0.5);
	text-align: left;
}


.fl-node-600a1cfd907d0 .pp-content-post .pp-post-meta {
		color: #606060;
	}
.fl-node-600a1cfd907d0 .pp-content-post:hover .pp-post-meta {
	}
.fl-node-600a1cfd907d0 .pp-content-post .pp-post-meta span {
			background-color: #333;
	}
.fl-node-600a1cfd907d0 .pp-content-post .pp-post-meta .pp-post-meta-term {
		color: #606060;
	}
.fl-node-600a1cfd907d0 .pp-content-post:hover .pp-post-meta .pp-post-meta-term {
	}

.fl-node-600a1cfd907d0 .pp-content-grid-post .pp-content-category-list,
.fl-node-600a1cfd907d0 .pp-content-carousel-post .pp-content-category-list {
	}

.fl-node-600a1cfd907d0 .pp-content-post.pp-grid-style-7 .pp-content-post-meta {
	}
.fl-node-600a1cfd907d0 .pp-content-post.pp-grid-style-7:hover .pp-content-post-meta {
	}

.fl-node-600a1cfd907d0 .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-600a1cfd907d0 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot.active span,
.fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:hover span,
.fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-theme .owl-dots .owl-dot:focus span {
    	background: #000000;
    	opacity: 1;
    box-shadow: none;
}


.fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button {
		width: 40px;
	height: 40px;
	}
.fl-builder-content .fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-builder-content .fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button[class*=owl]:visited,
.fl-page .fl-builder-content .fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button[class*=owl],
.fl-page .fl-builder-content .fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button[class*=owl]:visited {
	}
.fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button svg {
	height: 30px;
}
.fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button svg path {
			fill: #000000;
	}

.fl-builder-content .fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-builder-content .fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button[class*=owl]:focus,
.fl-page .fl-builder-content .fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button[class*=owl]:hover,
.fl-page .fl-builder-content .fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button[class*=owl]:focus {
		}
.fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button:hover svg path {
			fill: #eeeeee;
	}



.fl-node-600a1cfd907d0 .pp-content-post {
    opacity: 1;
	text-align: left;
}

.fl-node-600a1cfd907d0 .pp-content-post:hover {
	}

.fl-node-600a1cfd907d0 .pp-content-post.pp-grid-style-7 .pp-content-body {
	}
.fl-node-600a1cfd907d0 .pp-content-post.pp-grid-style-7:hover .pp-content-body {
	}

.woocommerce .fl-node-600a1cfd907d0 .pp-content-post {
		margin-bottom: 3px;
	}


.fl-node-600a1cfd907d0 .pp-content-post {
	position: relative;
		float: left;
	margin-bottom: 3px;
	width: calc((100% - 3.1px) / 2);/*48.4%;*/
			}
.fl-node-600a1cfd907d0.cg-static-grid .pp-content-post.pp-content-grid-post {
	margin-right: 3px;
}

@media only screen and (min-width: 768px) {
	.fl-node-600a1cfd907d0.cg-css-grid .pp-content-post-grid.pp-equal-height {
		grid-column-gap: 3px;
		grid-row-gap: 3ch;
	}
}


.fl-node-600a1cfd907d0 .pp-grid-space {
	width: 3px;
}

.fl-node-600a1cfd907d0 .pp-content-post .pp-content-grid-more-link,
.fl-node-600a1cfd907d0 .pp-content-post .pp-add-to-cart {
	margin-top: 10px;
	margin-bottom: 5px;
    position: relative;
    z-index: 2;
}


.fl-node-600a1cfd907d0 .pp-content-post .pp-content-body {
    }

/* Woocommerce Style */

.fl-node-600a1cfd907d0 .pp-content-post .star-rating {
            margin-left: 0;
    }

.fl-node-600a1cfd907d0 .pp-content-post.pp-grid-style-5 .star-rating {
    margin-left: 0;
}

.fl-node-600a1cfd907d0 .pp-content-post .star-rating:before,
.fl-node-600a1cfd907d0 .pp-content-post .star-rating span:before {
    color: #000000;
}

.fl-node-600a1cfd907d0 .pp-content-post .pp-product-price,
.fl-node-600a1cfd907d0 .pp-content-post .pp-product-price span.price {
    color: #000000;
    	font-size: px;
	}



.fl-node-600a1cfd907d0.cg-square-layout .pp-content-post.pp-grid-style-9 {
	height: auto !important;
}

.fl-node-600a1cfd907d0.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-600a1cfd907d0.cg-square-layout .pp-content-post.pp-grid-style-9 .pp-post-featured-img {
   width: 100%;
   height: 100%;
   position: absolute;
}

	.fl-node-600a1cfd907d0 .pp-post-filters-sidebar .pp-content-posts {
		width: 100%;
	}
	.fl-node-600a1cfd907d0 .pp-post-filters-sidebar.pp-posts-wrapper {
		display: flex;
		flex-direction: row;
	}
	.fl-node-600a1cfd907d0 .pp-post-filters-sidebar-right.pp-posts-wrapper {
		flex-direction: row-reverse;
	}
	.fl-node-600a1cfd907d0 .pp-post-filters-sidebar .pp-post-filters-wrapper {
		flex: 1 0 0;
	}
	.fl-node-600a1cfd907d0 .pp-post-filters-sidebar .pp-post-filters li {
		display: block;
					margin-bottom: 10px;
			}
		.fl-node-600a1cfd907d0 .pp-post-filters-sidebar-right .pp-post-filters li {
		margin-right: 0;
		margin-left: 10px;
	}
	

	@media screen and (max-width: 1200px) {
		
		
		.fl-node-600a1cfd907d0 .pp-content-post {
						margin-bottom: 3px;
			width: 48.5%;
			width: calc((100% - 3px) / 2);
								}

		.fl-node-600a1cfd907d0 .pp-grid-space {
			width: 3px;
		}
	}

@media screen and (max-width: 992px) {
	
	
	.fl-node-600a1cfd907d0 .pp-content-post {
				margin-bottom: 3px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-600a1cfd907d0 .pp-grid-space {
		width: 3px;
	}

	.fl-node-600a1cfd907d0 .pp-content-grid-post:nth-of-type(2n+1) {
	    clear: none;
	}

	.fl-node-600a1cfd907d0 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-600a1cfd907d0 .pp-content-grid-post:nth-of-type(2n) {
	    margin-right: 3px;
	}
	*/

	.fl-node-600a1cfd907d0 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}
}

@media screen and (max-width: 600px) {
	
	
	.fl-node-600a1cfd907d0 .pp-content-post {
				margin-bottom: 3px;
		width: 100%;
		width: calc((100% - 0px) / 1);
					}

	.fl-node-600a1cfd907d0 .pp-grid-space {
		width: 3px;
	}

	.fl-node-600a1cfd907d0 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: none;
	}

	.fl-node-600a1cfd907d0 .pp-content-grid-post:nth-of-type(1n+1) {
	    clear: left;
	}

	/*
	.fl-node-600a1cfd907d0 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 3px;
	}
	*/

	.fl-node-600a1cfd907d0 .pp-content-grid-post:nth-of-type(1n) {
	    margin-right: 0;
	}

	.fl-node-600a1cfd907d0 .pp-content-post.pp-grid-style-8 .pp-post-image,
	.fl-node-600a1cfd907d0 .pp-content-post.pp-grid-style-8 .pp-content-body {
		float: none;
		width: 100%;
	}
}.fl-node-600a1cfd907d0 .pp-content-grid-pagination li a.page-numbers, .fl-node-600a1cfd907d0 .pp-content-grid-pagination li span.page-numbers, .fl-node-600a1cfd907d0 .pp-content-grid-load-more a {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 14px;
}
.fl-node-600a1cfd907d0 .pp-content-post .pp-post-title, .fl-node-600a1cfd907d0 .pp-content-post .pp-post-title a {
	font-size: 14px;
	line-height: 1.2;
}
.fl-node-600a1cfd907d0 .pp-content-post .pp-more-link-button, .fl-node-600a1cfd907d0 .pp-content-post .pp-add-to-cart a, .fl-node-600a1cfd907d0 .pp-post-event-calendar-cost form .tribe-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button.owl-prev {
	left: -15px;
}
.fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button.owl-next {
	right: -15px;
}
.fl-node-600a1cfd907d0 .pp-content-post-carousel .owl-nav button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-600a1cfd907d0 .pp-content-post {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-600a1cfd907d0 .pp-content-post .pp-content-body {
	padding-top: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	padding-left: 40px;
}
.fl-node-600a1cfd907d0 .pp-content-post.pp-grid-style-9 {
	height: 300px;
}
 .fl-node-600a1cfd907d0 > .fl-module-content {
	margin-top:0px;
}




.fl-node-600a1f16ea557 .pp-button-wrap a.pp-button,
.fl-node-600a1f16ea557 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
			background: #7ac70c;
	
		background-clip: border-box;
}

.fl-node-600a1f16ea557 .pp-button-wrap a.pp-button:hover,
.fl-node-600a1f16ea557 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-600a1f16ea557 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-600a1f16ea557 a.pp-button,
.fl-node-600a1f16ea557 a.pp-button * {
	color: #ffffff;
}

.fl-node-600a1f16ea557 a.pp-button:hover,
.fl-node-600a1f16ea557 a.pp-button:focus,
.fl-node-600a1f16ea557 a.pp-button:hover *,
.fl-node-600a1f16ea557 a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-600a1f16ea557 .pp-button-wrap a.pp-button,
		.fl-node-600a1f16ea557 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-600a1f16ea557 .pp-button-wrap {
	text-align: left;
}
.fl-node-600a1f16ea557 a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-600a1f16ea557 .pp-button-wrap a.pp-button, .fl-node-600a1f16ea557 .pp-button-wrap a.pp-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-600a1f16ea557 .pp-button-wrap a.pp-button:hover, .fl-node-600a1f16ea557 .pp-button-wrap a.pp-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-600a1f16ea557 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-600a1f16ea557 > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}




.fl-node-6010bb75ea439 .pp-button-wrap a.pp-button,
.fl-node-6010bb75ea439 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
	
		background-clip: border-box;
}

.fl-node-6010bb75ea439 .pp-button-wrap a.pp-button:hover,
.fl-node-6010bb75ea439 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-6010bb75ea439 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-6010bb75ea439 a.pp-button,
.fl-node-6010bb75ea439 a.pp-button * {
	color: #ffffff;
}

.fl-node-6010bb75ea439 a.pp-button:hover,
.fl-node-6010bb75ea439 a.pp-button:focus,
.fl-node-6010bb75ea439 a.pp-button:hover *,
.fl-node-6010bb75ea439 a.pp-button:focus * {
	color: #000000;
}

			.fl-node-6010bb75ea439 .pp-button-wrap a.pp-button,
			.fl-node-6010bb75ea439 .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6010bb75ea439 .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #000000;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6010bb75ea439 .pp-button-wrap a.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);
	        }
	    .fl-node-6010bb75ea439 .pp-button-wrap {
	text-align: left;
}
.fl-node-6010bb75ea439 a.pp-button {
	padding-top: 7px;
	padding-right: 20px;
	padding-bottom: 7px;
	padding-left: 20px;
}
.fl-node-6010bb75ea439 .pp-button-wrap a.pp-button, .fl-node-6010bb75ea439 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
}
.fl-node-6010bb75ea439 .pp-button-wrap a.pp-button:hover, .fl-node-6010bb75ea439 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6010bb75ea439 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6010bb75ea439 > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}




.fl-node-6010bc88c8921 .pp-button-wrap a.pp-button,
.fl-node-6010bc88c8921 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
	
		background-clip: border-box;
}

.fl-node-6010bc88c8921 .pp-button-wrap a.pp-button:hover,
.fl-node-6010bc88c8921 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-6010bc88c8921 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-6010bc88c8921 a.pp-button,
.fl-node-6010bc88c8921 a.pp-button * {
	color: #ffffff;
}

.fl-node-6010bc88c8921 a.pp-button:hover,
.fl-node-6010bc88c8921 a.pp-button:focus,
.fl-node-6010bc88c8921 a.pp-button:hover *,
.fl-node-6010bc88c8921 a.pp-button:focus * {
	color: #000000;
}

			.fl-node-6010bc88c8921 .pp-button-wrap a.pp-button,
			.fl-node-6010bc88c8921 .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6010bc88c8921 .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #000000;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6010bc88c8921 .pp-button-wrap a.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);
	        }
	    .fl-node-6010bc88c8921 .pp-button-wrap {
	text-align: left;
}
.fl-node-6010bc88c8921 a.pp-button {
	padding-top: 7px;
	padding-right: 20px;
	padding-bottom: 7px;
	padding-left: 20px;
}
.fl-node-6010bc88c8921 .pp-button-wrap a.pp-button, .fl-node-6010bc88c8921 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
}
.fl-node-6010bc88c8921 .pp-button-wrap a.pp-button:hover, .fl-node-6010bc88c8921 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6010bc88c8921 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6010bc88c8921 > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}




.fl-node-6010c8f844e99 .pp-button-wrap a.pp-button,
.fl-node-6010c8f844e99 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
	
		background-clip: border-box;
}

.fl-node-6010c8f844e99 .pp-button-wrap a.pp-button:hover,
.fl-node-6010c8f844e99 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-6010c8f844e99 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-6010c8f844e99 a.pp-button,
.fl-node-6010c8f844e99 a.pp-button * {
	color: #ffffff;
}

.fl-node-6010c8f844e99 a.pp-button:hover,
.fl-node-6010c8f844e99 a.pp-button:focus,
.fl-node-6010c8f844e99 a.pp-button:hover *,
.fl-node-6010c8f844e99 a.pp-button:focus * {
	color: #000000;
}

			.fl-node-6010c8f844e99 .pp-button-wrap a.pp-button,
			.fl-node-6010c8f844e99 .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6010c8f844e99 .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #000000;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6010c8f844e99 .pp-button-wrap a.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);
	        }
	    .fl-node-6010c8f844e99 .pp-button-wrap {
	text-align: left;
}
.fl-node-6010c8f844e99 a.pp-button {
	padding-top: 7px;
	padding-right: 20px;
	padding-bottom: 7px;
	padding-left: 20px;
}
.fl-node-6010c8f844e99 .pp-button-wrap a.pp-button, .fl-node-6010c8f844e99 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 13px;
}
.fl-node-6010c8f844e99 .pp-button-wrap a.pp-button:hover, .fl-node-6010c8f844e99 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6010c8f844e99 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6010c8f844e99 > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}




.fl-node-6018cf5b2bce1 .pp-button-wrap a.pp-button,
.fl-node-6018cf5b2bce1 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
	
		background-clip: border-box;
}

.fl-node-6018cf5b2bce1 .pp-button-wrap a.pp-button:hover,
.fl-node-6018cf5b2bce1 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-6018cf5b2bce1 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-6018cf5b2bce1 a.pp-button,
.fl-node-6018cf5b2bce1 a.pp-button * {
	color: #ffffff;
}

.fl-node-6018cf5b2bce1 a.pp-button:hover,
.fl-node-6018cf5b2bce1 a.pp-button:focus,
.fl-node-6018cf5b2bce1 a.pp-button:hover *,
.fl-node-6018cf5b2bce1 a.pp-button:focus * {
	color: #000000;
}

			.fl-node-6018cf5b2bce1 .pp-button-wrap a.pp-button,
			.fl-node-6018cf5b2bce1 .pp-button-wrap a.pp-button:visited {
	            transition-duration: 200ms;	        }
	        .fl-node-6018cf5b2bce1 .pp-button-wrap a.pp-button:before {
	            content: "";
	            background: #ffffff;	            color: #000000;	            border-color: #ffffff;	            -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%;
	            transition-duration: 200ms;	        }
	        .fl-node-6018cf5b2bce1 .pp-button-wrap a.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);
	        }
	    .fl-node-6018cf5b2bce1 .pp-button-wrap {
	text-align: left;
}
.fl-node-6018cf5b2bce1 a.pp-button {
	padding-top: 7px;
	padding-right: 20px;
	padding-bottom: 7px;
	padding-left: 20px;
}
.fl-node-6018cf5b2bce1 .pp-button-wrap a.pp-button, .fl-node-6018cf5b2bce1 .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-6018cf5b2bce1 .pp-button-wrap a.pp-button:hover, .fl-node-6018cf5b2bce1 .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-6018cf5b2bce1 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-6018cf5b2bce1 > .fl-module-content {
	margin-top:9px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}




.fl-node-60233d0685d0b .pp-button-wrap a.pp-button,
.fl-node-60233d0685d0b .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
			background: #7ac70c;
	
		background-clip: border-box;
}

.fl-node-60233d0685d0b .pp-button-wrap a.pp-button:hover,
.fl-node-60233d0685d0b .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-60233d0685d0b 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-60233d0685d0b a.pp-button,
.fl-node-60233d0685d0b a.pp-button * {
	color: #ffffff;
}

.fl-node-60233d0685d0b a.pp-button:hover,
.fl-node-60233d0685d0b a.pp-button:focus,
.fl-node-60233d0685d0b a.pp-button:hover *,
.fl-node-60233d0685d0b a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-60233d0685d0b .pp-button-wrap a.pp-button,
		.fl-node-60233d0685d0b .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-60233d0685d0b .pp-button-wrap {
	text-align: left;
}
.fl-node-60233d0685d0b a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-60233d0685d0b .pp-button-wrap a.pp-button, .fl-node-60233d0685d0b .pp-button-wrap a.pp-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-60233d0685d0b .pp-button-wrap a.pp-button:hover, .fl-node-60233d0685d0b .pp-button-wrap a.pp-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-60233d0685d0b .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-60233d0685d0b > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}




.fl-node-60233d5119805 .pp-button-wrap a.pp-button,
.fl-node-60233d5119805 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
			background: #7ac70c;
	
		background-clip: border-box;
}

.fl-node-60233d5119805 .pp-button-wrap a.pp-button:hover,
.fl-node-60233d5119805 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-60233d5119805 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-60233d5119805 a.pp-button,
.fl-node-60233d5119805 a.pp-button * {
	color: #ffffff;
}

.fl-node-60233d5119805 a.pp-button:hover,
.fl-node-60233d5119805 a.pp-button:focus,
.fl-node-60233d5119805 a.pp-button:hover *,
.fl-node-60233d5119805 a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-60233d5119805 .pp-button-wrap a.pp-button,
		.fl-node-60233d5119805 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-60233d5119805 .pp-button-wrap {
	text-align: left;
}
.fl-node-60233d5119805 a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-60233d5119805 .pp-button-wrap a.pp-button, .fl-node-60233d5119805 .pp-button-wrap a.pp-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-60233d5119805 .pp-button-wrap a.pp-button:hover, .fl-node-60233d5119805 .pp-button-wrap a.pp-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-60233d5119805 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-60233d5119805 > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}




.fl-node-60233d825e3e7 .pp-button-wrap a.pp-button,
.fl-node-60233d825e3e7 .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
			background: #7ac70c;
	
		background-clip: border-box;
}

.fl-node-60233d825e3e7 .pp-button-wrap a.pp-button:hover,
.fl-node-60233d825e3e7 .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-60233d825e3e7 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-60233d825e3e7 a.pp-button,
.fl-node-60233d825e3e7 a.pp-button * {
	color: #ffffff;
}

.fl-node-60233d825e3e7 a.pp-button:hover,
.fl-node-60233d825e3e7 a.pp-button:focus,
.fl-node-60233d825e3e7 a.pp-button:hover *,
.fl-node-60233d825e3e7 a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-60233d825e3e7 .pp-button-wrap a.pp-button,
		.fl-node-60233d825e3e7 .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-60233d825e3e7 .pp-button-wrap {
	text-align: left;
}
.fl-node-60233d825e3e7 a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-60233d825e3e7 .pp-button-wrap a.pp-button, .fl-node-60233d825e3e7 .pp-button-wrap a.pp-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-60233d825e3e7 .pp-button-wrap a.pp-button:hover, .fl-node-60233d825e3e7 .pp-button-wrap a.pp-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-60233d825e3e7 .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-60233d825e3e7 > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}




.fl-node-600a1cfd907ce .pp-button-wrap a.pp-button,
.fl-node-600a1cfd907ce .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

			width: 100%;
			
	
		background-clip: border-box;
}

.fl-node-600a1cfd907ce .pp-button-wrap a.pp-button:hover,
.fl-node-600a1cfd907ce .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #ffffff;
			
	}



.fl-node-600a1cfd907ce 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-600a1cfd907ce a.pp-button,
.fl-node-600a1cfd907ce a.pp-button * {
	color: #ffffff;
}

.fl-node-600a1cfd907ce a.pp-button:hover,
.fl-node-600a1cfd907ce a.pp-button:focus,
.fl-node-600a1cfd907ce a.pp-button:hover *,
.fl-node-600a1cfd907ce a.pp-button:focus * {
	color: #000000;
}

	    .fl-node-600a1cfd907ce .pp-button-wrap a.pp-button,
		.fl-node-600a1cfd907ce .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-600a1cfd907ce .pp-button-wrap {
	text-align: left;
}
.fl-node-600a1cfd907ce a.pp-button {
	padding-top: 7px;
	padding-bottom: 10px;
}
.fl-node-600a1cfd907ce .pp-button-wrap a.pp-button, .fl-node-600a1cfd907ce .pp-button-wrap a.pp-button:visited {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #999999;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
	font-family: "DM Sans", sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.fl-node-600a1cfd907ce .pp-button-wrap a.pp-button:hover, .fl-node-600a1cfd907ce .pp-button-wrap a.pp-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.fl-node-600a1cfd907ce .pp-button .pp-button-icon {
	font-size: 16px;
}
 .fl-node-600a1cfd907ce > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}

/* Start Global CSS */
@media screen and (min-width: 992px) {
    
    body {
        padding-top: 0 !important;
    }
    
    .fl-page-content {
        padding-top: 100px !important;
    }

}

.bg-grayscale  {
    filter: gray;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

#megamenu a {
    color: white !important;
}

#megamenu a:hover {
    color: #7ac70c !important;
}

h1 {
    font-family: 'DM Serif Display', serif !important;
}

body {
    font-family: 'DM Sans', serif !important;
}

#header-nav .menu-item > a {
    border-bottom: 1px solid transparent;
    transition-duration: 0.2s;
}

#header-nav .menu-item > a:hover {
    border-bottom: 1px solid #7AC70C;
    transition-duration: 0.2s;
}

#mega-menu-wrap-header #mega-menu-header > li.mega-menu-item > a.mega-menu-link:hover {
    border-color: #7AC70C !important;
}

#header-right .fl-col-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

#header-right .fl-col-content .fl-module {
    width: auto;
}

#header-search .pp-search-form {
    max-width: 150px;
}

#footer-newsletter-form .gform_footer {
    margin: 0;
    padding: 0;
    padding-top: 10px;
}

footer a{
    color: #7D7D7D!important;
}
footer a:hover{
    color: #81D000!important;
}

body .fl-post-carousel-grid .fl-post-carousel-content p:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #bababa;
}

h1.fl-post-title,h3#reply-title.comment-reply-title, h4.fl-widget-title{
    font-family: DM Sans, sans-serif!important;
    font-weight: 400!important;
    color: #fff!important;
}

.btn.btn-primary{
    background-color: #fff!important;
    color: #000000!important;
    text-decoration: none!important;
    min-width: 200px!important;
    border: none!important;
    padding:15px 45px!important;
    border-radius: 000000!important;
}
.btn.btn-primary:hover{
    background-color: #fff;
    color: #75BF00!important;
    text-decoration: none;
    min-width: 200px;
    border: none;
    padding:15px 45px;
    border-radius: 000000;
}

input[type=search], input[type=url], textarea {
    display: block;
    height: 48px!important;
    width: 100%;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #808080;
    vertical-align: middle;
    background-color: #000!important;
    background-image: none;
    border: 2px solid #ddddd!important;
    border-radius: 0!important;
}
h2.fl-post-feed-title a{
    color:#ffffff!important;
    font-family: "DM Sans", sans-serif!important;
    font-weight: 500!important  ;
    font-size: 20px;
}
div.fl-comments{
    display:none;
}

.fl-photo-img.size-thumbnail:hover {
    opacity: 0.6 !important;
    background-color: #009402 !important;
}
.pp-member-wrapper .pp-member-image.pp-image-crop-circle {
    background-color: #009402 !important;
    width: 200px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 100%;
}
.pp-member-designation {
    color: #808080 !important;
}
.pp-member-description{
    color: #bababa !important;
}

.pp-post-tile-info a {

    color: #fff !important;

}
.team.uabb-blog-posts.uabb-post-thumbnail img {

    display: inline-block;
    border-radius: 100%;
    width: 206px;

}

.uabb-post-wrapper .uabb-blog-posts-shadow {
    box-shadow: 0 4px 1px rgba(197, 197, 197, 0.2);
    background: none;
    transition: all 0.3s linear;
    width: 100%;
}
/*
.fl-photo .fl-photo-content, .fl-photo-img-png img {
    text-align: center;
    border-radius: 100%;
    width: 180px!important;  
    height: 180px!important;
}*/

.fl-module-content.fl-node-content{
    font-size: 15px;
    line-height: 1.9;
    color: #bababa;
    font-family: arial, sanserif;
}
h1.fl-heading{
    font-size: 49px;
    color: #fff;
    font-family: arial, sanserif !important;
    font-weight: bold;
}
.fl-module-content h3{
    font-size: 30px;
    color: #fff;
    font-family: arial, sanserif !important;
    font-weight: bold;

}
h5.fl-heading{
    font-size: 15px;
    color: #fff;
    font-family: arial, sanserif !important;

}
.fl-module.fl-module-blog-posts.team h3.uabb-post-heading.uabb-blog-post-section a{
    font-size: 26px;
    color: #ffffff!important;

}
h5.position{
    font-family: arial;
    font-size: 15px;
    color: #bababa!important;
}
span.uabb-posted-by{
   color: #bababa!important; 
}
.social-media a {
    font-size: 15px;
    font-family: arial !important;
    color: #bababa !important;
}
.fa.fa-envelope-o, .fa.fa-phone, .fa.fa-linkedin-square{
        padding-right: 10px!important;
}
.pp-content-grid-title.pp-post-title a {
    font-size: 20px !important;
    color: #fff !important;
    text-shadow: 1px 1px #333;
}
#member-photo img {
    background: #ffffff !important;
}
#member-photo img:hover {
    background: #8adc00 !important;
}
@media screen and (min-width: 993px) {
    /*.col-sticky {*/
    /*    position: sticky;*/
    /*    top: 100px;*/
    /*}*/
}



/* WHATS NEW */

@media screen and (min-width:978px) {
    #whats-new .pp-content-grid-image {
        width: 20%;
    }
}
#whats-new .pp-content-post-grid {
    height: auto!important;
}
#whats-new .pp-content-grid-title.pp-post-title a {
    font-size: 15px !important;
}
#whats-new .pp-list-item .pp-more-link,
#whats-new .pp-more-link-button,
#whats-new .pp-more-link {
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    display: inline-block;
    margin-top: 10px;
    background-color: transparent;
    padding: 0;
    margin: 0;
}
#whats-new .fl-photo .fl-photo-content {
    height: auto!important;
}
#whats-new .pp-content-post.pp-content-grid-post {
    position: relative!important;
    top: 0!important;
    height: auto!important;
}
#whats-new .pp-infolist-title-text,
#whats-new .pp-infolist-title-text a {
    font-family: 'DM Serif Display', serif !important;
    margin-top: 0;
    font-size: 17px;
    color: #ffffff !important;
    font-weight: normal;
    line-height: 1.2;
}
#whats-new .pp-infolist-description p {
    font-size: 14px;
    line-height: 1.9;
    color: #999999;
}
#whats-new .pp-icon-wrapper {
    float: left;
    margin-right: 10px;
}
#whats-new .pp-icon-wrapper img {
    width: 20px;
    height: 20px;
}
#whats-new .pp-heading-wrapper {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 20px;
}
h4.slogan-slider-img{
    width: 800px;
    
}

.gform_wrapper textarea.large{
    height: 150px!important;
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
input[type=text], input[type=password], input[type=email], input[type=tel], input[type=date], input[type=month], input[type=week], input[type=time], input[type=number], input[type=search], input[type=url], textarea{
    background-color: #eaeaea !important;
}


.callcta a {
    color: #7ac70c;
    font-size: 1.2em;
}

.gchoice_36_4_1{
    display: none;
}
/* End Layout CSS */

/* Equal height Column Bottom Alignment */
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
          -webkit-box-align: end;
           -webkit-box-pack: end;
              -ms-flex-pack: end;
}

/* H1-H6 Margin Reset in all Modules */
.uabb-module-content h1,
.uabb-module-content h2,
.uabb-module-content h3,
.uabb-module-content h4,
.uabb-module-content h5,
.uabb-module-content h6 {
    margin: 0;
    clear: both;
}

/* Anchor Tag Css */

.fl-module-content a,
.fl-module-content a:hover,
.fl-module-content a:focus {
    text-decoration: none;
}

/* Row Separator CSS */

.uabb-row-separator {
    position: absolute;
    width: 100%;
    left: 0;
}

.uabb-top-row-separator {
    top: 0;
    bottom: auto
}

.uabb-bottom-row-separator {
    top: auto;
    bottom: 0;
}

.fl-builder-content-editing .fl-visible-medium.uabb-row,
.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
.fl-builder-content-editing .fl-visible-mobile.uabb-row {
    display: none !important;
}

@media (max-width: 992px) {

    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: block !important;
    }
}

.fl-responsive-preview-content .fl-builder-content-editing {
    overflow-x: hidden;
    overflow-y: visible;
}

.uabb-row-separator svg {
    width: 100%;
}

.uabb-top-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    top: -1px;
    bottom: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    bottom: -1px;
    top: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {
    bottom: 0;
}
.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {
    top: 0;
}

/**
 *
 *  Svg Triangle Separator
 *  Big Triangle Separator
 *  Big Triangle Left Separator
 *  Svg Half Circle Separator
 *  Curve Center Separator
 *  Waves Separator
 *  Stamp
 *  Grass
 *  Slime
 *  Grass Bend
 *  Wave Slide
 *  Muliple Triangles
 *  Pine Tree
 *  Pine Tree Bend
 *
 ***************************************/
.uabb-bottom-row-separator.uabb-svg-triangle svg,
.uabb-bottom-row-separator.uabb-xlarge-triangle svg,
.uabb-top-row-separator.uabb-xlarge-triangle-left svg,
.uabb-bottom-row-separator.uabb-svg-circle svg,
.uabb-top-row-separator.uabb-slime-separator svg,
.uabb-top-row-separator.uabb-grass-separator svg,
.uabb-top-row-separator.uabb-grass-bend-separator svg,
.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,
.uabb-top-row-separator.uabb-wave-slide-separator svg,
.uabb-top-row-separator.uabb-pine-tree-separator svg,
.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,
.uabb-bottom-row-separator.uabb-stamp-separator svg,
.uabb-bottom-row-separator.uabb-xlarge-circle svg,
.uabb-top-row-separator.uabb-wave-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

/*
 *  Big Triangle
*/
.uabb-bottom-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: scale(1) scaleY(-1) translateX(-50%);
       -moz-transform: scale(1) scaleY(-1) translateX(-50%);
        -ms-transform: scale(1) scaleY(-1) translateX(-50%);
         -o-transform: scale(1) scaleY(-1) translateX(-50%);
            transform: scale(1) scaleY(-1) translateX(-50%);
}

.uabb-top-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
       -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
         -o-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
}

/**
 *
 *  Big Triangle Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

/**
 *
 *  Curve Left Separator
 *  Curve Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-curve-up-separator svg {
    left: 50%;
     -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-top-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}


/**
 *
 *  Tilt Left Separator
 *  Tilt Right Separator
 *
 ***************************************/

.uabb-top-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-top-row-separator.uabb-tilt-right-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-tilt-right-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

.uabb-top-row-separator.uabb-tilt-left-separator,
.uabb-top-row-separator.uabb-tilt-right-separator {
    top: 0;
}

.uabb-bottom-row-separator.uabb-tilt-left-separator,
.uabb-bottom-row-separator.uabb-tilt-right-separator {
    bottom: 0;
}

/**
 *
 *  Clouds Separator
 *  Multi Triangle
 *  Arrow Inward
 *  Arrow Outward
 *
 ***************************************/

.uabb-top-row-separator.uabb-arrow-outward-separator svg,
.uabb-top-row-separator.uabb-arrow-inward-separator svg,
.uabb-top-row-separator.uabb-cloud-separator svg,
.uabb-top-row-separator.uabb-multi-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-multi-triangle svg {
    bottom: -2px;
}

.uabb-row-separator.uabb-round-split:after,
.uabb-row-separator.uabb-round-split:before {
    left: 0;
    width: 50%;
    background: inherit inherit/inherit inherit inherit inherit;
    content: '';
    position: absolute
}


/* Buttons
------------------------------------------------------ */

.uabb-button-wrap a,
.uabb-button-wrap a:visited {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    text-shadow: none;
}

.fl-builder-content .uabb-button:hover {
    text-decoration: none;
}

.fl-builder-content .uabb-button-width-full .uabb-button {
    display: block;
    text-align: center;
}

.uabb-button-width-custom .uabb-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.fl-builder-content .uabb-button-left {
    text-align: left;
}
.fl-builder-content .uabb-button-center {
    text-align: center;
}
.fl-builder-content .uabb-infobox .uabb-button-center,
.fl-builder-content .uabb-modal-action-wrap .uabb-button-center,
.fl-builder-content .uabb-ultb3-box .uabb-button-center,
.fl-builder-content .uabb-slide-down .uabb-button-center,
.fl-builder-content .uabb-blog-post-content .uabb-button-center,
.fl-builder-content .uabb-cta-wrap .uabb-button-center,
.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center{ 
     text-align: inherit;
}

.fl-builder-content .uabb-button-right {
    text-align: right;
}

.fl-builder-content .uabb-button i,
.fl-builder-content .uabb-button i:before {
    font-size: 1em;
    height: 1em;
    line-height: 1em;
    width: 1em;
}

.uabb-button .uabb-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-button .uabb-button-icon-before {
    margin-left: 0;
    margin-right: 8px;
}
.uabb-button .uabb-button-icon-no-text {
    margin: 0;
}
.uabb-button-has-icon .uabb-button-text {
    vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.uabb-icon-wrap {
    display: inline-block;
}
.uabb-icon a {
    text-decoration: none;
}
.uabb-icon i {
    display: block;
}
.uabb-icon i:before {
    border: none !important;
    background: none !important;
}
.uabb-icon-text {
    display: table-cell;
    text-align: left;
    padding-left: 15px;
    vertical-align: middle;
}
.uabb-icon-text *:last-child {
    margin: 0 !important;
    padding: 0 !important;
}
.uabb-icon-text a {
    text-decoration: none;
}

/* Photos
------------------------------------------------------ */

.uabb-photo {
    line-height: 0;
    position: relative;
    z-index: 2;
}
.uabb-photo-align-left {
    text-align: left;
}
.uabb-photo-align-center {
    text-align: center;
}
.uabb-photo-align-right {
    text-align: right;
}
.uabb-photo-content {
    border-radius: 0;
    display: inline-block;
    line-height: 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.uabb-photo-content img {
    border-radius: inherit;
    display: inline;
    height: auto;
    max-width: 100%;
    width: auto;
}
.fl-builder-content .uabb-photo-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-photo-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.uabb-photo-caption {
    font-size: 13px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.uabb-photo-caption-below {
    padding-bottom: 20px;
    padding-top: 10px;
}
.uabb-photo-caption-hover {
    background: rgba(0,0,0,0.7);
    bottom: 0;
    color: #fff;
    left: 0;
    opacity: 0;
    visibility: hidden;
    filter: alpha(opacity = 0);
    padding: 10px 15px;
    position: absolute;
    right: 0;
    -webkit-transition:visibility 200ms linear;
    -moz-transition:visibility 200ms linear;
    transition:visibility 200ms linear;
}
.uabb-photo-content:hover .uabb-photo-caption-hover {
    opacity: 100;
    visibility: visible;
}

/* Panel & Buttons
------------------------------------------------------ */
.uabb-active-btn {
    background: #1e8cbe;
    border-color: #0074a2;
    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    color: white;
}
.fl-builder-bar .fl-builder-add-content-button {
    display: block !important;
    opacity: 1 !important;
}

/* Image Icon Object */
.uabb-imgicon-wrap .uabb-icon {
    display: block;
}
.uabb-imgicon-wrap .uabb-icon i{
    float: none;
}

/* Photo */
.uabb-imgicon-wrap .uabb-image {
    line-height: 0;
    position: relative;
}
.uabb-imgicon-wrap .uabb-image-align-left {
    text-align: left;
}
.uabb-imgicon-wrap .uabb-image-align-center {
    text-align: center;
}
.uabb-imgicon-wrap .uabb-image-align-right {
    text-align: right;
}
.uabb-imgicon-wrap .uabb-image-content {
    display: inline-block;
    border-radius: 0;
    line-height: 0;
    position: relative;
    max-width: 100%;
}
.uabb-imgicon-wrap .uabb-image-content img {
    display: inline;
    height: auto !important;
    max-width: 100%;
    width: auto;
    border-radius: inherit;
    box-shadow: none;
    box-sizing: content-box;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}


/* Creative Button
___________________________________________________________________________*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    background: #fafafa;
    border: 1px solid #ccc;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;

}

.uabb-creative-button-wrap a:focus {
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
}

.uabb-creative-button-wrap a .uabb-creative-button-text,
.uabb-creative-button-wrap a .uabb-creative-button-icon,
.uabb-creative-button-wrap a:visited .uabb-creative-button-text,
.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button-wrap a:hover {
    text-decoration: none;
}

.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {
    display: block;
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.uabb-creative-button-wrap .uabb-creative-button-left {
    text-align: left;
}
.uabb-creative-button-wrap .uabb-creative-button-center {
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-right {
    text-align: right;
}
.uabb-creative-button-wrap .uabb-creative-button i {
    font-size: 1.3em;
    height: auto;
    vertical-align: middle;
    width: auto;
}

.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {
    margin-right: 8px;
    margin-left: 0;
}
.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {
    margin: 0;
}

.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {
    vertical-align: middle;
}
.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    padding: 12px 24px;
}

/*  Translate Button styles */

.uabb-creative-button.uabb-creative-transparent-btn {
    background: transparent;
}
.uabb-creative-button.uabb-creative-transparent-btn:after {
    content: '';
    position: absolute;
    z-index: 1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

/* transparent-fill-top, transparent-fill-bottom  */
.uabb-transparent-fill-top-btn:after,
.uabb-transparent-fill-bottom-btn:after {
    width: 100%;
    height: 0;
    left: 0;
}

/* transparent-fill-top */
.uabb-transparent-fill-top-btn:after {
    top: 0;
}
/* transparent-fill-bottom */
.uabb-transparent-fill-bottom-btn:after {
    bottom: 0;
}

/* transparent-fill-left, transparent-fill-right */
.uabb-transparent-fill-left-btn:after,
.uabb-transparent-fill-right-btn:after {
    width: 0;
    height: 100%;
    top: 0;
}

/* transparent-fill-left */
.uabb-transparent-fill-left-btn:after {
    left: 0;
}
/* transparent-fill-right */
.uabb-transparent-fill-right-btn:after {
    right: 0;
}


/* transparent-fill-center */
.uabb-transparent-fill-center-btn:after{
    width: 0;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

/*  transparent-fill-diagonal, transparent-fill-horizontal  */
.uabb-transparent-fill-diagonal-btn:after,
.uabb-transparent-fill-horizontal-btn:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
}

/*  transparent-fill-diagonal */
.uabb-transparent-fill-diagonal-btn{
    overflow: hidden;
}
.uabb-transparent-fill-diagonal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
       -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
        -ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
         -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
            transform: translateX(-50%) translateY(-50%) rotate( 45deg );
}
/* transparent-fill-horizontal */
.uabb-transparent-fill-horizontal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}


/*  3D Button styles */
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}

.perspective {
    -webkit-perspective: 800px;
       -moz-perspective: 800px;
            perspective: 800px;
            margin: 0;
}
.uabb-creative-button.uabb-creative-threed-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button.uabb-creative-threed-btn {
    outline: 1px solid transparent;
    -webkit-transform-style: preserve-3d;
       -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/*  3D Button styles --- Animate to top */
.uabb-creative-threed-btn.uabb-animate_top-btn:after {
    height: 40%;
    left: 0;
    top: -40%;
    width: 100%;
    -webkit-transform-origin: 0% 100%;
       -moz-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: rotateX(90deg);
       -moz-transform: rotateX(90deg);
            transform: rotateX(90deg);
}

/*  3D Button styles --- Animate to bottom */
.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {
    width: 100%;
    height: 40%;
    left: 0;
    top: 100%;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateX(-90deg);
       -moz-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
}

/*  3D Button styles --- Animate to Left */
.uabb-creative-threed-btn.uabb-animate_left-btn:after {
    width: 20%;
    height: 100%;
    left: -20%;
    top: 0;
    -webkit-transform-origin: 100% 0%;
       -moz-transform-origin: 100% 0%;
        -ms-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-transform: rotateY(-60deg);
       -moz-transform: rotateY(-60deg);
        -ms-transform: rotateY(-60deg);
            transform: rotateY(-60deg);
}

/*  3D Button styles --- Animate to Right */
.uabb-creative-threed-btn.uabb-animate_right-btn:after {
    width: 20%;
    height: 100%;
    left: 104%;
    top: 0;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateY(120deg);
       -moz-transform: rotateY(120deg);
        -ms-transform: rotateY(120deg);
            transform: rotateY(120deg);
}


/* Animate Top */
.uabb-animate_top-btn:hover{
    -webkit-transform: rotateX(-15deg);
       -moz-transform: rotateX(-15deg);
        -ms-transform: rotateX(-15deg);
         -o-transform: rotateX(-15deg);
            transform: rotateX(-15deg);

}

/* Animate Bottom */
.uabb-animate_bottom-btn:hover{
    -webkit-transform: rotateX(15deg);
       -moz-transform: rotateX(15deg);
        -ms-transform: rotateX(15deg);
         -o-transform: rotateX(15deg);
            transform: rotateX(15deg);

}

/* Animate Left */
.uabb-animate_left-btn:hover{
    -webkit-transform: rotateY(6deg);
       -moz-transform: rotateY(6deg);
        -ms-transform: rotateY(6deg);
         -o-transform: rotateY(6deg);
            transform: rotateY(6deg);
}

/* Animate Right */
.uabb-animate_right-btn:hover{
    -webkit-transform: rotateY(-6deg);
       -moz-transform: rotateY(-6deg);
        -ms-transform: rotateY(-6deg);
         -o-transform: rotateY(-6deg);
            transform: rotateY(-6deg);

}

/*  Flat Button styles  */

/*  Common Classes  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn,
.uabb-creative-flat-btn.uabb-animate_to_left-btn,
.uabb-creative-flat-btn.uabb-animate_from_top-btn,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {
    overflow: hidden;
    position: relative;
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    bottom: 0;
    height: 100%;
    margin: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    width: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*  Making Icon position center  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/*  Common Hover Classes */
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {
    left: 0;
}
.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {
    top: 0;
}

/*  Animate Icon to the right */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i {
    top: 0;
    left: -100%;
}
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {
    -webkit-transform: translateX(200%);
       -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
         -o-transform: translateX(200%);
            transform: translateX(200%);
}

/*  Animate Icon to the left */
.uabb-creative-flat-btn.uabb-animate_to_left-btn i {
    top: 0;
    left: 100%;
}

.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {
    -webkit-transform: translateX(-200%);
       -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
         -o-transform: translateX(-200%);
            transform: translateX(-200%);
}


/*  Animate Icon From the Top */
.uabb-creative-flat-btn.uabb-animate_from_top-btn i {
    top: -100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {
    -webkit-transform: translateY(400px);
       -moz-transform: translateY(400px);
        -ms-transform: translateY(400px);
         -o-transform: translateY(400px);
            transform: translateY(400px);
}

/*  Animate Icon From the Bottom */
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    top: 100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {
    -webkit-transform: translateY(-400px);
       -moz-transform: translateY(-400px);
        -ms-transform: translateY(-400px);
         -o-transform: translateY(-400px);
            transform: translateY(-400px);
}

/* Media/Video CSS */
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode, 
.uabb-tab-acc-content .mejs-container:not(.mejs-audio), 
.uabb-tab-acc-content .mejs-overlay.load,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode, 
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio), 
.uabb-adv-accordion-content .mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio),
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {
    padding-top: 56.25%;
}
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode {
    max-width: 100% !important;
}
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content video.wp-video-shortcode {
    position: relative;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.uabb-tab-acc-content .mejs-overlay-play,
.uabb-adv-accordion-content .mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}
.fl-row-content-wrap .uabb-row-particles-background,
.uabb-col-particles-background {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
/* Theme Button
------------------------------------------------------ */
/*.fl-builder-content a.uabb-button,
.fl-builder-content a.uabb-button:visited,
.fl-builder-content a.uabb-creative-button,
.fl-builder-content a.uabb-creative-button:visited*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
		
	
	
	
	}

.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
			
	
	
	}


/* Responsive Js Breakpoint Css */

.uabb-js-breakpoint {
	content:"default";
	display:none;
}
@media screen and (max-width: 992px) {
	.uabb-js-breakpoint {
		content:"992";
	}
}

@media screen and (max-width: 600px) {
	.uabb-js-breakpoint {
		content:"600";
	}
}


																																								
					
					
					
																
					
					
					
																														
					
					
					
																							
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																							
					
					
					
																														
					
					
					
																							
					
					
					
																
					
					
					
																							
					
					
					
																							
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																																												
					
					
					
																
					
					
					
																							
					
					
					
																																												
					
					
					
																
					
					
					
																																					
					
					
					
																
					
					
					
																
					
					
					
																														
					
					
					
																							
					
					
					
																							
					
					
					
																
					
					
					
																																															.fl-node-6018cf799e675 .pp-content-grid-post {
  font-size: 14px;
}
.fl-node-6018cf799e675 .pp-content-grid-post-image {
  padding: 0px;
  padding-bottom: 0;
  height: 185px;
  overflow: hidden;
}
.fl-node-6018cf799e675 .pp-content-grid-post-text {
  padding: 20px;
}
.fl-node-6018cf799e675 .pp-content-grid-post-title {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  padding: 0;
}
.fl-node-6018cf799e675 .pp-content-grid-post-title a {
  color: #ffffff;
}
.fl-node-6018cf799e675 .pp-content-grid-post-title a:hover {
  color: #7ac70c;
}
.fl-node-6018cf799e675 .pp-content-grid-post-meta {
  padding: 0;
}
.fl-node-6018cf799e675 .pp-content-grid-post-meta a {
  text-decoration: none;
}
.fl-node-6018cf799e675 .pp-content-grid-post-meta,
.fl-node-6018cf799e675 .pp-content-grid-post-meta a {
  color: #888;
  font-size: 12px;
}
.fl-node-6018cf799e675 .pp-content-grid-post-meta a:hover {
  color: #000;
}
.fl-node-6018cf799e675 .pp-content-grid-separator {
  min-height: 2px;
  width: 60px;
  background: #000;
  margin-top: 10px;
  margin-bottom: 20px;
}
.fl-node-6018cf799e675 a {
  color: #7ac70c;
}
.fl-node-6018cf799e675 a:hover {
  color: #ffffff;
}

                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-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-600a1d0a6f862 .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-600a1f0e7c64f .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6010bb75ea43a .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-600a218a9e2d2 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-600a235174478 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6010bc8fd5a8b .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6010bc88c86f8 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6010bc72c8919 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-60233d51193f5 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6018cf62a3750 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6010c8f844c4d .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6010c878d9928 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-60233d06858e1 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6010c87069816 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6018cf5b2ba9a .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6018cf6caa53a .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-60233d825dfdc .fl-row-content {
				min-width: 0px;
			}
		