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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




.fl-node-f635qij2grwl > .fl-row-content-wrap {
	background-image: url(https://www.chamberline.nl/wp-content/uploads/2019/04/chamberline_sfeer_woonkamer_roede_gardinenstange_rvs_edelstahl_28mm_4-Medium.jpg);
	background-repeat: no-repeat;
	background-position: 70% 0%;
	background-attachment: scroll;
	background-size: auto;
}
.fl-node-f635qij2grwl.fl-row-fixed-width, .fl-node-f635qij2grwl .fl-row-fixed-width {
	max-width: 1400px;
}
@media(max-width: 768px) {
	.fl-node-f635qij2grwl > .fl-row-content-wrap {
		background-image: url(https://www.chamberline.nl/wp-content/uploads/2019/04/header-chamberline2.png);
		background-repeat: no-repeat;
		background-position: 68% 2%;
		background-size: cover;
	}
}
 .fl-node-f635qij2grwl > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-f635qij2grwl.fl-row > .fl-row-content-wrap {
	padding-top:10px;
	padding-bottom:10px;
}
}





.fl-node-f2qatjsnmclo.fl-row-fixed-width, .fl-node-f2qatjsnmclo .fl-row-fixed-width {
	max-width: 1400px;
}
 .fl-node-f2qatjsnmclo > .fl-row-content-wrap {
	padding-right:0px;
	padding-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-f2qatjsnmclo.fl-row > .fl-row-content-wrap {
	padding-top:10px;
	padding-bottom:10px;
}
}





.fl-node-0cd94bolfyzm .fl-row-content {
	max-width: 1200px;
}
@media ( max-width: 768px ) {
 .fl-node-0cd94bolfyzm.fl-row > .fl-row-content-wrap {
	margin-top:-60px;
}
}
@media ( max-width: 768px ) {
 .fl-node-0cd94bolfyzm.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}





.fl-node-x0lezgmu8q3t .fl-row-content {
	max-width: 1168px;
}
 .fl-node-x0lezgmu8q3t > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-yi9nwps1hc0d .fl-row-content {
	max-width: 1168px;
}
@media ( max-width: 768px ) {
 .fl-node-yi9nwps1hc0d.fl-row > .fl-row-content-wrap {
	margin-top:-20px;
}
}
 .fl-node-yi9nwps1hc0d > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-vbkder3087so .fl-row-content {
	max-width: 1200px;
}
@media ( max-width: 768px ) {
 .fl-node-vbkder3087so.fl-row > .fl-row-content-wrap {
	padding-bottom:0px;
}
}





.fl-node-0rpa36j59lxw .fl-row-content {
	max-width: 1200px;
}
@media ( max-width: 768px ) {
 .fl-node-0rpa36j59lxw.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}
}





.fl-node-fvjn2475y8o0 .fl-row-content {
	max-width: 1200px;
}
@media ( max-width: 768px ) {
 .fl-node-fvjn2475y8o0.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}
}





.fl-node-toia3q8zm2hk .fl-row-content {
	max-width: 1200px;
}
@media ( max-width: 768px ) {
 .fl-node-toia3q8zm2hk.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}
}





.fl-node-dsoepta412xn .fl-row-content {
	max-width: 1200px;
}





.fl-node-zu2h8xgwpet9 > .fl-row-content-wrap {
	background-color: #A79A91;
}
.fl-node-zu2h8xgwpet9 .fl-row-content {
	max-width: 1200px;
}





.fl-node-qzvjmpyw7h8x .fl-row-content {
	max-width: 1200px;
}





.fl-node-1sa4mjtyrlbu > .fl-row-content-wrap {
	background-color: #50031b;
}
.fl-node-1sa4mjtyrlbu .fl-row-content {
	max-width: 1200px;
}




.fl-node-y69tdm0s3xv7 {
	width: 25%;
}




.fl-node-80p4hlojcdkv {
	width: 100%;
}




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




.fl-node-5p7zorbu9afm {
	width: 25%;
}




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




.fl-node-0darghtlzwce {
	width: 25%;
}




.fl-node-13gj7yf68z5p {
	width: 100%;
}




.fl-node-v9hb60rnxzyg {
	width: 25%;
}




.fl-node-uga8meysjck4 {
	width: 50%;
}
.fl-node-uga8meysjck4 > .fl-col-content {
	background-color: #50031b;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-uga8meysjck4 > .fl-col-content {
		min-height: 270px;
	}
}
 .fl-node-uga8meysjck4 > .fl-col-content {
	margin-right:20px;
	margin-left:20px;
}




.fl-node-fdwgy9a17rsi {
	width: 50%;
}
.fl-node-fdwgy9a17rsi > .fl-col-content {
	background-color: #50031b;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-fdwgy9a17rsi > .fl-col-content {
		min-height: 270px;
	}
}
 .fl-node-fdwgy9a17rsi > .fl-col-content {
	margin-right:20px;
	margin-left:20px;
}




.fl-node-ajsr5kwvn7f4 {
	width: 100%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ajsr5kwvn7f4 {
		width: 60% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-ajsr5kwvn7f4 > .fl-col-content {
	margin-top:20px;
}




.fl-node-98eal1qr6zn5 {
	width: 100%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-98eal1qr6zn5 {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-98eal1qr6zn5 > .fl-col-content {
	margin-top:20px;
}




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




.fl-node-kehs2qomuzl8 {
	width: 100%;
}
 .fl-node-kehs2qomuzl8 > .fl-col-content {
	margin-top:-10%;
	margin-right:0%;
	margin-left:0%;
}
 .fl-node-kehs2qomuzl8 > .fl-col-content {
	padding-right:0%;
	padding-left:0%;
}




.fl-node-4ksjea9p38td {
	width: 50%;
}




.fl-node-368xqrvog51p {
	width: 100%;
}




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




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




.fl-node-nu3k0f7xjgeq {
	width: 50%;
}
.fl-node-nu3k0f7xjgeq > .fl-col-content {
	background-color: #A79A91;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-nu3k0f7xjgeq > .fl-col-content {
		min-height: 270px;
	}
}
 .fl-node-nu3k0f7xjgeq > .fl-col-content {
	margin-right:20px;
	margin-left:20px;
}




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




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




.fl-node-h43x92aesln7 {
	width: 50%;
}
.fl-node-h43x92aesln7 > .fl-col-content {
	background-color: #A79A91;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-h43x92aesln7 > .fl-col-content {
		min-height: 270px;
	}
}
 .fl-node-h43x92aesln7 > .fl-col-content {
	margin-right:20px;
	margin-left:20px;
}




.fl-node-omanvx196r5e {
	width: 50%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-omanvx196r5e {
		width: 40% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-omanvx196r5e > .fl-col-content {
	margin-top:150px;
	margin-bottom:150px;
	margin-left:300px;
}
@media ( max-width: 768px ) {
 .fl-node-omanvx196r5e.fl-col > .fl-col-content {
	margin-top:80px;
	margin-bottom:20px;
}
}




.fl-node-qxnlv3cptb2o {
	width: 50%;
}
 .fl-node-qxnlv3cptb2o > .fl-col-content {
	margin-top:150px;
	margin-bottom:150px;
	margin-left:300px;
}
@media ( max-width: 768px ) {
 .fl-node-qxnlv3cptb2o.fl-col > .fl-col-content {
	margin-top:40px;
	margin-bottom:40px;
}
}
.bb-heading-input.input-small {
	width: 46px !important;
}

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

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

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

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

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

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

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

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

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

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

.pp-heading-content .pp-heading.pp-separator--inline {
	display: flex;
	align-items: center;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator {
	flex: 1;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator span {
	display: block;
}
.pp-heading-content .pp-heading.pp-separator--inline.pp-left > .pp-heading-separator:first-of-type,
.pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:last-of-type {
	display: none;
}
.rtl .pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:last-of-type {
    display: block;
}
.rtl .pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:first-of-type {
    display: none;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type span {
	margin: 0 0 0 auto;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type span {
	margin: 0 auto 0 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-right:before {
		right: 2%;
	}
}@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }
div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading-prefix {
	}

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

div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading {
		}

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


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


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


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

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

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

/** Separators */


div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 300px;
			border-bottom-style: solid;
			border-bottom-color: #ffffff;
			border-bottom-width: 1px;
	}

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


div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-sub-heading,
div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

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

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

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

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

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

div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

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

div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #ffffff;
			width: 300px;
			margin: 0 auto;
	}

div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-qiz31g8jmck9 .pp-heading-content {
				text-align: center;
			}
	div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-qiz31g8jmck9 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-qiz31g8jmck9 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-qiz31g8jmck9 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-qiz31g8jmck9 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-qiz31g8jmck9 .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-qiz31g8jmck9 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 768px) {
	div.fl-node-qiz31g8jmck9 .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }	.fl-builder-content .fl-node-zwhanfekq8b3 .fl-icon-wrap .fl-icon-text,
	.fl-builder-content .fl-node-zwhanfekq8b3 .fl-icon-wrap .fl-icon-text * {
		color: #f68f34;
	}
	.fl-node-zwhanfekq8b3 .fl-icon i,
.fl-node-zwhanfekq8b3 .fl-icon i:before {
	color: #f68f34;
}



.fl-node-zwhanfekq8b3 .fl-icon i:hover,
.fl-node-zwhanfekq8b3 .fl-icon i:hover:before,
.fl-node-zwhanfekq8b3 .fl-icon a:hover i,
.fl-node-zwhanfekq8b3 .fl-icon a:hover i:before {
	color: #f68f34;
}

.fl-node-zwhanfekq8b3 .fl-icon i, .fl-node-zwhanfekq8b3 .fl-icon i:before {
	font-size: 30px;
}
.fl-node-zwhanfekq8b3 .fl-icon-wrap .fl-icon-text {
	height: 52.5px;
}
.fl-node-zwhanfekq8b3.fl-module-icon {
	text-align: left;
}
.fl-builder-content .fl-node-zwhanfekq8b3 .fl-icon-wrap .fl-icon-text, .fl-builder-content .fl-node-zwhanfekq8b3 .fl-icon-wrap .fl-icon-text-link * {
	color: #f68f34;
}
.fl-node-zwhanfekq8b3 .fl-icon-text, .fl-node-zwhanfekq8b3 .fl-icon-text-link {
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 1200px) {
	.fl-node-zwhanfekq8b3 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-zwhanfekq8b3 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-zwhanfekq8b3 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
 .fl-node-zwhanfekq8b3 > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
	margin-left:20px;
}
	.fl-builder-content .fl-node-q74gnile26xr .fl-icon-wrap .fl-icon-text,
	.fl-builder-content .fl-node-q74gnile26xr .fl-icon-wrap .fl-icon-text * {
		color: #f68f34;
	}
	.fl-node-q74gnile26xr .fl-icon i,
.fl-node-q74gnile26xr .fl-icon i:before {
	color: #f68f34;
}



.fl-node-q74gnile26xr .fl-icon i:hover,
.fl-node-q74gnile26xr .fl-icon i:hover:before,
.fl-node-q74gnile26xr .fl-icon a:hover i,
.fl-node-q74gnile26xr .fl-icon a:hover i:before {
	color: #f68f34;
}

.fl-node-q74gnile26xr .fl-icon i, .fl-node-q74gnile26xr .fl-icon i:before {
	font-size: 30px;
}
.fl-node-q74gnile26xr .fl-icon-wrap .fl-icon-text {
	height: 52.5px;
}
.fl-node-q74gnile26xr.fl-module-icon {
	text-align: center;
}
.fl-builder-content .fl-node-q74gnile26xr .fl-icon-wrap .fl-icon-text, .fl-builder-content .fl-node-q74gnile26xr .fl-icon-wrap .fl-icon-text-link * {
	color: #f68f34;
}
.fl-node-q74gnile26xr .fl-icon-text, .fl-node-q74gnile26xr .fl-icon-text-link {
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 1200px) {
	.fl-node-q74gnile26xr .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-q74gnile26xr .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-q74gnile26xr .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
 .fl-node-q74gnile26xr > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
	.fl-builder-content .fl-node-upbm1gynvhe9 .fl-icon-wrap .fl-icon-text,
	.fl-builder-content .fl-node-upbm1gynvhe9 .fl-icon-wrap .fl-icon-text * {
		color: #f68f34;
	}
	.fl-node-upbm1gynvhe9 .fl-icon i,
.fl-node-upbm1gynvhe9 .fl-icon i:before {
	color: #f68f34;
}



.fl-node-upbm1gynvhe9 .fl-icon i:hover,
.fl-node-upbm1gynvhe9 .fl-icon i:hover:before,
.fl-node-upbm1gynvhe9 .fl-icon a:hover i,
.fl-node-upbm1gynvhe9 .fl-icon a:hover i:before {
	color: #f68f34;
}

.fl-node-upbm1gynvhe9 .fl-icon i, .fl-node-upbm1gynvhe9 .fl-icon i:before {
	font-size: 30px;
}
.fl-node-upbm1gynvhe9 .fl-icon-wrap .fl-icon-text {
	height: 52.5px;
}
.fl-node-upbm1gynvhe9.fl-module-icon {
	text-align: center;
}
.fl-builder-content .fl-node-upbm1gynvhe9 .fl-icon-wrap .fl-icon-text, .fl-builder-content .fl-node-upbm1gynvhe9 .fl-icon-wrap .fl-icon-text-link * {
	color: #f68f34;
}
.fl-node-upbm1gynvhe9 .fl-icon-text, .fl-node-upbm1gynvhe9 .fl-icon-text-link {
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 1200px) {
	.fl-node-upbm1gynvhe9 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-upbm1gynvhe9 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-upbm1gynvhe9 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
 .fl-node-upbm1gynvhe9 > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
	.fl-builder-content .fl-node-6awcrdlshyx2 .fl-icon-wrap .fl-icon-text,
	.fl-builder-content .fl-node-6awcrdlshyx2 .fl-icon-wrap .fl-icon-text * {
		color: #f68f34;
	}
	.fl-node-6awcrdlshyx2 .fl-icon i,
.fl-node-6awcrdlshyx2 .fl-icon i:before {
	color: #f68f34;
}



.fl-node-6awcrdlshyx2 .fl-icon i:hover,
.fl-node-6awcrdlshyx2 .fl-icon i:hover:before,
.fl-node-6awcrdlshyx2 .fl-icon a:hover i,
.fl-node-6awcrdlshyx2 .fl-icon a:hover i:before {
	color: #f68f34;
}

.fl-node-6awcrdlshyx2 .fl-icon i, .fl-node-6awcrdlshyx2 .fl-icon i:before {
	font-size: 30px;
}
.fl-node-6awcrdlshyx2 .fl-icon-wrap .fl-icon-text {
	height: 52.5px;
}
.fl-node-6awcrdlshyx2.fl-module-icon {
	text-align: right;
}
.fl-builder-content .fl-node-6awcrdlshyx2 .fl-icon-wrap .fl-icon-text, .fl-builder-content .fl-node-6awcrdlshyx2 .fl-icon-wrap .fl-icon-text-link * {
	color: #f68f34;
}
.fl-node-6awcrdlshyx2 .fl-icon-text, .fl-node-6awcrdlshyx2 .fl-icon-text-link {
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 1200px) {
	.fl-node-6awcrdlshyx2 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-6awcrdlshyx2 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-6awcrdlshyx2 .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
 .fl-node-6awcrdlshyx2 > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
.fl-row-fixed-width {
	min-width: 1px;
}

.pp-clear:not(.swiper-wrapper):before,
.pp-clear:not(.swiper-wrapper):after {
	content: " ";
	display: table;
}
.pp-clear:not(.swiper-wrapper):after {
	clear: both;
}

.pp-categories-outer {
	position: relative;
}

.pp-category:not(.swiper-slide),
.pp-category .category-inner,
.pp-category .pp-category__img {
	position: relative;
	top: 0;
	flex: 1;
	width: 100%;
}

.pp-category__title_wrapper .pp-category-count{
	display: block;
}
.pp-category .category-inner > .pp-category__link {
	display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
	outline: none;
	text-decoration: none !important;
}

/* Style - 0 ( Default ) */
.pp-category .pp-category__content {
	height: auto;
	width: 90%;
	position: absolute;
	background: #fff;
	text-align: center;
	margin-left:0;
	margin-right:0;
	display: table;
}
.pp-category.pp-category__no-image .pp-category__content {
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
}

.pp-category .pp-category__title {
	margin: 0;
}

.pp-categories-container.swiper {
	padding-bottom: 40px;
}

.pp-categories-container.swiper-container-horizontal > .swiper-pagination-bullets, .pp-categories-container .swiper-pagination-fraction {
	bottom: 20px;
	position: inherit;
}

.pp-categories-outer .swiper-button-prev,
.pp-categories-outer .swiper-button-next {
	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;
	top: calc( 50% - 20px );
	transform: translateY(-50%);
}
.pp-categories-outer .swiper-button-prev:after,
.pp-categories-outer .swiper-button-next:after {
	content: none;
}
.pp-categories-outer .swiper-button-prev svg,
.pp-categories-outer .swiper-button-next svg {
	height: 1em;
}

.pp-categories-container .swiper-pagination {
	cursor: pointer;
}
@media (max-width: 768px) { 
 }
.fl-node-1g3tadqcivzy .pp-categories-outer .swiper-button-prev,
.fl-node-1g3tadqcivzy .pp-categories-outer .swiper-button-next {
	background: none;
					height: 40px;
		width: 40px;
	}

	.fl-node-1g3tadqcivzy .pp-categories-outer .swiper-button-prev svg,
	.fl-node-1g3tadqcivzy .pp-categories-outer .swiper-button-next svg {
		height: 30px;
	}





.fl-node-1g3tadqcivzy .pp-category {
	width: 23.5%;
	float: left;
	background-repeat: no-repeat;
	background-size: cover;
	margin-right: 2%;
		overflow: hidden;
}
.fl-node-1g3tadqcivzy .pp-category .pp-category__link {
	background-color: #a79a91;
}

.fl-node-1g3tadqcivzy .pp-category:hover .pp-category__link {
	background-color: #a79a91;
}

.fl-node-1g3tadqcivzy .pp-category .pp-category__content {
	transform: none;
	position: static;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
}

.fl-node-1g3tadqcivzy .pp-category .category-inner > .pp-category__link {
			flex-direction: column;
	}


.fl-node-1g3tadqcivzy .pp-category.pp-category__no-image .pp-category__content {
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
			align-items: flex-end;
	
			justify-content: flex-start;
	}

.fl-node-1g3tadqcivzy .pp-category .pp-category__title {
	color: #ffffff;
}


.fl-node-1g3tadqcivzy .pp-category .pp-category__description {
	
	}

.fl-node-1g3tadqcivzy .pp-category__button_wrapper {
	}


.fl-node-1g3tadqcivzy .pp-category__button_wrapper .pp-category__button {
	
	text-align: center;
	float: none;
}
.fl-node-1g3tadqcivzy .pp-category__button_wrapper .pp-category__button:hover {
	}


.fl-node-1g3tadqcivzy .pp-category__img {
	overflow: hidden;
}
.fl-node-1g3tadqcivzy .pp-category__img img {
	width: calc(100% + 0px);
	object-fit: cover;
}

.fl-node-1g3tadqcivzy .pp-category .category-style-0 .pp-category__content,
.fl-node-1g3tadqcivzy .pp-category .category-style-0 .pp-category__img,
.fl-node-1g3tadqcivzy .pp-category .category-style-0 .pp-category__img img,
.fl-node-1g3tadqcivzy .pp-category .category-style-0 .pp-category__button_wrapper,
.fl-node-1g3tadqcivzy .pp-category .category-style-0 .pp-category__button_wrapper .pp-category__button,
.fl-node-1g3tadqcivzy .pp-category .category-style-0 .pp-category__content::before,
.fl-node-1g3tadqcivzy .pp-category .category-style-0 .pp-category__content::after,
.fl-node-1g3tadqcivzy .pp-category .category-style-0 .pp-category__description_wrapper {
	-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.fl-node-1g3tadqcivzy .pp-category .category-style-0 .pp-category__img img {
			opacity: 1;
	}
.fl-node-1g3tadqcivzy .pp-category .category-style-0:hover .pp-category__img img {
	}




	.fl-node-1g3tadqcivzy .pp-category .category-inner .pp-category__link {
		background-color: transparent;
	}

		.fl-node-1g3tadqcivzy .pp-category .category-inner .pp-category__content {
		background-color: #a79a91;
	}
	
		.fl-node-1g3tadqcivzy .pp-category .category-inner:hover .pp-category__content {
		background-color: #a79a91;
	}
	
	
	.fl-node-1g3tadqcivzy .pp-category .category-inner .pp-category__img img,
	.fl-node-1g3tadqcivzy .pp-category .category-inner:hover .pp-category__img img {
		opacity: 1;
	}


.fl-node-1g3tadqcivzy .pp-categories-container .swiper-pagination-bullet {
	opacity: 1;
		background-color: #999999;
			width: 10px;
			height: 10px;
			border-radius: 50%;
		box-shadow: none;
}

.fl-node-1g3tadqcivzy .pp-categories-container.swiper-container-horizontal > .swiper-pagination-bullets, .pp-categories-container .swiper-pagination-fraction {
		padding-top: 20px;
	}

.fl-node-1g3tadqcivzy .pp-categories-container .swiper-pagination-progressbar {
		background-color: #999999;
	}
.fl-node-1g3tadqcivzy .pp-categories-container .swiper-pagination-bullet:hover,
.fl-node-1g3tadqcivzy .pp-categories-container .swiper-pagination-bullet-active,
.fl-node-1g3tadqcivzy .pp-categories-container .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
		background-color: #000000;
		opacity: 1;
	box-shadow: none;
}

.fl-node-1g3tadqcivzy .pp-categories-container .swiper-pagination-fraction .swiper-pagination-total {
		color: #999999;
	}

.fl-node-1g3tadqcivzy .pp-categories-container .swiper-pagination-fraction .swiper-pagination-current {
		color: #000000;
	}


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

	.fl-node-1g3tadqcivzy .pp-category {
		width: 23.5%;
					margin-right: 2%;
			margin-bottom: 2%;
			}

}

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

	.fl-node-1g3tadqcivzy .pp-category {
		width: 23.5%;
					margin-right: 2%;
			margin-bottom: 2%;
			}

	/*
	.fl-node-1g3tadqcivzy .pp-category .pp-category__content {
					height: 310px;
			}
	*/
}

@media only screen and ( max-width: 768px ) {
	
	.fl-node-1g3tadqcivzy .pp-category {
					width: 23.5%;
		
					margin-right: 2%;
			margin-bottom: 2%;
			}

	/*
	.fl-node-1g3tadqcivzy .pp-category .pp-category__content {
					height: 160px;
			}
	*/
}
.fl-node-1g3tadqcivzy .pp-category {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #a79a91;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
.fl-node-1g3tadqcivzy .pp-category .pp-category__content {
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-1g3tadqcivzy .pp-categories-container.swiper-container-horizontal > .swiper-pagination-bullets, .fl-node-1g3tadqcivzy .pp-categories-container .swiper-pagination-fraction {
	padding-top: 20px;
}
.fl-node-1g3tadqcivzy .pp-category .category-inner .pp-category__content {
	width: 100%;
	margin-bottom: 0px;
	margin-top: 0px;
}
.fl-node-1g3tadqcivzy .pp-category.pp-category__no-image .pp-category__content {
	height: 350px;
}
.fl-node-1g3tadqcivzy .pp-category__button_wrapper .pp-category__button {
	margin-top: 10px;
	margin-bottom: 15px;
}
.fl-node-1g3tadqcivzy .pp-category__img, .fl-node-1g3tadqcivzy .pp-category__img img {
	height: 350px;
}
@media(max-width: 768px) {
	.fl-node-1g3tadqcivzy .pp-category.pp-category__no-image .pp-category__content {
		height: 200px;
	}
	.fl-node-1g3tadqcivzy .pp-category__img, .fl-node-1g3tadqcivzy .pp-category__img img {
		height: 200px;
	}
}
.fl-animated.fl-fade-in {
	animation: fl-fade-in 1s ease;
	-webkit-animation: fl-fade-in 1s ease;
}
@-webkit-keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
img.mfp-img {
    padding-bottom: 40px !important;
}

/* Support for object-fit */
.fl-builder-edit .fl-fill-container img {
	transition: object-position .5s;
}

.fl-fill-container :is(.fl-module-content, .fl-photo, .fl-photo-content, img) {
	height: 100% !important;
	width: 100% !important;
}

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-plkgjfvq1nuo, .fl-node-plkgjfvq1nuo .fl-photo {
	text-align: center;
}
 .fl-node-plkgjfvq1nuo > .fl-module-content {
	margin-top:-30px;
	margin-right:-500px;
	margin-bottom:0px;
	margin-left:650px;
}
@media ( max-width: 768px ) {
 .fl-node-plkgjfvq1nuo.fl-module > .fl-module-content {
	margin-top:0%;
	margin-right:92%;
	margin-bottom:-38%;
	margin-left:-78%;
}
}
/* Wrappers */
body.rtl .fl-module-testimonials .bx-viewport {
	direction: ltr;
}
body.rtl .fl-testimonials-wrap.compact .fl-slider-next {
	left: 18px;
	right: auto;
}
body.rtl .fl-testimonials-wrap.compact .fl-slider-prev {
	right: auto !important;
	left: 0;
}
body.rtl .fl-testimonials-wrap .fl-testimonial {
	direction: rtl;
}

.fl-module-testimonials {
	flex-grow: 1;
	place-self: stretch;
}

.fl-module-testimonials .bx-wrapper {
	margin: 0 auto 35px;
}
.fl-testimonials-wrap {
	position: relative;
}
.fl-testimonials-wrap .fl-testimonial {
	position: absolute;
	top: 0;
	visibility: hidden;
}
.fl-testimonials-wrap .fl-testimonial:first-child,
.fl-testimonials-loaded .fl-testimonial {
	position: relative;
	visibility: visible;
}
.fl-testimonials-wrap .fa {
	opacity: 0.8;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.fl-testimonials-wrap .fa:hover {
	opacity: 1;
}

/* Wide */
.fl-testimonials.wide {
	text-align: center;
}
.fl-testimonials-wrap.wide .fl-slider-next,
.fl-testimonials-wrap.wide .fl-slider-prev {
	position: absolute;
	top: 50%;
	margin-top:-10px;
	right: 0px;
}
.fl-testimonials-wrap.wide .fa {
	font-size: 23px;
	position: relative;
	z-index: 1;
}
.fl-testimonials-wrap.wide .fl-slider-prev {
	left: 0px !important;
}

/* Compact */
.fl-testimonials-wrap.compact h3 {
	margin: .3em 0;
}
.fl-testimonials-wrap.compact .fl-slider-next,
.fl-testimonials-wrap.compact .fl-slider-prev {
	position: absolute;
	top: 9px;
	right: 0;
}
.fl-testimonials-wrap.compact .fa {
	font-size: 17px;
}
.fl-testimonials-wrap.compact .fl-slider-prev {
	right: 18px !important;
}

/* Navigation Fixes */
.fl-testimonials-wrap .fl-slider-next a.disabled,
.fl-testimonials-wrap .fl-slider-prev a.disabled,
.fl-testimonials-wrap .bx-controls a.disabled {
	pointer-events: none;
}
.fl-node-aqnu5dxck4b1 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-aqnu5dxck4b1 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-aqnu5dxck4b1 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-aqnu5dxck4b1 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-aqnu5dxck4b1 .fl-testimonials-wrap .fas:hover,
.fl-node-aqnu5dxck4b1 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-aqnu5dxck4b1 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
.fl-builder-content .fl-node-aqnu5dxck4b1 .fl-testimonials .fl-testimonial, .fl-builder-content .fl-node-aqnu5dxck4b1 .fl-testimonials .fl-testimonial * {
	color: #f68f34;
}
.fl-builder-content .fl-node-aqnu5dxck4b1 .fl-testimonials .fl-testimonial {
	text-align: left;
	text-transform: uppercase;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-aqnu5dxck4b1 .fl-testimonials .fl-testimonial {
		text-align: left;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-aqnu5dxck4b1 .fl-testimonials .fl-testimonial {
		font-size: 20px;
		text-align: center;
	}
}
 .fl-node-aqnu5dxck4b1 > .fl-module-content {
	margin-bottom:10px;
}
@media ( max-width: 1200px ) {
 .fl-node-aqnu5dxck4b1.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
}
@media ( max-width: 768px ) {
 .fl-node-aqnu5dxck4b1.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:5px;
	margin-bottom:10px;
	margin-left:5px;
}
}
.fl-node-1aors5678nkm, .fl-node-1aors5678nkm .fl-photo {
	text-align: center;
}
 .fl-node-1aors5678nkm > .fl-module-content {
	margin-top:-12%;
	margin-right:0%;
	margin-bottom:-27%;
	margin-left:-120%;
}
@media (max-width: 768px) { .fl-node-1aors5678nkm > .fl-module-content { margin-top:20px;margin-bottom:20px;margin-left:20px; } }

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






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







.fl-node-vz8mskdlr157.fl-button-wrap, .fl-node-vz8mskdlr157 .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-vz8mskdlr157 a.fl-button, .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button, .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:visited {
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	border: 1px solid #ea8328;
	background-color: #f68f34;
}
.fl-builder-content .fl-node-vz8mskdlr157 a.fl-button, .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:visited, .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:hover, .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button, .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-builder-content .fl-module-button.fl-node-vz8mskdlr157 a.fl-button:hover, .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:focus, .fl-page .fl-builder-content .fl-module-button.fl-node-vz8mskdlr157 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:focus {
	border-color: #50031b;
}
.fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:hover {
	background-color: #50031b;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-vz8mskdlr157 a.fl-button {
		padding-top: 5px;
		padding-right: 5px;
		padding-bottom: 5px;
		padding-left: 5px;
	}
	.fl-builder-content .fl-node-vz8mskdlr157 a.fl-button, .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button, .fl-page .fl-builder-content .fl-node-vz8mskdlr157 a.fl-button:visited {
		font-size: 12px;
	}
}
 .fl-node-vz8mskdlr157 > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-vz8mskdlr157.fl-module > .fl-module-content {
	margin-top:2px;
	margin-right:0px;
	margin-bottom:2px;
	margin-left:0px;
}
}
/* Generic Styles */
.fl-module-post-grid .fl-sep {
	display: inline-block;
	margin: 0 2px;
}

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

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

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

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

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

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

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

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

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

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

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

li.fl-post-feed-post,li.fl-post-gallery-post, li.fl-post-grid-post {
	list-style: none;
}
@media (max-width: 768px) { /* Post Feed */
.fl-post-feed-post.fl-post-feed-image-beside,
.fl-post-feed-post.fl-post-feed-image-beside-content,
.fl-post-feed-post.fl-post-feed-image-beside-right,
.fl-post-feed-post.fl-post-feed-image-beside-content-right {
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside .fl-post-feed-image img,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image img,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image img,
.fl-post-feed-image-beside-content-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image img {
	float: none;
	width: 100% !important;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image {
	margin-bottom: 20px;
}
.fl-post-feed-image-beside .fl-post-feed-text,
.fl-post-feed-image-beside-content .fl-post-feed-text,
.fl-post-feed-image-beside-right .fl-post-feed-text,
.fl-post-feed-image-beside-content-right .fl-post-feed-text {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
 }
.fl-node-y83wf9kb12eu .fl-post-grid {
	margin-left: -5px;
	margin-right: -5px;
}
.fl-node-y83wf9kb12eu .fl-post-column {
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	width: 33.333333333333%;
}
.fl-node-y83wf9kb12eu .fl-post-column:nth-child(3n + 1) {
	clear: both;
}
		@media screen and (max-width: 1200px) {
		.fl-node-y83wf9kb12eu .fl-post-column {
			width: 33.333333333333%;
		}
		.fl-node-y83wf9kb12eu .fl-post-column:nth-child(3n + 1) {
			clear: none;
		}
		.fl-node-y83wf9kb12eu .fl-post-column:nth-child(3n + 1) {
			clear: both;
		}
	}
			@media screen and (max-width: 992px) {
		.fl-node-y83wf9kb12eu .fl-post-column {
			width: 50%;
		}
		.fl-node-y83wf9kb12eu .fl-post-column:nth-child(3n + 1) {
			clear: none;
		}
		.fl-node-y83wf9kb12eu .fl-post-column:nth-child(2n + 1) {
			clear: both;
		}
	}
			@media screen and (max-width: 768px) {
		.fl-node-y83wf9kb12eu .fl-post-column {
			width: 100%;
		}
		.fl-node-y83wf9kb12eu .fl-post-column:nth-child(2n + 1) {
			clear: none;
		}
		.fl-node-y83wf9kb12eu .fl-post-column:nth-child(1n + 1) {
			clear: both;
		}
	}
	 .fl-node-y83wf9kb12eu > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}


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






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







.fl-node-jp1xbse2n67l.fl-button-wrap, .fl-node-jp1xbse2n67l .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-jp1xbse2n67l a.fl-button, .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:visited, .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button, .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:visited {
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	border: 1px solid #ea8328;
	background-color: #f68f34;
}
.fl-builder-content .fl-node-jp1xbse2n67l a.fl-button, .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:visited, .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:hover, .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:focus, .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button, .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:visited, .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:hover, .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-builder-content .fl-module-button.fl-node-jp1xbse2n67l a.fl-button:hover, .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:focus, .fl-page .fl-builder-content .fl-module-button.fl-node-jp1xbse2n67l a.fl-button:hover, .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:focus {
	border-color: #50031b;
}
.fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:hover, .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:hover, .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:hover {
	background-color: #50031b;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-jp1xbse2n67l a.fl-button, .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:visited, .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button, .fl-page .fl-builder-content .fl-node-jp1xbse2n67l a.fl-button:visited {
		font-size: 12px;
	}
}
 .fl-node-jp1xbse2n67l > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-jp1xbse2n67l.fl-module > .fl-module-content {
	margin-top:10px;
}
}


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






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







.fl-node-qaurz25oi70p.fl-button-wrap, .fl-node-qaurz25oi70p .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-qaurz25oi70p a.fl-button, .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:visited, .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button, .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:visited {
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	border: 1px solid #f37c00;
	background-color: #ff8800;
}
.fl-builder-content .fl-node-qaurz25oi70p a.fl-button, .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:visited, .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:hover, .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:focus, .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button, .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:visited, .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:hover, .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-builder-content .fl-module-button.fl-node-qaurz25oi70p a.fl-button:hover, .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:focus, .fl-page .fl-builder-content .fl-module-button.fl-node-qaurz25oi70p a.fl-button:hover, .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:focus {
	border-color: #50031b;
	border-color: #51031b;
}
.fl-builder-content .fl-node-qaurz25oi70p a.fl-button:hover, .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:hover, .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:hover {
	background-color: #51031b;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-qaurz25oi70p a.fl-button {
		padding-top: 5px;
		padding-right: 5px;
		padding-bottom: 5px;
		padding-left: 5px;
	}
	.fl-builder-content .fl-node-qaurz25oi70p a.fl-button, .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:visited, .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button, .fl-page .fl-builder-content .fl-node-qaurz25oi70p a.fl-button:visited {
		font-size: 12px;
	}
}
 .fl-node-qaurz25oi70p > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}


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






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







.fl-node-z94d0sbiajny.fl-button-wrap, .fl-node-z94d0sbiajny .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-z94d0sbiajny a.fl-button, .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:visited, .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button, .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:visited {
	font-weight: 700;
	font-size: 20px;
	text-transform: uppercase;
	border: 1px solid #f37c00;
	background-color: #ff8800;
}
.fl-builder-content .fl-node-z94d0sbiajny a.fl-button, .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:visited, .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:hover, .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:focus, .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button, .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:visited, .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:hover, .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-builder-content .fl-module-button.fl-node-z94d0sbiajny a.fl-button:hover, .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:focus, .fl-page .fl-builder-content .fl-module-button.fl-node-z94d0sbiajny a.fl-button:hover, .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:focus {
	border-color: #50031b;
	border-color: #51031b;
}
.fl-builder-content .fl-node-z94d0sbiajny a.fl-button:hover, .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:hover, .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:hover {
	background-color: #51031b;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-z94d0sbiajny a.fl-button, .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:visited, .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button, .fl-page .fl-builder-content .fl-node-z94d0sbiajny a.fl-button:visited {
		font-size: 12px;
	}
}
 .fl-node-z94d0sbiajny > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}

.fl-node-bti205w4kmg6 .fl-post-grid {
	margin-left: -2.5px;
	margin-right: -2.5px;
}
.fl-node-bti205w4kmg6 .fl-post-column {
	padding-bottom: 5px;
	padding-left: 2.5px;
	padding-right: 2.5px;
	width: 33.333333333333%;
}
.fl-node-bti205w4kmg6 .fl-post-column:nth-child(3n + 1) {
	clear: both;
}
		@media screen and (max-width: 1200px) {
		.fl-node-bti205w4kmg6 .fl-post-column {
			width: 33.333333333333%;
		}
		.fl-node-bti205w4kmg6 .fl-post-column:nth-child(3n + 1) {
			clear: none;
		}
		.fl-node-bti205w4kmg6 .fl-post-column:nth-child(3n + 1) {
			clear: both;
		}
	}
			@media screen and (max-width: 992px) {
		.fl-node-bti205w4kmg6 .fl-post-column {
			width: 50%;
		}
		.fl-node-bti205w4kmg6 .fl-post-column:nth-child(3n + 1) {
			clear: none;
		}
		.fl-node-bti205w4kmg6 .fl-post-column:nth-child(2n + 1) {
			clear: both;
		}
	}
			@media screen and (max-width: 768px) {
		.fl-node-bti205w4kmg6 .fl-post-column {
			width: 50%;
		}
		.fl-node-bti205w4kmg6 .fl-post-column:nth-child(2n + 1) {
			clear: none;
		}
		.fl-node-bti205w4kmg6 .fl-post-column:nth-child(2n + 1) {
			clear: both;
		}
	}
	 .fl-node-bti205w4kmg6 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}

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

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

div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading {
		}

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


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


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


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

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

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

/** Separators */


div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title:before {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 300px;
			border-bottom-style: solid;
			border-bottom-color: #ffffff;
			border-bottom-width: 1px;
	}

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


div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-sub-heading,
div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

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

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

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

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

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

div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

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

div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #ffffff;
			width: 300px;
			margin: 0 auto;
	}

div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-lb8aj4i1hcnr .pp-heading-content {
				text-align: ;
			}
	div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-lb8aj4i1hcnr div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-lb8aj4i1hcnr div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-lb8aj4i1hcnr div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-lb8aj4i1hcnr div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-lb8aj4i1hcnr .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-lb8aj4i1hcnr .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-lb8aj4i1hcnr .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-lb8aj4i1hcnr > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-okj63uywrh7d, .fl-node-okj63uywrh7d .fl-photo {
	text-align: center;
}
.fl-node-okj63uywrh7d .fl-photo-content, .fl-node-okj63uywrh7d .fl-photo-img {
	width: 700px;
}
 .fl-node-okj63uywrh7d > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-okj63uywrh7d.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading-prefix {
		color: #A79A91;
	}

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

div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading {
		}

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


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


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


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

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

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

/** Separators */


div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 300px;
			border-style: solid;
			border-color: #A79A91;
			border-bottom-width: 1px;
	}

div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 300px;
			border-style: solid;
			border-color: #A79A91;
			border-bottom-width: 1px;
	}

div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 300px;
			border-bottom-style: solid;
			border-bottom-color: #A79A91;
			border-bottom-width: 1px;
	}

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


div.fl-node-sewajgm1cypd .pp-heading-content .pp-sub-heading,
div.fl-node-sewajgm1cypd .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

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

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

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

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

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

div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 300px;
			border-style: solid;
			border-color: #A79A91;
			border-bottom-width: 1px;
	}

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

div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #A79A91;
			width: 300px;
			margin: 0 auto;
	}

div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-sewajgm1cypd .pp-heading-content {
				text-align: ;
			}
	div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-sewajgm1cypd div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-sewajgm1cypd div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-sewajgm1cypd div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-sewajgm1cypd div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-sewajgm1cypd .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-sewajgm1cypd .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 768px) {
	div.fl-node-sewajgm1cypd .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}

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

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

div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading {
		}

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


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


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


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

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

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

/** Separators */


div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title:before {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 300px;
			border-bottom-style: solid;
			border-bottom-color: #ffffff;
			border-bottom-width: 1px;
	}

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


div.fl-node-f5u94yxwi702 .pp-heading-content .pp-sub-heading,
div.fl-node-f5u94yxwi702 .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

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

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

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

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

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

div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

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

div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #ffffff;
			width: 300px;
			margin: 0 auto;
	}

div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-f5u94yxwi702 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading-prefix {
	text-transform: uppercase;
}
div.fl-node-f5u94yxwi702 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-f5u94yxwi702 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-f5u94yxwi702 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-f5u94yxwi702 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-f5u94yxwi702 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-f5u94yxwi702 .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-f5u94yxwi702 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-f5u94yxwi702 > .fl-module-content {
	margin-bottom:0px;
}
.woopack-clear:before,
.woopack-clear:after {
	content: " ";
	display: table;
}
.woopack-clear:after {
	clear: both;
}
.woopack-product-category,
.woopack-product-category .product-category-inner,
.woopack-product-category .woopack-product-category__img {
	position: relative;
	top: 0;
}

.woopack-product-category .product-category-inner > .woopack-product-category__link {
	display: block;
	outline: none;
	text-decoration: none !important;
}

/* Style - 0 ( Default ) */
.woopack-product-category .product-category-style-0 .woopack-product-category__content {
	height: unset !important;
    width: 90% !important;
    position: absolute;
    bottom: 20px;
    left: 5%;
    right: 5%;
    background: #fff;
    text-align: center;
}
.woopack-product-category .product-category-style-0 .woopack-product-category__title {
	margin: 0;
}
.woopack-product-category .product-category-style-0 .woopack-product-category__description_wrapper {
	display: none;	
}

/* Style - 1  */
.woopack-product-category .product-category-style-1 .woopack-product-category__img img {
	opacity: 1;
}
.woopack-product-category .product-category-style-1 .woopack-product-category__content {
	position: absolute;
	top: 0%;
}
.woopack-product-category .product-category-style-1 .woopack-product-category__title,
.woopack-product-category .product-category-style-1 .woopack-product-category__description {
	margin-bottom: 0;
}
.woopack-product-category .product-category-style-1 .woopack-product-category__description_wrapper,
.woopack-product-category .product-category-style-1 .woopack-product-category__button_wrapper {
	opacity: 0;
	visibility: hidden;
}

/* Style - 2  */
.woopack-product-category .product-category-style-2 .woopack-product-category__title {
	margin-top: 0px;
}

/* Style - 3 & 4 */
.woopack-product-category .product-category-style-3 .woopack-product-category__content,
.woopack-product-category .product-category-style-4 .woopack-product-category__content {
	position: absolute;
	top: 0%;
}
.woopack-product-category .product-category-style-3 .woopack-product-category__title_wrapper,
.woopack-product-category .product-category-style-4 .woopack-product-category__title_wrapper {
	position: relative;
	left: 0%;
	right: 0%;
	width: 100%;
}
.woopack-product-category .product-category-style-3 .woopack-product-category__title,
.woopack-product-category .product-category-style-4 .woopack-product-category__title {
	margin-top: 0;
	margin-bottom: 10px;
}
.woopack-product-category .product-category-style-3 .woopack-product-category__description_wrapper,
.woopack-product-category .product-category-style-3 .woopack-product-category__button_wrapper,
.woopack-product-category .product-category-style-4 .woopack-product-category__description_wrapper,
.woopack-product-category .product-category-style-4 .woopack-product-category__button_wrapper {
	opacity: 0;
	visibility: hidden;
	width: 100%;
}
.woopack-product-category .product-category-style-3 .woopack-product-category__description,
.woopack-product-category .product-category-style-4 .woopack-product-category__description {
	margin-bottom: 0;
}

/* Style - 5 */
.woopack-product-category .product-category-style-5 .woopack-product-category__button_wrapper {
	display: none;
}
.woopack-product-category .product-category-style-5 .woopack-product-category__content {
	position: absolute;
	top: 0%;
}
.woopack-product-category .product-category-style-5 .woopack-product-category__title {
	margin-top: 0;
	margin-bottom: 10px;
}
.woopack-product-category .product-category-style-5 .woopack-product-category__description {
	margin-top: 0 !important;
	margin-bottom: 0;
}

/* Style - 7 & 8 */
.woopack-product-category .product-category-style-8 .woopack-product-category__content,
.woopack-product-category .product-category-style-7 .woopack-product-category__content {
	position: absolute;
	top: 0;
	text-align: center;
}
.woopack-product-category .product-category-style-8 .woopack-product-category__content:before,
.woopack-product-category .product-category-style-7 .woopack-product-category__content:before {
	top: 5%;
	right: 0;
	bottom: 5%;
	left: 0;
	-webkit-transform-origin: 0 0;
		transform-origin: 0 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
		transition: opacity 0.35s, transform 0.35s;
}
.woopack-product-category .product-category-style-8 .woopack-product-category__content:after,
.woopack-product-category .product-category-style-7 .woopack-product-category__content:after {
	top: 0px;
	right: 5%;
	bottom: 0;
	left: 5%;
	-webkit-transform-origin: 100% 0;
		transform-origin: 100% 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
		transition: opacity 0.35s, transform 0.35s;
}
.woopack-product-category .product-category-style-8 .woopack-product-category__content:before,
.woopack-product-category .product-category-style-8 .woopack-product-category__content:after,
.woopack-product-category .product-category-style-7 .woopack-product-category__content:before,
.woopack-product-category .product-category-style-7 .woopack-product-category__content:after {
	content: "";
	position: absolute;
	opacity: 0;
}
.woopack-product-category .product-category-style-8:hover .woopack-product-category__content:before,
.woopack-product-category .product-category-style-8:hover .woopack-product-category__content:after,
.woopack-product-category .product-category-style-7:hover .woopack-product-category__content:before,
.woopack-product-category .product-category-style-7:hover .woopack-product-category__content:after {
	opacity: 1;
	-webkit-transform: scale(1);
		transform: scale(1);
}
.woopack-product-category .product-category-style-8 .woopack-product-category__title_wrapper,
.woopack-product-category .product-category-style-7 .woopack-product-category__title_wrapper {
	display: table-row;
	vertical-align: middle;
}
.woopack-product-category .product-category-style-8 .woopack-product-category__title,
.woopack-product-category .product-category-style-7 .woopack-product-category__title {
	margin: 0px;
}
.woopack-product-category .product-category-style-8 .woopack-product-category__description,
.woopack-product-category .product-category-style-7 .woopack-product-category__description {
	margin: 0;
}
/* .woopack-product-category .product-category-style-8 .woopack-product-category__button_wrapper,
.woopack-product-category .product-category-style-7 .woopack-product-category__button_wrapper {
	display: none;
} */

/*
*********************
*	Hover Effect
*********************
*/

/* Style - 1 */
.woopack-product-category .product-category-style-1:hover .woopack-product-category__title_wrapper,
.woopack-product-category .product-category-style-1:hover .woopack-product-category__description_wrapper,
.woopack-product-category .product-category-style-1:hover .woopack-product-category__button_wrapper {
	opacity: 1;
	visibility: visible;
}
@media (max-width: 768px) {  }.fl-node-4evmadw13jks .woopack-last {
	clear: right;
	margin-right: 0 !important;
}
.fl-node-4evmadw13jks .woopack-product-category {
	width: 31.666666666667%;
	height: 300px;
	float: left;
	background-repeat: no-repeat;
	background-size: cover;
	margin-right: 2%;
	margin-bottom: 2%;
	overflow: hidden;
}
.fl-node-4evmadw13jks .woopack-product-category div.product-category-inner {
	background-color: #f68f33;
}
.fl-node-4evmadw13jks .woopack-product-category:hover div.product-category-inner {
	background-color: #4f0019;
}
.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__content {
	text-align: center;
		height: 210px;
		width: calc( 100% - 0px );
	display: table;
}
.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__title {
	color: #ffffff;
}
.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__title span {
		}
.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__description {
		}
.fl-node-4evmadw13jks .woopack-product-category__button_wrapper {
					z-index: 9999;	
}
.fl-node-4evmadw13jks .woopack-product-category__button_wrapper .woopack-product-category__button {
					margin-top: 10px;
	margin-bottom: 15px;
	text-align: center !important;
	float: none;
	z-index: 999999;
}
.fl-node-4evmadw13jks .woopack-product-category__button_wrapper .woopack-product-category__button:hover {
			}
.fl-node-4evmadw13jks .woopack-product-category__img {
	height: 300px;
	overflow: hidden;
}
.fl-node-4evmadw13jks .woopack-product-category__img img {
	width: calc(100% + 0px);
	object-fit: cover;
	height: 300px;
}
.fl-node-4evmadw13jks .woopack-product-category,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__link,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__content,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__title_wrapper,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__title,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__title span,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__img,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__img img,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__button_wrapper,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__button_wrapper .woopack-product-category__button,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__content::before,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__content::after,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__description_wrapper {
	-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}
.fl-node-4evmadw13jks .woopack-product-category:hover,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__content,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__title_wrapper,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__title,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__title span,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__img,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__img img,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__button_wrapper,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__button_wrapper .woopack-product-category__button,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__content::before,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__content::after,
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__description_wrapper {
	-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__img img {
	opacity: 0.5;
}
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__img img {
	}

.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__title {
	}
.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__title span {
	}

	.fl-node-4evmadw13jks .woopack-product-category .product-category-inner.product-category-style-0 {
		background-color: transparent;
	}
	.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__content {
		background-color: #f68f33;
	}
	.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__content:hover {
		background-color: #4f0019;
	}
	.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__title_wrapper span {
					}
	.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0 .woopack-product-category__img img,
	.fl-node-4evmadw13jks .woopack-product-category .product-category-style-0:hover .woopack-product-category__img img {
		opacity: 1;
	}

 

 















@media only screen and ( max-width: 992px ) {
	.fl-node-4evmadw13jks .woopack-product-category {
		width: 48.5%;
		height: 300px;
		margin-right: 2%;
		margin-bottom: 2%;
	}
		.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__content {
					height: 260px;
			}
	.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__title span {
			}

	.fl-node-4evmadw13jks .woopack-product-category__button_wrapper .woopack-product-category__button {
									}

	.fl-node-4evmadw13jks .woopack-product-category__img {
		height: 300px;
	}
}

@media only screen and ( max-width: 768px ) {
	.fl-node-4evmadw13jks .woopack-product-category {
		width: 48.5%;
		height: 150px;
		margin-right: 2%;
		margin-bottom: 2%;
	}
			.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__content {
					height: 110px;
			}
	.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__title span {
			}
	.fl-node-4evmadw13jks .woopack-product-category__button_wrapper .woopack-product-category__button {
									}
	.fl-node-4evmadw13jks .woopack-product-category__img {
		height: 150px;
	}
}
.fl-node-4evmadw13jks .woopack-product-category {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__content {
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 90px;
	margin-left: 0px;
}
.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__title {
	font-weight: 400;
	font-size: 20px;
	text-transform: none;
}
@media(max-width: 1200px) {
	.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__content {
		padding-top: 5px;
		padding-right: 5px;
		padding-bottom: 5px;
		padding-left: 5px;
	}
}
@media(max-width: 768px) {
	.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__content {
		padding-top: 4px;
		padding-right: 4px;
		padding-bottom: 4px;
		padding-left: 4px;
		margin-bottom: 40px;
	}
	.fl-node-4evmadw13jks .woopack-product-category .woopack-product-category__title {
		font-size: 15px;
	}
}
 .fl-node-4evmadw13jks > .fl-module-content {
	margin-top:-2px;
}
@media (max-width: 768px) { .fl-node-4evmadw13jks > .fl-module-content { margin-top:20px; } }.fl-node-92uviycqxrkl, .fl-node-92uviycqxrkl .fl-photo {
	text-align: center;
}
.fl-node-92uviycqxrkl .fl-photo-content, .fl-node-92uviycqxrkl .fl-photo-img {
	width: 700px;
}
 .fl-node-92uviycqxrkl > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-92uviycqxrkl.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

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

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

div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading {
		}

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


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


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


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

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

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

/** Separators */


div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 300px;
			border-bottom-style: solid;
			border-bottom-color: #ffffff;
			border-bottom-width: 1px;
	}

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


div.fl-node-dval4u51cfb8 .pp-heading-content .pp-sub-heading,
div.fl-node-dval4u51cfb8 .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

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

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

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

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

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

div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

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

div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #ffffff;
			width: 300px;
			margin: 0 auto;
	}

div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-dval4u51cfb8 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-dval4u51cfb8 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-dval4u51cfb8 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-dval4u51cfb8 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-dval4u51cfb8 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-dval4u51cfb8 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-dval4u51cfb8 .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-dval4u51cfb8 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-uql21itp3wzy, .fl-node-uql21itp3wzy .fl-photo {
	text-align: center;
}
.fl-node-uql21itp3wzy .fl-photo-content, .fl-node-uql21itp3wzy .fl-photo-img {
	width: 700px;
}
 .fl-node-uql21itp3wzy > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-uql21itp3wzy.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-node-y9zst24fem67, .fl-node-y9zst24fem67 .fl-photo {
	text-align: center;
}
.fl-node-y9zst24fem67 .fl-photo-content, .fl-node-y9zst24fem67 .fl-photo-img {
	width: 700px;
}
 .fl-node-y9zst24fem67 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-y9zst24fem67.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-3wxgs6qp0ek9 .pp-heading-content {
	text-align: center;
}

div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading {
		}

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


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


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


div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

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

div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title:before {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 300px;
			border-bottom-style: solid;
			border-bottom-color: #ffffff;
			border-bottom-width: 1px;
	}

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


div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-sub-heading,
div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

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

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

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

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

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

div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

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

div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #ffffff;
			width: 300px;
			margin: 0 auto;
	}

div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-3wxgs6qp0ek9 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-3wxgs6qp0ek9 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-3wxgs6qp0ek9 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-3wxgs6qp0ek9 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-3wxgs6qp0ek9 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-3wxgs6qp0ek9 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-3wxgs6qp0ek9 .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-3wxgs6qp0ek9 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-3wxgs6qp0ek9 > .fl-module-content {
	margin-bottom:0px;
}

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

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

div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading {
		}

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


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


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


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

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

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

/** Separators */


div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 300px;
			border-bottom-style: solid;
			border-bottom-color: #ffffff;
			border-bottom-width: 1px;
	}

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


div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-sub-heading,
div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-sub-heading p {
		color: #000000;
	}

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

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

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

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

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

div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 300px;
			border-style: solid;
			border-color: #ffffff;
			border-bottom-width: 1px;
	}

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

div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #ffffff;
			width: 300px;
			margin: 0 auto;
	}

div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading-separator:not(.inline) {
		color: #000000;
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-i34rv9o2pn0f .pp-heading-content {
				text-align: center;
			}
	div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-i34rv9o2pn0f div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-i34rv9o2pn0f div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-i34rv9o2pn0f div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-i34rv9o2pn0f div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-i34rv9o2pn0f .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-i34rv9o2pn0f .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 768px) {
	div.fl-node-i34rv9o2pn0f .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
.pp-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    z-index: -1;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.pp-modal-wrap.pp-modal-active {
	z-index: 99999;
	visibility: visible;
	opacity: 1;
}
.pp-modal-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
}
.pp-modal-button .sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
}

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

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

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

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

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

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

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

@media only screen and (max-width: 768px) {
	.pp-modal-wrap .pp-flexbox {
		flex-direction: column;
	}
	.pp-modal-wrap .pp-flexbox .pp-flexbox-item {
		width: 100%;
	}
}@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }
.fl-node-dbjr695m0fkx .pp-modal-button {
	text-align: center;
}
.fl-node-dbjr695m0fkx .pp-modal-trigger,
.fl-node-dbjr695m0fkx .pp-modal-button .pp-modal-trigger,
.fl-node-dbjr695m0fkx .pp-modal-button .pp-modal-trigger .pp-modal-trigger-icon {
		color: #ffffff;
			background-color: #F68F34;
					text-align: center;
	text-decoration: none;
}


.fl-node-dbjr695m0fkx .pp-modal-trigger .pp-button-icon {
	}

.fl-builder-content .fl-node-dbjr695m0fkx .pp-modal-trigger:hover,
.fl-node-dbjr695m0fkx .pp-modal-trigger:hover {
        color: #F68F34;
			background-color: #ffffff;
	        border-color: #F68F34;
}


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

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

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




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

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

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

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

.fl-node-dbjr695m0fkx .pp-modal-wrap:not(.has-overlay-animation) .pp-modal-overlay,
#modal-dbjr695m0fkx:not(.has-overlay-animation) .pp-modal-overlay {
    		background-color: #000000;
		}

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

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


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






.fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover,
.fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover span.fl-button-text,
.fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover *,
.fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover,
.fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover span.fl-button-text,
.fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover * {
	color: #f68f34;
}







.fl-node-8c5t39kps1zx.fl-button-wrap, .fl-node-8c5t39kps1zx .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-8c5t39kps1zx a.fl-button, .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:visited, .fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button, .fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:visited {
	text-transform: uppercase;
	border: 1px solid #ea8328;
	background-color: #f68f34;
}
.fl-builder-content .fl-node-8c5t39kps1zx a.fl-button, .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:visited, .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover, .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:focus, .fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button, .fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:visited, .fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover, .fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
}
.fl-builder-content .fl-module-button.fl-node-8c5t39kps1zx a.fl-button:hover, .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:focus, .fl-page .fl-builder-content .fl-module-button.fl-node-8c5t39kps1zx a.fl-button:hover, .fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:focus {
	border-color: #50031b;
	border-color: #f68f34;
}
.fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover, .fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover, .fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-8c5t39kps1zx a.fl-button:hover {
	background-color: #ffffff;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
	.fl-builder-content .fl-node-og9mzb3huail .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-og9mzb3huail .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	@media(max-width: 768px) {
	.fl-builder-content .fl-node-og9mzb3huail .fl-rich-text, .fl-builder-content .fl-node-og9mzb3huail .fl-rich-text *:not(b, strong) {
		text-align: left;
	}
}
 .fl-node-og9mzb3huail > .fl-module-content {
	margin-top:0px;
}

.fl-node-xtf5ae4w8yhj .pp-modal-button {
	text-align: center;
}
.fl-node-xtf5ae4w8yhj .pp-modal-trigger,
.fl-node-xtf5ae4w8yhj .pp-modal-button .pp-modal-trigger,
.fl-node-xtf5ae4w8yhj .pp-modal-button .pp-modal-trigger .pp-modal-trigger-icon {
		color: #ffffff;
			background-color: #F68F34;
					text-align: center;
	text-decoration: none;
}


.fl-node-xtf5ae4w8yhj .pp-modal-trigger .pp-button-icon {
	}

.fl-builder-content .fl-node-xtf5ae4w8yhj .pp-modal-trigger:hover,
.fl-node-xtf5ae4w8yhj .pp-modal-trigger:hover {
        color: #F68F34;
			background-color: #ffffff;
	        border-color: #F68F34;
}


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

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

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




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

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

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

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

.fl-node-xtf5ae4w8yhj .pp-modal-wrap:not(.has-overlay-animation) .pp-modal-overlay,
#modal-xtf5ae4w8yhj:not(.has-overlay-animation) .pp-modal-overlay {
    		background-color: #000000;
		}

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

@media only screen and (max-width: 767px) {
    .fl-node-xtf5ae4w8yhj .pp-modal.layout-standard,
    #modal-xtf5ae4w8yhj .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-xtf5ae4w8yhj .pp-modal-button {
	text-align: center;
}
.fl-node-xtf5ae4w8yhj .pp-modal-button .pp-modal-trigger {
	text-transform: uppercase;
}
.fl-node-xtf5ae4w8yhj .pp-modal-trigger, .fl-node-xtf5ae4w8yhj .pp-modal-button .pp-modal-trigger {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #F68F34;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
.fl-node-xtf5ae4w8yhj .pp-modal, #modal-xtf5ae4w8yhj .pp-modal {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}
.fl-node-xtf5ae4w8yhj .pp-modal.layout-fullscreen, #modal-xtf5ae4w8yhj .pp-modal.layout-fullscreen {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.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;
}
.fl-module-box > .fl-module-pp-image-carousel {
    width: 100%;
    overflow: hidden;
}

.fl-module-box .pp-image-carousel.swiper-fade .swiper-slide {
    width: 100% !important;
}

.compat-field-pp-custom-link .alignleft {
    margin: 0;
}

.pp-image-carousel-wrapper {
	position: relative;
}

.pp-image-carousel,
.pp-image-carousel.swiper-cube {
    position: relative;
    text-align: center;
	overflow: hidden;
	height: 250px;
}

.pp-slides-auto .pp-image-carousel-item {
    width: auto;
}
.pp-slides-auto .pp-image-carousel-item figure.use-as-background .swiper-slide-image {
    width: auto !important;
}
.pp-slides-overflow .pp-image-carousel {
    overflow: visible;
}

.pp-image-carousel-item {
    float: left;
	text-align: center;
	overflow: hidden;
}

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

.pp-image-carousel.slider-type-slideshow {
	height: 450px;
}
.pp-image-carousel.slider-type-slideshow .swiper-wrapper {
	align-items: center;
}

.pp-image-carousel.swiper,
.pp-image-carousel.swiper-container {
	width: 100%;
}

/* Overlay */
.pp-image-overlay {
	position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #fff;
    background-color: hsla(206,7%,54%,.8);
    -webkit-transition: opacity .5s,-webkit-transform .5s;
    transition: opacity .5s,-webkit-transform .5s;
    -o-transition: transform .5s,opacity .5s;
    transition: transform .5s,opacity .5s;
    transition: transform .5s,opacity .5s,-webkit-transform .5s;
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-bottom {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.framed {
    opacity: 0;
}

.pp-image-carousel-item .pp-image-overlay.fade {
    opacity: 0;
}

.pp-image-carousel-item:hover .pp-image-overlay.fade,
.pp-image-carousel-item:focus .pp-image-overlay.fade {
    opacity: 1;
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.zoom-in {
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    opacity: 0;
}

.pp-image-carousel .pp-carousel-image-container,
.pp-image-carousel-thumbs .pp-image-carousel-thumb {
	background: no-repeat 50%;
    background-size: cover;
    height: 100%;
    position: relative;
}

.pp-carousel-image-container figure.use-as-background {
	display: inline-flex;
	height: 100%;
	justify-content: center;
    align-items: center;
	position: relative;
}
.pp-carousel-image-container figure.use-as-background .swiper-slide-image {
	object-fit: cover;
}
/* some image optimization plugins wrap image in <picture> tag */
.pp-carousel-image-container figure.use-as-background picture.swiper-slide-image {
	width: 100%;
}

/* Pagination **/
.pp-image-carousel-wrapper .swiper-pagination-bullets {
    cursor: default;
}
.pp-image-carousel-wrapper .swiper-pagination-bullet {
	top: 0;
	border: none;
}
.pp-image-carousel-wrapper.pp-nav-outside .swiper-pagination {
    bottom: 0;
}

.pp-image-carousel-wrapper .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.pp-image-carousel.swiper-horizontal>.swiper-pagination-progressbar,
.pp-image-carousel.swiper-container-horizontal>.swiper-pagination-progressbar {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.25);
    position: absolute;
}

.pp-image-carousel .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.pp-image-carousel-wrapper .pp-swiper-button {
	background-image: none;
	width: auto;
	height: auto;
	line-height: 1;
	position: absolute;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
	justify-content: center;
    z-index: 1;
    cursor: pointer;
    font-size: 25px;
    top: 50%;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.pp-image-carousel-wrapper .pp-swiper-button:after {
    content: none;
    display: none;
}
.pp-image-carousel-wrapper .pp-swiper-button span {
	display: inline-flex;
}
.pp-image-carousel-wrapper .pp-swiper-button svg {
	height: 25px;
}

.pp-image-carousel-wrapper.pp-nav-outside .pp-swiper-button {
	top: calc(50% - 30px / 2);
}
.pp-image-carousel-wrapper .swiper-button-prev {
	left: 10px;
}
.pp-image-carousel-wrapper .swiper-button-next {
	right: 10px;
}

.pp-thumbnails-swiper .pp-image-carousel-thumb {
	background: no-repeat center;
    background-size: cover;
    height: 100%;
	position: relative;
	cursor: pointer;
}

.pp-thumbs-ratio-11 .pp-image-carousel-thumb {
	padding-bottom: 100%;
}

.pp-thumbs-ratio-43 .pp-image-carousel-thumb {
    padding-bottom: 75%;
}

.pp-thumbs-ratio-169 .pp-image-carousel-thumb {
    padding-bottom: 56.35%;
}

.pp-thumbs-ratio-219 .pp-image-carousel-thumb {
    padding-bottom: 42.8571%
}

.pp-image-overlay .pp-overlay-icon {
    display: inline-block;
}

.pp-image-overlay .pp-overlay-icon span {
    display: block;
    line-height: 1;
}

.pp-image-carousel .swiper-lazy-preloader {
    display: none;
}

.pp-image-carousel .pp-slides-count {
    display: none;
}

.caption-bottom .pp-carousel-image-container {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    background-color: var(--fl-global-body, #fff);
}
.caption-bottom .pp-image-carousel-item .swiper-slide-inner {
    overflow: hidden;
    margin-bottom: 10px;
}
.caption-bottom .pp-image-carousel-item .swiper-slide-inner img {
    overflow: hidden;
}
.caption-bottom.with-slide-count .pp-image-carousel .pp-caption {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    pointer-events: none;
    text-align: left;
}
.caption-bottom.with-slide-count .pp-image-carousel .pp-slides-count {
    display: inline;
    min-width: 50px;
    text-align: right;
}
.caption-bottom.with-slide-count .pp-image-carousel .swiper-pagination-fraction {
    display: none;
}
.caption-bottom.with-slide-count .pp-image-carousel-wrapper.pp-nav-outside .pp-image-carousel {
    padding-bottom: 0;
}

.fl-node-y8siuj3xbzkd .pp-image-carousel.slider-type-slideshow {
			margin-bottom: 20px;
		}

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

.fl-node-y8siuj3xbzkd .pp-image-carousel .pp-carousel-image-container {
	background-size: cover;
}
.fl-node-y8siuj3xbzkd .pp-image-carousel .pp-carousel-image-container figure.use-as-background {
			display: flex;
	}
.fl-node-y8siuj3xbzkd .pp-image-carousel .pp-carousel-image-container figure.use-as-background .swiper-slide-image {
	object-fit: cover;
				width: 100%;
		height: 100%;
		aspect-ratio: auto;
	}
.fl-node-y8siuj3xbzkd .pp-carousel-image-container figure.use-as-background picture.swiper-slide-image img {
			height: 100%;
	}

.fl-node-y8siuj3xbzkd .pp-image-carousel .swiper-pagination-bullet {
	opacity: 1;
			background-color: #999999 !important;
	        width: 10px;
            height: 10px;
            border-radius: 100px !important;
    	box-shadow: none !important;
	}

.fl-node-y8siuj3xbzkd .pp-image-carousel.swiper-horizontal>.swiper-pagination-progressbar,
.fl-node-y8siuj3xbzkd .pp-image-carousel.swiper-container-horizontal>.swiper-pagination-progressbar {
			background-color: #999999 !important;
	}

.fl-node-y8siuj3xbzkd .pp-image-carousel .swiper-pagination-bullet:hover,
.fl-node-y8siuj3xbzkd .pp-image-carousel .swiper-pagination-bullet:focus,
.fl-node-y8siuj3xbzkd .pp-image-carousel .swiper-pagination-bullet-active,
.fl-node-y8siuj3xbzkd .pp-image-carousel .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
			background-color: #000000 !important;
		opacity: 1;
    box-shadow: none !important;
}


.fl-node-y8siuj3xbzkd .pp-image-carousel-wrapper .pp-swiper-button {
		height: 34px;
	width: 34px;
			color: #000000 !important;
    			background-color: #eaeaea !important;
	        padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 13px;
            padding-right: 13px;
    }
.fl-node-y8siuj3xbzkd .pp-image-carousel-wrapper .pp-swiper-button svg {
	height: 24px;
}
.fl-node-y8siuj3xbzkd .pp-image-carousel-wrapper .pp-swiper-button svg path {
		fill: #000000 !important;
    }

.fl-node-y8siuj3xbzkd .pp-image-carousel-wrapper .pp-swiper-button:hover,
.fl-node-y8siuj3xbzkd .pp-image-carousel-wrapper .pp-swiper-button:focus {
        color: #eeeeee !important;
    			background-color: #4c4c4c !important;
	    }

.fl-node-y8siuj3xbzkd .pp-image-carousel-wrapper .pp-swiper-button:hover svg path,
.fl-node-y8siuj3xbzkd .pp-image-carousel-wrapper .pp-swiper-button:focus svg path {
	    fill: #eeeeee !important;
    }




.fl-node-y8siuj3xbzkd .pp-image-overlay {
			background: rgba(0,0,0,.5);
	
		-webkit-transition: opacity 0.3s,-webkit-transform 0.3s;
    transition: opacity 0.3s,-webkit-transform 0.3s;
    -o-transition: transform 0.3s,opacity 0.3s;
    transition: transform 0.3s,opacity 0.3s;
    transition: transform 0.3s,opacity 0.3s,-webkit-transform 0.3s;
}

.fl-node-y8siuj3xbzkd .pp-image-overlay .pp-overlay-icon {
			width: 30px;
	height: 30px;
}

.fl-node-y8siuj3xbzkd .pp-image-overlay .pp-overlay-icon span {
	color: ;
	font-size: 30px;
			}




/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

.fl-node-1g3tadqcivzy button {
  color: white;
  background: #f58836;
  border-radius: 0px;
  border: none;
}
.fl-node-1g3tadqcivzy button:hover {
  background: #50031b;
}
.fl-node-1g3tadqcivzy a {
  color: white;
  font-weight: bold;
}
.fl-node-1g3tadqcivzy a:hover {
  color: white;
}
.fl-node-1g3tadqcivzy .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal > span:nth-child(7), .fl-node-1g3tadqcivzy .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal > span:nth-child(6), .fl-node-1g3tadqcivzy .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal > span:nth-child(5) {
  display: none;
}
@media only screen and (max-width: 600px) {
  .fl-node-1g3tadqcivzy button {
    height: 40px !important;
    width: 90%;
  }
}
.fl-node-vz8mskdlr157 .fl-button {
  position: relative;
  z-index: 3 !important;
}
.fl-node-y83wf9kb12eu button > a {
  color: white;
}
.fl-node-y83wf9kb12eu button {
  border: #f68f34;
}
.fl-node-jp1xbse2n67l .fl-button {
  position: relative;
  z-index: 3 !important;
}
.fl-node-qaurz25oi70p .fl-button {
  position: relative;
  z-index: 3 !important;
}
.fl-node-z94d0sbiajny .fl-button {
  position: relative;
  z-index: 3 !important;
}
.fl-node-bti205w4kmg6 button > a {
  color: white;
}
.fl-node-bti205w4kmg6 button {
  border: #f68f34;
}
@media only screen and (min-width: 500px) {
  .fl-node-4evmadw13jks .woopack-product-category__content {
    max-width: 54%;
    margin-left: 20% !important;
  }
}
.fl-node-4evmadw13jks img {
  -webkit-filter: grayscale(100%);
}
.fl-node-4evmadw13jks img:hover {
  -webkit-filter: grayscale(0%);
}
.fl-node-y83wf9kb12eu .fl-post-grid-post {
  font-size: 14px;
}
.fl-node-y83wf9kb12eu .fl-post-image-block {
  overflow: hidden;
  height: 200px;
  margin: 0px;
}
.fl-node-y83wf9kb12eu .fl-post-image {
  width: 100%;
  text-align: center;
  margin: 0px;
}
.fl-node-y83wf9kb12eu .fl-post-image img {
  height: 200px;
  object-fit: cover;
  margin: 0px;
}
.fl-node-y83wf9kb12eu .fl-post-text {
  padding: 10px;
}
.fl-node-y83wf9kb12eu .fl-post-title {
  text-align: center;
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  padding: 0 0 5px;
}
.fl-node-y83wf9kb12eu .fl-post-excerpt {
  height: 60px;
}
.fl-node-y83wf9kb12eu .added_to_cart.wc-forward.button.alt {
  color: #ADADAD;
  background-color: #FCFCFC;
  display: none;
}
.fl-node-y83wf9kb12eu .fl-lees-meer {
  color: white;
  background-color: #f68f34;
  border-radius: 0;
  padding: 5px;
  width: 250px;
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: 15%;
}
.fl-node-y83wf9kb12eu .fl-lees-meer:hover {
  background-color: #50031b;
}
@media only screen and (min-width: 600px) {
  .fl-node-y83wf9kb12eu .fl-post-excerpt-mobiel {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .fl-node-y83wf9kb12eu .fl-lees-meer {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 6%;
  }
  .fl-node-y83wf9kb12eu .fl-post-excerpt {
    display: none;
  }
  .fl-node-y83wf9kb12eu .fl-post-excerpt-mobiel {
    text-align: center;
  }
}
.fl-node-bti205w4kmg6 .fl-post-grid-post {
  font-size: 14px;
}
.fl-node-bti205w4kmg6 .fl-post-image-block {
  overflow: hidden;
  height: 100px;
  margin: 0px;
}
.fl-node-bti205w4kmg6 .fl-post-image {
  width: 100%;
  text-align: center;
  margin: 0px;
}
.fl-node-bti205w4kmg6 .fl-post-image img {
  height: 100px;
  object-fit: cover;
  margin: 0px;
}
.fl-node-bti205w4kmg6 .fl-post-text {
  padding: 5px;
}
.fl-node-bti205w4kmg6 .fl-post-title {
  text-align: center;
  font-size: 15px;
  line-height: 18px;
  margin: 0;
  padding: 0 0 5px;
}
.fl-node-bti205w4kmg6 .fl-post-excerpt {
  height: 40px;
}
.fl-node-bti205w4kmg6 .added_to_cart.wc-forward.button.alt {
  color: #ADADAD;
  background-color: #FCFCFC;
  display: none;
}
.fl-node-bti205w4kmg6 .fl-lees-meer {
  color: white;
  background-color: #f68f34;
  border-radius: 0;
  padding: 5px;
  width: 120px;
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: 15%;
}
.fl-node-bti205w4kmg6 .fl-lees-meer:hover {
  background-color: #50031b;
}
@media only screen and (min-width: 600px) {
  .fl-node-bti205w4kmg6 .fl-post-excerpt-mobiel {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .fl-node-bti205w4kmg6 .fl-lees-meer {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 6%;
  }
  .fl-node-bti205w4kmg6 .fl-post-excerpt {
    display: none;
  }
  .fl-node-bti205w4kmg6 .fl-post-excerpt-mobiel {
    text-align: center;
  }
}
/* Generic */
.fl-post-module-woo-ordering {
	padding-bottom: 40px;
}

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

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

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

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

 

 





/* Add To Cart Button Styles */





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

 

 





/* Add To Cart Button Styles */





.fl-builder-content .fl-node-bti205w4kmg6 .fl-post-module-woo-button button[type=submit].alt.disabled,
.fl-builder-content .fl-node-bti205w4kmg6 .fl-post-module-woo-button button.button, 
.fl-builder-content .fl-node-bti205w4kmg6 .fl-post-module-woo-button a.button {
	display: inline-block;
}
.fl-node-1g3tadqcivzy .pp-category-main {
  background: #a79a91;
  padding: 4px;
}
.fl-node-1g3tadqcivzy .pp-category__title {
  margin-top: 0;
  text-align: left;
  margin-left: 20px;
  font-size: 20px;
}
.fl-node-1g3tadqcivzy .pp-category__img {
  max-height: 250px;
}
.fl-node-1g3tadqcivzy .pp-category_usp {
  font-weight: normal;
  font-size: 14px;
  text-align: left;
  margin-left: -40px;
  height: 160px;
}
.fl-node-1g3tadqcivzy .pp-category__content {
  margin: 0px;
  padding: 0px;
}
.fl-node-1g3tadqcivzy .pp-category__img img {
  max-height: 250px;
  object-fit: cover;
}
.fl-node-1g3tadqcivzy .pp-category-meer-lezen {
  font-weight: 900;
  margin-bottom: 10px;
}
.fl-node-1g3tadqcivzy .pp-category-meer-lezen:hover {
  color: white !important;
}
@media only screen and (max-width: 600px) {
  .fl-node-1g3tadqcivzy .pp-category__title {
    line-height: 18px;
    font-size: 16px;
    height: 18px;
    margin-left: 10px;
  }
  .fl-node-1g3tadqcivzy .pp-category-meer-lezen {
    font-size: 12px;
    line-height: 12px;
  }
  .fl-node-1g3tadqcivzy .pp-category_usp {
    font-weight: normal;
    font-size: 9px;
    text-align: left;
    margin-left: -40px;
    height: 120px;
    margin-top: -20px;
    margin-bottom: -10px;
    margin-right: 0px;
  }
}

                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .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-f635qij2grwl .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-f2qatjsnmclo .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-0cd94bolfyzm .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-x0lezgmu8q3t .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-yi9nwps1hc0d .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-vbkder3087so .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-0rpa36j59lxw .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-fvjn2475y8o0 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-toia3q8zm2hk .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-dsoepta412xn .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-zu2h8xgwpet9 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-qzvjmpyw7h8x .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-1sa4mjtyrlbu .fl-row-content {
				min-width: 0px;
			}
		