/**
 * 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 .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	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 {
	width: 100%;
	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;
	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;
}
.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;
}
.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;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.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: 869px) { /* 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: 870px) 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: 869px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1300px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





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

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

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-8jrogn5lu3ak.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-8jrogn5lu3ak.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-8jrogn5lu3ak.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-8jrogn5lu3ak > .fl-row-content-wrap {
	background-color: #2f2b4f;
	background-image: url(https://www.odysseyteencamp.com/wp-content/uploads/2024/08/banner-bg-blue.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: scroll;
	background-size: auto;
}
@media(max-width: 1200px) {
	.fl-node-8jrogn5lu3ak > .fl-row-content-wrap {
		background-position: center top;
	}
}
@media(max-width: 992px) {
	.fl-node-8jrogn5lu3ak > .fl-row-content-wrap {
		background-position: center top;
	}
	.fl-node-8jrogn5lu3ak.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 100px;
	}
}
@media(max-width: 869px) {
	.fl-node-8jrogn5lu3ak > .fl-row-content-wrap {
		background-position: center top;
	}
	.fl-node-8jrogn5lu3ak.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 80px;
	}
}
 .fl-node-8jrogn5lu3ak > .fl-row-content-wrap {
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
.fl-node-dn586fzbsj0k {
	color: #ffffff;
}
.fl-builder-content .fl-node-dn586fzbsj0k *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

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

.fl-builder-content .fl-node-dn586fzbsj0k a:hover {
	color: #ffffff;
}

.fl-builder-content .fl-node-dn586fzbsj0k h1,
.fl-builder-content .fl-node-dn586fzbsj0k h2,
.fl-builder-content .fl-node-dn586fzbsj0k h3,
.fl-builder-content .fl-node-dn586fzbsj0k h4,
.fl-builder-content .fl-node-dn586fzbsj0k h5,
.fl-builder-content .fl-node-dn586fzbsj0k h6,
.fl-builder-content .fl-node-dn586fzbsj0k h1 a,
.fl-builder-content .fl-node-dn586fzbsj0k h2 a,
.fl-builder-content .fl-node-dn586fzbsj0k h3 a,
.fl-builder-content .fl-node-dn586fzbsj0k h4 a,
.fl-builder-content .fl-node-dn586fzbsj0k h5 a,
.fl-builder-content .fl-node-dn586fzbsj0k h6 a {
	color: #ffffff;
}



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

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

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






.fl-node-npkybhacuxgl > .fl-row-content-wrap:after {
	background-image: radial-gradient(at center center, #ffeede 0%, rgba(255,255,255,0) 100%);
}
.fl-node-npkybhacuxgl > .fl-row-content-wrap {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
@media(max-width: 1200px) {
	.fl-node-npkybhacuxgl > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 992px) {
	.fl-node-npkybhacuxgl > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 869px) {
	.fl-node-npkybhacuxgl > .fl-row-content-wrap {
		background-position: center center;
	}
}
 .fl-node-npkybhacuxgl > .fl-row-content-wrap {
	padding-top:50px;
	padding-bottom:0px;
}






 .fl-node-5quzmfkliajo > .fl-row-content-wrap {
	margin-top:20px;
}
 .fl-node-5quzmfkliajo > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}






 .fl-node-klq089yzgowd > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}






 .fl-node-9rucie80wgvm > .fl-row-content-wrap {
	margin-top:20px;
}
 .fl-node-9rucie80wgvm > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}






 .fl-node-59qzmk71aygs > .fl-row-content-wrap {
	margin-top:20px;
}
 .fl-node-59qzmk71aygs > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}






 .fl-node-f2mq5nwyu81k > .fl-row-content-wrap {
	margin-top:20px;
}
 .fl-node-f2mq5nwyu81k > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}






 .fl-node-4br210i3eyw6 > .fl-row-content-wrap {
	padding-top:60px;
}
@media ( max-width: 869px ) {
 .fl-node-4br210i3eyw6.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}






.fl-node-n5zkhfqtu3jb > .fl-row-content-wrap:after {
	background-color: rgba(255, 255, 255, 0.9);
}
.fl-node-n5zkhfqtu3jb > .fl-row-content-wrap {
	background-image: url(https://www.odysseyteencamp.com/wp-content/uploads/2017/04/blog-rays-of-sunshine-sml.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
@media(max-width: 1200px) {
	.fl-node-n5zkhfqtu3jb > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 992px) {
	.fl-node-n5zkhfqtu3jb > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 869px) {
	.fl-node-n5zkhfqtu3jb > .fl-row-content-wrap {
		background-position: center center;
	}
}
 .fl-node-n5zkhfqtu3jb > .fl-row-content-wrap {
	margin-top:20px;
}
 .fl-node-n5zkhfqtu3jb > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}






 .fl-node-6ldnta5ygrvz > .fl-row-content-wrap {
	padding-top:60px;
}






 .fl-node-xiq3clje2rbd > .fl-row-content-wrap {
	margin-top:20px;
}
 .fl-node-xiq3clje2rbd > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}






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




.fl-node-dh1wmkvys2qg {
	width: 100%;
}
.fl-node-dh1wmkvys2qg > .fl-col-content {
	background-image: url(https://www.odysseyteencamp.com/wp-content/uploads/2022/09/colored-bar-tall.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-attachment: scroll;
	background-size: contain;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-bottom-width: 10px;
}
@media ( max-width: 992px ) {
 .fl-node-dh1wmkvys2qg.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 869px ) {
 .fl-node-dh1wmkvys2qg.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
 .fl-node-dh1wmkvys2qg > .fl-col-content {
	padding-bottom:20px;
}
@media ( max-width: 992px ) {
 .fl-node-dh1wmkvys2qg.fl-col > .fl-col-content {
	padding-bottom:15px;
}
}
@media ( max-width: 869px ) {
 .fl-node-dh1wmkvys2qg.fl-col > .fl-col-content {
	padding-bottom:13px;
}
}




.fl-node-f8nth2ypxibq {
	width: 100%;
}
@media ( max-width: 869px ) {
 .fl-node-f8nth2ypxibq.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 869px ) {
 .fl-node-f8nth2ypxibq.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-4oecb7kwjq2v {
	width: 100%;
}
.fl-node-4oecb7kwjq2v > .fl-col-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ff623b;
	border-top-width: 4px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-4oecb7kwjq2v {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-4oecb7kwjq2v > .fl-col-content {
	margin-top:0px;
}
@media ( max-width: 869px ) {
 .fl-node-4oecb7kwjq2v.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
 .fl-node-4oecb7kwjq2v > .fl-col-content {
	padding-top:0px;
}
@media ( max-width: 869px ) {
 .fl-node-4oecb7kwjq2v.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




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




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




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




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




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




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




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




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




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




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




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




.fl-node-urhnst1mk7gf {
	width: 100%;
}
.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: 869px) { /**
 * 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-kmbpytg1o9qh .pp-heading-content .pp-heading-prefix {
	}

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

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

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


div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #2f2b4f;
								}
div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


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

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

div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
	}

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 869px) {
	div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-kmbpytg1o9qh .pp-heading-content {
				text-align: ;
			}
	div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 65px;
}
div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading .heading-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
}
div.fl-node-kmbpytg1o9qh div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-kmbpytg1o9qh div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-kmbpytg1o9qh div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-kmbpytg1o9qh div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-sub-heading, div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-sub-heading p {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 30px;
}
div.fl-node-kmbpytg1o9qh .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-kmbpytg1o9qh .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 35px;
	}
	div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading .heading-title {
		text-align: left;
	}
	div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-sub-heading, div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-sub-heading p {
		font-size: 25px;
	}
}
@media(max-width: 869px) {
	div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
		padding-bottom: 10px;
	}
	div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 25px;
	}
	div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-sub-heading, div.fl-node-kmbpytg1o9qh .pp-heading-content .pp-sub-heading p {
		font-size: 20px;
	}
}
 .fl-node-kmbpytg1o9qh > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-kmbpytg1o9qh.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}

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

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

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

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


div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #2f2b4f;
								text-transform: uppercase;
				}
div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-sub-heading,
div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-sub-heading p {
		color: #2f2b4f;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 869px) {
	div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-nq7tfbvzyu6h .pp-heading-content {
				text-align: ;
			}
	div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 400;
	font-size: 40px;
	text-transform: uppercase;
}
div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-heading .heading-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 900;
	font-size: 50px;
	line-height: 1.3;
}
div.fl-node-nq7tfbvzyu6h div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-nq7tfbvzyu6h div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-nq7tfbvzyu6h div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-nq7tfbvzyu6h div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-sub-heading, div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-sub-heading p {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 300;
	font-size: 24px;
}
div.fl-node-nq7tfbvzyu6h .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-nq7tfbvzyu6h .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 869px) {
	div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 24px;
	}
	div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-heading .heading-title {
		font-size: 28px;
	}
	div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-sub-heading, div.fl-node-nq7tfbvzyu6h .pp-heading-content .pp-sub-heading p {
		font-size: 20px;
	}
}
 .fl-node-nq7tfbvzyu6h > .fl-module-content {
	margin-top:0px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */

 .pp-breadcrumbs {
	font-family: inherit !important;
	font-size: inherit !important;
}

.pp-breadcrumbs a,
.pp-breadcrumbs span {
	display: inline-block;
}

.pp-breadcrumbs a span {
	padding: 0 !important;
	border: 0 !important;
	box-shadow: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
	background-color: transparent !important;
}

.pp-breadcrumbs p {
	margin-bottom: 0;
}

.pp-breadcrumbs .rank-math-breadcrumb .separator {
	margin: 0 5px;
}

.pp-breadcrumbs .breadcrumb>li+li:before {
	display: none;
}@media (max-width: 869px) { /**
 * 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-tmpg178x06oe .pp-breadcrumbs {
	}


.fl-node-tmpg178x06oe .pp-breadcrumbs,
.fl-node-tmpg178x06oe .pp-breadcrumbs span.separator {
	color: #2f2b4f;
}




.fl-node-tmpg178x06oe .pp-breadcrumbs a,
.fl-node-tmpg178x06oe .pp-breadcrumbs span:not(.separator) {
		}

.fl-node-tmpg178x06oe .pp-breadcrumbs a:hover,
.fl-node-tmpg178x06oe .pp-breadcrumbs span:not(.separator):hover {
	}

.fl-node-tmpg178x06oe .pp-breadcrumbs {
	text-align: left;
}
.fl-node-tmpg178x06oe .pp-breadcrumbs a, .fl-node-tmpg178x06oe .pp-breadcrumbs span:not(.separator) {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 200;
	font-size: 14px;
}
 .fl-node-tmpg178x06oe > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-tmpg178x06oe.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:20px;
}
}
/* Clearfix */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.pp-row-effects-wrap {
	overflow: hidden;
}

.fl-builder-edit .pp-row-effects-wrap {
	position: relative;
}

.pp-line-separator-inner.pp-line-only {
	line-height: 0;
}
.pp-line-separator-inner.pp-line-only .pp-line-separator.pp-line-only {
	display: inline-block;
	max-width: 100%;
}
.pp-line-separator-inner.pp-line-icon {
	position: relative;
	overflow: hidden;
}
.pp-line-separator-inner.pp-line-icon:before,
.pp-line-separator-inner.pp-line-icon:after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.pp-line-separator-inner .pp-image-wrap {
	display: inline-block;
}
.pp-line-separator-inner.pp-icon-image {
	position: relative;
	z-index: 1;
}
@media (max-width: 869px) { /**
 * 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-nzqer5jhmsy7 .pp-line-separator-inner.pp-line-only {
	text-align: center;}
.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-line-only .pp-line-separator {
	border-bottom-color: #2f2b4f;	border-bottom-style: solid;	border-bottom-width: 1px;	width: 100%;}

.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-line-icon:before,
.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-line-icon:after {
	border-bottom-color: #2f2b4f;	border-bottom-style: solid;	border-bottom-width: 1px;	width: 100%;}

.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-line-icon:before {
	left: auto;
	right: 50%;
	margin-right: 30px;}

.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-line-icon:after {
	left: 50%;
	right: auto;
	margin-left: 30px;}

.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-line-icon.left:before {
	display: none;
}
.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-line-icon.left:after {
	left: 1%;
}
.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-line-icon.right:after {
	display: none;
}
.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-line-icon.right:before {
	right: 1%;
}

.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-line-icon .pp-line-separator.pp-icon-image {
	border-bottom-color: #2f2b4f;	border-bottom-style: solid;	border-bottom-width: 1px;	width: 100%;}

.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-icon-image .pp-icon-wrap {
	text-align: center;}
.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-icon-image .pp-icon-wrap span.pp-icon {
		color: #000000;	font-size: 70px;		}
.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-icon-image {
	text-align: center;}
.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-icon-image .pp-image-wrap {
			}

.fl-node-nzqer5jhmsy7 .pp-line-separator-inner.pp-icon-image .pp-image-wrap img {
			border-top-left-radius: px;
		border-top-right-radius: px;
		border-bottom-left-radius: px;
		border-bottom-right-radius: px;
			width: 70px;}
 .fl-node-nzqer5jhmsy7 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-nzqer5jhmsy7.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:20px;
}
}
.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-line-only {
	text-align: center;}
.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-line-only .pp-line-separator {
	border-bottom-color: #2f2b4f;	border-bottom-style: solid;	border-bottom-width: 1px;	width: 100%;}

.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-line-icon:before,
.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-line-icon:after {
	border-bottom-color: #2f2b4f;	border-bottom-style: solid;	border-bottom-width: 1px;	width: 100%;}

.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-line-icon:before {
	left: auto;
	right: 50%;
	margin-right: 30px;}

.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-line-icon:after {
	left: 50%;
	right: auto;
	margin-left: 30px;}

.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-line-icon.left:before {
	display: none;
}
.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-line-icon.left:after {
	left: 1%;
}
.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-line-icon.right:after {
	display: none;
}
.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-line-icon.right:before {
	right: 1%;
}

.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-line-icon .pp-line-separator.pp-icon-image {
	border-bottom-color: #2f2b4f;	border-bottom-style: solid;	border-bottom-width: 1px;	width: 100%;}

.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-icon-image .pp-icon-wrap {
	text-align: center;}
.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-icon-image .pp-icon-wrap span.pp-icon {
		color: #000000;	font-size: 70px;		}
.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-icon-image {
	text-align: center;}
.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-icon-image .pp-image-wrap {
			}

.fl-node-o56rsmcjtaz1 .pp-line-separator-inner.pp-icon-image .pp-image-wrap img {
			border-top-left-radius: px;
		border-top-right-radius: px;
		border-bottom-left-radius: px;
		border-bottom-right-radius: px;
			width: 70px;}
 .fl-node-o56rsmcjtaz1 > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:50px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-o56rsmcjtaz1.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:20px;
}
}
@media (max-width: 869px) { .fl-node-o56rsmcjtaz1 > .fl-module-content { margin-bottom:20px; } }
div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-heading-prefix {
	}

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

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

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


div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #2f2b4f;
								}
div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 869px) {
	div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-g2wvnjhcoeis .pp-heading-content {
				text-align: ;
			}
	div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
}
div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-heading .heading-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	text-align: center;
}
div.fl-node-g2wvnjhcoeis div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-g2wvnjhcoeis div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-g2wvnjhcoeis div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-g2wvnjhcoeis div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-sub-heading, div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-sub-heading p {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 30px;
}
div.fl-node-g2wvnjhcoeis .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-g2wvnjhcoeis .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-sub-heading, div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-sub-heading p {
		font-size: 25px;
	}
}
@media(max-width: 869px) {
	div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
		padding-bottom: 10px;
	}
	div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-sub-heading, div.fl-node-g2wvnjhcoeis .pp-heading-content .pp-sub-heading p {
		font-size: 20px;
	}
}
 .fl-node-g2wvnjhcoeis > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-g2wvnjhcoeis.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}
a.pp-button,
a.pp-button:visited {
	display: inline-block;
	overflow: hidden;
    position: relative;
	text-decoration: none;
	text-shadow: none;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	-ms-transition: all .3s linear;
	transition: all .3s linear;
}
.pp-button:hover {
	text-decoration: none;
}
.pp-button:active {
	position: relative;
	top: 1px;
}
.pp-button-width-full .pp-button {
	display: block;
	text-align: center;
}
.pp-button-width-custom .pp-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.pp-button-left {
	text-align: left;
}
.pp-button-center {
	text-align: center;
}
.pp-button-right {
	text-align: right;
}
.pp-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.pp-button i.pp-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.pp-button-has-icon .pp-button-text {
	vertical-align: middle;
}

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



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

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

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

					background: #ff623b;
			
	}



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

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

	    .fl-node-ufmpnc76i29j .pp-button-wrap a.pp-button,
		.fl-node-ufmpnc76i29j .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-ufmpnc76i29j .pp-button-wrap {
	text-align: center;
}
.fl-node-ufmpnc76i29j a.pp-button {
	padding-top: 18px;
	padding-right: 13px;
	padding-bottom: 13px;
	padding-left: 13px;
}
.fl-node-ufmpnc76i29j .pp-button-wrap a.pp-button, .fl-node-ufmpnc76i29j .pp-button-wrap a.pp-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ff623b;
	border-top-width: 5px;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 5px;
	border-top-left-radius: 70px;
	border-top-right-radius: 70px;
	border-bottom-left-radius: 70px;
	border-bottom-right-radius: 70px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 800;
	font-size: 20px;
	text-transform: uppercase;
	width: 290px;
}
.fl-node-ufmpnc76i29j .pp-button-wrap a.pp-button:hover, .fl-node-ufmpnc76i29j .pp-button-wrap a.pp-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ff623b;
	border-top-width: 5px;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 5px;
	border-top-left-radius: 70px;
	border-top-right-radius: 70px;
	border-bottom-left-radius: 70px;
	border-bottom-right-radius: 70px;
}
.fl-node-ufmpnc76i29j .pp-button .pp-button-icon {
	font-size: 16px;
}
@media(max-width: 992px) {
	.fl-node-ufmpnc76i29j .pp-button-wrap {
		text-align: center;
	}
	.fl-node-ufmpnc76i29j .pp-button-wrap a.pp-button, .fl-node-ufmpnc76i29j .pp-button-wrap a.pp-button:visited {
		width: 290px;
	}
}
@media(max-width: 869px) {
	.fl-node-ufmpnc76i29j a.pp-button {
		padding-top: 12px;
		padding-right: 0px;
		padding-bottom: 10px;
		padding-left: 0px;
	}
	.fl-node-ufmpnc76i29j .pp-button-wrap a.pp-button, .fl-node-ufmpnc76i29j .pp-button-wrap a.pp-button:visited {
		font-size: 16px;
		width: 260px;
	}
}
 .fl-node-ufmpnc76i29j > .fl-module-content {
	margin-top:-40px;
	margin-bottom:60px;
}
@media ( max-width: 992px ) {
 .fl-node-ufmpnc76i29j.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
@media ( max-width: 869px ) {
 .fl-node-ufmpnc76i29j.fl-module > .fl-module-content {
	margin-top:25px;
	margin-bottom:20px;
}
}
body.fl-builder {
	overflow-x: hidden;
}

.fl-animated.fl-slide-in-left {
  	animation: fl-slide-in-left 1s ease;
  	-webkit-animation: fl-slide-in-left 1s ease;
}
@-webkit-keyframes fl-slide-in-left {
  from {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-slide-in-left {
  from {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fl-row-fixed-width {
	min-width: 1px;
}
.fl-col-group.fl-col-group-responsive-reversed,
.fl-col-group.fl-col-group-responsive-reversed .fl-col,
.fl-col-group.fl-col-group-responsive-reversed .fl-col-content,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	min-width: 0px;
}

.pp-video-gallery .pp-video-gallery-items:not(.swiper-wrapper) {
	display: flex;
    flex-flow: row wrap;
    flex: 1 1 auto;
    flex-direction: row;
}
.pp-video-gallery .pp-video-gallery-item {
	width: 100%;
	overflow: hidden;
}
.pp-video-gallery .pp-video-gallery-item .pp-video {
	overflow: hidden;
}
.pp-video-gallery .pp-video-title {
	margin: 0;
	padding: 0;
}
.pp-video-gallery .pp-video-image-overlay {
	overflow: hidden;
	display: flex;
}
.pp-video-gallery .pp-video-image-overlay > img {
	object-fit: cover;
	flex-grow: 1;
	cursor: pointer;
}
.pp-video-gallery .pp-video-gallery-filters {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex: 1 1 auto;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.pp-video-gallery .pp-video-gallery-filter {
	padding: 10px 20px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}
.pp-video-gallery .pp-video-gallery-filter span {
	transition: all 0.2s ease-in-out;
}

/* Carousel */
.pp-video-carousel {
    position: relative;
    text-align: center;
	overflow: hidden;
	visibility: hidden;
}
.pp-video-carousel.swiper-container,
.pp-video-carousel.swiper {
	width: 100%;
}
.pp-video-carousel.swiper-container-horizontal,
.pp-video-carousel.swiper-horizontal {
	visibility: visible;
}
.pp-video-carousel .swiper-wrapper {
	margin-bottom: 50px;
}
.pp-video-carousel .swiper-slide {
    float: left;
	text-align: center;
	overflow: visible;
}

.pp-video-carousel .pp-video-carousel-nav {
	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;
    z-index: 1;
    cursor: pointer;
    font-size: 25px;
	top: calc(50% - 30px);
	margin-top: 0;
	border-radius: 2px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition-duration: 0.25s;
}
.pp-video-carousel .pp-video-carousel-nav-prev {
	left: 10px;
}
.pp-video-carousel .pp-video-carousel-nav-next {
	right: 10px;
}
.pp-video-carousel .pp-video-carousel-nav:after {
	content: none;
	display: none;
}
.pp-video-carousel .pp-video-carousel-nav.swiper-button-disabled {
	cursor: default;
	opacity: 0.5;
}

.pp-video-carousel.pp-video-carousel-nav-outside .pp-video-carousel-nav {
	top: calc(50% - 30px / 2);
}

.pp-video-carousel.pp-video-carousel-nav-outside .swiper-pagination {
    bottom: 0;
}

.pp-video-carousel .swiper-pagination-bullets {
    cursor: default;
}
.pp-video-carousel .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

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

.pp-video-carousel .swiper-pagination-progress .swiper-pagination-progressbar {
    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;
}

/* Video */
.pp-video-gallery-fancybox .pp-video-container {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.pp-video-gallery-fancybox .fancybox-content .pp-fit-aspect-ratio video {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.pp-aspect-ratio-219 .pp-fit-aspect-ratio {
	aspect-ratio: 21/9;
}
  
.pp-aspect-ratio-169 .pp-fit-aspect-ratio {
	aspect-ratio: 16/9;
}
.pp-aspect-ratio-916 .pp-fit-aspect-ratio {
	aspect-ratio: 9/16;
}
  
.pp-aspect-ratio-43 .pp-fit-aspect-ratio {
	aspect-ratio: 4/3;
}

.pp-aspect-ratio-45 .pp-fit-aspect-ratio {
	aspect-ratio: 4/5;
}
  
.pp-aspect-ratio-32 .pp-fit-aspect-ratio {
	aspect-ratio: 3/2;
}
  
.pp-aspect-ratio-11 .pp-fit-aspect-ratio {
	aspect-ratio: 1/1;
}

.pp-aspect-ratio-auto .pp-fit-aspect-ratio {
	height: auto;
}
  
.pp-fit-aspect-ratio {
	position: relative;
	background: none;
}
.pp-fit-aspect-ratio iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border: 0;
	background-color: #000;
}
.pp-fit-aspect-ratio video {
	width: 100%;
}

.pp-video-wrapper video,
.pp-video-wrapper iframe {
    max-width: 100%;
    width: 100%;
    margin: 0;
    line-height: 1;
    border: none;
}
.pp-video-wrapper .pp-video {
	-o-object-fit: cover;
    object-fit: cover;
}

.pp-video-image-overlay {
	text-align: center;
	position: relative;
}
.pp-video-wrapper:not(.pp-video-has-lightbox) .pp-video-image-overlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50%;
}

.pp-video-play-icon {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: inline-block;
    line-height: 0;
    padding: 20px;
    border-radius: 100%;
	background: #fff;
	cursor: pointer;
}
.pp-video-play-icon svg {
	width: 30px;
    height: 30px;
    transform: translateX(3px);
}

.pp-video-play-icon i {
	font-size: 100px;
    color: #fff;
    opacity: 0.8;
    text-shadow: 1px 0 6px rgba(0, 0, 0, 0.3);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.pp-video-play-icon.play-icon-default {
	background: rgba(0, 0, 0, 0.33);
}
.pp-video-play-icon.play-icon-default svg {
	fill: #f1f1f1;
	width: 20px;
	height: 20px;
}

.pp-video-wrapper .pp-screen-only {
	position: absolute;
    top: -10000em;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.pp-video-gallery-pagination {
	width: 100%;
	clear: both;
}
.pp-video-gallery-pagination a {
	transition: all 0.2s ease-out 0s;
}

@media only screen and (min-width: 1025px) {
	.fancybox-container .pp-video-container {
		width: 75%;
	}
}
@media only screen and (max-width: 1024px) {
	.fancybox-container .pp-video-container {
		width: 100%;
	}
}@media (max-width: 869px) { .pp-video-gallery .pp-video-gallery-filters {
	flex-direction: column;
}
.pp-video-gallery .pp-video-gallery-filters .pp-video-gallery-filter {
    margin: 0;
}
.pp-video-gallery .pp-video-gallery-filters .pp-video-gallery-filter:not(.pp-filter--active) {
	display: none;
} }


.fl-node-ps8da06hirno .pp-video-title {
			color: #2f2b4f;
		}
.fl-node-ps8da06hirno .pp-video-gallery-item:hover .pp-video-title {
		}

.fl-node-ps8da06hirno .pp-video-gallery-filters {
						justify-content: flex-start;
							}
.fl-node-ps8da06hirno .pp-video-gallery-filter {
		}
.fl-node-ps8da06hirno .pp-video-gallery-filter:not(.pp-filter--active) {
			border-color: transparent;
	}
.fl-node-ps8da06hirno .pp-video-gallery-filter:first-child {
	margin-left: 0;
}
.fl-node-ps8da06hirno .pp-video-gallery-filter:last-of-type {
	margin-right: 0;
}
.fl-node-ps8da06hirno .pp-video-gallery-filter span {
	}
.fl-node-ps8da06hirno .pp-video-gallery-filter:hover,
.fl-node-ps8da06hirno .pp-video-gallery-filter.pp-filter--active {
		}
.fl-node-ps8da06hirno .pp-video-gallery-filter:hover span,
.fl-node-ps8da06hirno .pp-video-gallery-filter.pp-filter--active span {
	}

/* Carousel */
.fl-node-ps8da06hirno .pp-video-carousel .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
			background-color: #ff623b;
		opacity: 1;
	}

.fl-node-ps8da06hirno .pp-video-carousel.swiper-horizontal>.swiper-pagination-progress,
.fl-node-ps8da06hirno .pp-video-carousel.swiper-container-horizontal>.swiper-pagination-progress {
			background-color: #ff623b;
	}

.fl-node-ps8da06hirno .pp-video-carousel .swiper-pagination-bullet:hover,
.fl-node-ps8da06hirno .pp-video-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active,
.fl-node-ps8da06hirno .pp-video-carousel .swiper-pagination-progress .swiper-pagination-progressbar {
			background-color: #ffffff;
	    box-shadow: none;
}

.fl-node-ps8da06hirno .pp-video-carousel .pp-video-carousel-nav {
			color: #ffffff;
    			background-color: #ff623b;
	        	padding-top: 5px;
            	padding-bottom: 5px;
            	padding-left: 5px;
            	padding-right: 5px;
    }
.fl-node-ps8da06hirno .pp-video-carousel .pp-video-carousel-nav svg {
			height: 24px;
		width: 24px;
	}
.fl-node-ps8da06hirno .pp-video-carousel .pp-video-carousel-nav svg path {
			fill: #ffffff;
	}


.fl-node-ps8da06hirno .pp-video-carousel .pp-video-carousel-nav:not(.swiper-button-disabled):hover {
			background-color: #f8ff3a;
	    }
.fl-node-ps8da06hirno .pp-video-carousel .pp-video-carousel-nav:not(.swiper-button-disabled):hover svg path {
	    	fill: #2f2b4f;
    }

/* Video */
.fl-node-ps8da06hirno .pp-video-image-overlay {
	cursor: pointer;
}
.fl-node-ps8da06hirno .pp-video-play-icon {
			background: rgba(255,255,255,0.81);
				padding: calc( 20px / 1.2 );
	}
.fl-node-ps8da06hirno .pp-video-play-icon:hover {
			background: #ffffff;
		}
.fl-node-ps8da06hirno .pp-video-play-icon svg {
			fill: #2f2b4f;
	}
.fl-node-ps8da06hirno .pp-video-play-icon:hover svg {
			fill: #ff623b;
	}

/* Gallery Pagination */
.fl-node-ps8da06hirno .pp-video-gallery-pagination a {
		}
.fl-node-ps8da06hirno .pp-video-gallery-pagination a:hover {
			}


/* Lightbox */
.fancybox-ps8da06hirno button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}
.fancybox-ps8da06hirno .pp-aspect-ratio-169 {
	background: none;
	width: 100%;
	height: 100%;
}
.fancybox-ps8da06hirno .pp-video-container {
	}
.fancybox-ps8da06hirno .fancybox-close-small {
	color: #fff;
	height: 60px;
	width: 60px;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
}
.fancybox-ps8da06hirno .fancybox-close-small:hover,
.fancybox-ps8da06hirno .fancybox-close-small:focus {
	color: #fff;
}
.fancybox-ps8da06hirno .fancybox-close-small,
.fancybox-ps8da06hirno .fancybox-close-small:focus {
	position: absolute;
	top: 0;
	right: 0;
}
.admin-bar .fancybox-ps8da06hirno .fancybox-close-small {
	top: 32px;
}
.fancybox-ps8da06hirno-overlay {
	}

@media only screen and (min-width: 1025px) {
	.fancybox-ps8da06hirno .pp-video-container {
			}
}

@media only screen and (max-width: 1200px) {
	.fl-node-ps8da06hirno .pp-video-play-icon {
			}
	}

@media only screen and (max-width: 992px) {
	.fl-node-ps8da06hirno .pp-video-play-icon {
			}
	}
@media only screen and (max-width: 869px) {
	.fl-node-ps8da06hirno .pp-video-play-icon {
			}
	}
.fl-node-ps8da06hirno .pp-video-gallery-item .pp-video {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
}
.fl-node-ps8da06hirno .pp-video-play-icon svg {
	width: 20px;
	height: 20px;
}
.fl-node-ps8da06hirno .pp-video-gallery-pagination {
	text-align: center;
}
 .fl-node-ps8da06hirno > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-ps8da06hirno.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
@media ( max-width: 869px ) {
 .fl-node-ps8da06hirno.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:15px;
	margin-left:15px;
}
}
.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;
  }
}

div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-9lyd31cwkgqr .pp-heading-content {
	text-align: ;
}

div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading {
		}

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


div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #2f2b4f;
								}
div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-sub-heading,
div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-sub-heading p {
		color: #333333;
	}

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

div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
	}

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 869px) {
	div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-9lyd31cwkgqr .pp-heading-content {
				text-align: ;
			}
	div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 65px;
}
div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading .heading-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
}
div.fl-node-9lyd31cwkgqr div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-9lyd31cwkgqr div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-9lyd31cwkgqr div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-9lyd31cwkgqr div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-sub-heading, div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-sub-heading p {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 30px;
}
div.fl-node-9lyd31cwkgqr .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-9lyd31cwkgqr .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 35px;
	}
	div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading .heading-title {
		text-align: left;
	}
	div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-sub-heading, div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-sub-heading p {
		font-size: 25px;
	}
}
@media(max-width: 869px) {
	div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
		padding-bottom: 10px;
	}
	div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 25px;
	}
	div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-sub-heading, div.fl-node-9lyd31cwkgqr .pp-heading-content .pp-sub-heading p {
		font-size: 20px;
	}
}
 .fl-node-9lyd31cwkgqr > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-9lyd31cwkgqr.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}

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

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

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

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


div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #2f2b4f;
								}
div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


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

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

div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
	}

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 869px) {
	div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-sbtjvkac63do .pp-heading-content {
				text-align: ;
			}
	div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 65px;
}
div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading .heading-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
}
div.fl-node-sbtjvkac63do div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-sbtjvkac63do div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-sbtjvkac63do div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-sbtjvkac63do div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-sbtjvkac63do .pp-heading-content .pp-sub-heading, div.fl-node-sbtjvkac63do .pp-heading-content .pp-sub-heading p {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 30px;
}
div.fl-node-sbtjvkac63do .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-sbtjvkac63do .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 35px;
	}
	div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading .heading-title {
		text-align: left;
	}
	div.fl-node-sbtjvkac63do .pp-heading-content .pp-sub-heading, div.fl-node-sbtjvkac63do .pp-heading-content .pp-sub-heading p {
		font-size: 25px;
	}
}
@media(max-width: 869px) {
	div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
		padding-bottom: 10px;
	}
	div.fl-node-sbtjvkac63do .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 25px;
	}
	div.fl-node-sbtjvkac63do .pp-heading-content .pp-sub-heading, div.fl-node-sbtjvkac63do .pp-heading-content .pp-sub-heading p {
		font-size: 20px;
	}
}
 .fl-node-sbtjvkac63do > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-sbtjvkac63do.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}

div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-8eck2bri5d3j .pp-heading-content {
	text-align: ;
}

div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading {
		}

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


div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #2f2b4f;
								}
div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


div.fl-node-8eck2bri5d3j .pp-heading-content .pp-sub-heading,
div.fl-node-8eck2bri5d3j .pp-heading-content .pp-sub-heading p {
		color: #333333;
	}

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

div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
	}

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 869px) {
	div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-8eck2bri5d3j .pp-heading-content {
				text-align: ;
			}
	div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 65px;
}
div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading .heading-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
}
div.fl-node-8eck2bri5d3j div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-8eck2bri5d3j div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-8eck2bri5d3j div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-8eck2bri5d3j div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-8eck2bri5d3j .pp-heading-content .pp-sub-heading, div.fl-node-8eck2bri5d3j .pp-heading-content .pp-sub-heading p {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 30px;
}
div.fl-node-8eck2bri5d3j .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-8eck2bri5d3j .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 35px;
	}
	div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading .heading-title {
		text-align: left;
	}
	div.fl-node-8eck2bri5d3j .pp-heading-content .pp-sub-heading, div.fl-node-8eck2bri5d3j .pp-heading-content .pp-sub-heading p {
		font-size: 25px;
	}
}
@media(max-width: 869px) {
	div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
		padding-bottom: 10px;
	}
	div.fl-node-8eck2bri5d3j .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 25px;
	}
	div.fl-node-8eck2bri5d3j .pp-heading-content .pp-sub-heading, div.fl-node-8eck2bri5d3j .pp-heading-content .pp-sub-heading p {
		font-size: 20px;
	}
}
 .fl-node-8eck2bri5d3j > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-8eck2bri5d3j.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}

div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-91saf6ymxdgp .pp-heading-content {
	text-align: ;
}

div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading {
		}

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


div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #2f2b4f;
								}
div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


div.fl-node-91saf6ymxdgp .pp-heading-content .pp-sub-heading,
div.fl-node-91saf6ymxdgp .pp-heading-content .pp-sub-heading p {
		color: #333333;
	}

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

div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
	}

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 869px) {
	div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-91saf6ymxdgp .pp-heading-content {
				text-align: ;
			}
	div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 65px;
}
div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading .heading-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
}
div.fl-node-91saf6ymxdgp div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-91saf6ymxdgp div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-91saf6ymxdgp div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-91saf6ymxdgp div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-91saf6ymxdgp .pp-heading-content .pp-sub-heading, div.fl-node-91saf6ymxdgp .pp-heading-content .pp-sub-heading p {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 30px;
}
div.fl-node-91saf6ymxdgp .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-91saf6ymxdgp .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 35px;
	}
	div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading .heading-title {
		text-align: left;
	}
	div.fl-node-91saf6ymxdgp .pp-heading-content .pp-sub-heading, div.fl-node-91saf6ymxdgp .pp-heading-content .pp-sub-heading p {
		font-size: 25px;
	}
}
@media(max-width: 869px) {
	div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
		padding-bottom: 10px;
	}
	div.fl-node-91saf6ymxdgp .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 25px;
	}
	div.fl-node-91saf6ymxdgp .pp-heading-content .pp-sub-heading, div.fl-node-91saf6ymxdgp .pp-heading-content .pp-sub-heading p {
		font-size: 20px;
	}
}
 .fl-node-91saf6ymxdgp > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-91saf6ymxdgp.fl-module > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
.fl-builder-content .fl-node-vhgdjbwk7529.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-vhgdjbwk7529.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 22px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-vhgdjbwk7529.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-vhgdjbwk7529.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
 .fl-node-vhgdjbwk7529.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-vhgdjbwk7529.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}

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

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

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

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


div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #2f2b4f;
								}
div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


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

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

div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
	}

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 869px) {
	div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-yatcsg0hzip6 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 65px;
}
div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading .heading-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
}
div.fl-node-yatcsg0hzip6 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-yatcsg0hzip6 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-yatcsg0hzip6 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-yatcsg0hzip6 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-sub-heading, div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-sub-heading p {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 30px;
}
div.fl-node-yatcsg0hzip6 .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-yatcsg0hzip6 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 35px;
	}
	div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading .heading-title {
		text-align: left;
	}
	div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-sub-heading, div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-sub-heading p {
		font-size: 25px;
	}
}
@media(max-width: 869px) {
	div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
		padding-bottom: 10px;
	}
	div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 25px;
	}
	div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-sub-heading, div.fl-node-yatcsg0hzip6 .pp-heading-content .pp-sub-heading p {
		font-size: 20px;
	}
}
 .fl-node-yatcsg0hzip6 > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-yatcsg0hzip6.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}
.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-line-only {
	text-align: center;}
.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-line-only .pp-line-separator {
	border-bottom-color: #2f2b4f;	border-bottom-style: solid;	border-bottom-width: 1px;	width: 100%;}

.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-line-icon:before,
.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-line-icon:after {
	border-bottom-color: #2f2b4f;	border-bottom-style: solid;	border-bottom-width: 1px;	width: 100%;}

.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-line-icon:before {
	left: auto;
	right: 50%;
	margin-right: 30px;}

.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-line-icon:after {
	left: 50%;
	right: auto;
	margin-left: 30px;}

.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-line-icon.left:before {
	display: none;
}
.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-line-icon.left:after {
	left: 1%;
}
.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-line-icon.right:after {
	display: none;
}
.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-line-icon.right:before {
	right: 1%;
}

.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-line-icon .pp-line-separator.pp-icon-image {
	border-bottom-color: #2f2b4f;	border-bottom-style: solid;	border-bottom-width: 1px;	width: 100%;}

.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-icon-image .pp-icon-wrap {
	text-align: center;}
.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-icon-image .pp-icon-wrap span.pp-icon {
		color: #000000;	font-size: 70px;		}
.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-icon-image {
	text-align: center;}
.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-icon-image .pp-image-wrap {
			}

.fl-node-e9wn0i2ugjq4 .pp-line-separator-inner.pp-icon-image .pp-image-wrap img {
			border-top-left-radius: px;
		border-top-right-radius: px;
		border-bottom-left-radius: px;
		border-bottom-right-radius: px;
			width: 70px;}
 .fl-node-e9wn0i2ugjq4 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-e9wn0i2ugjq4.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:20px;
}
}
.pp-photo-container .pp-photo-align-left {
    text-align: left;
}
.pp-photo-container .pp-photo-align-center {
    text-align: center;
}
.pp-photo-container .pp-photo-align-right {
    text-align: right;
}

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

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

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


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

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

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

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


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

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

@media only screen and (max-width: 869px) {
	.fl-node-64twon1hxduy .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-64twon1hxduy .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-64twon1hxduy .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-64twon1hxduy .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-64twon1hxduy .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ff623b;
	border-top-width: 10px;
	border-right-width: 10px;
	border-bottom-width: 0px;
	border-left-width: 10px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-64twon1hxduy .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-64twon1hxduy > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 992px ) {
 .fl-node-64twon1hxduy.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 869px ) {
 .fl-node-64twon1hxduy.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}

div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-2bruvqxokj0m .pp-heading-content {
	text-align: ;
}

div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading {
		}

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


div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #2f2b4f;
								}
div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

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

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


div.fl-node-2bruvqxokj0m .pp-heading-content .pp-sub-heading,
div.fl-node-2bruvqxokj0m .pp-heading-content .pp-sub-heading p {
		color: #333333;
	}

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

div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
	}

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 869px) {
	div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-2bruvqxokj0m .pp-heading-content {
				text-align: ;
			}
	div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
	font-size: 65px;
}
div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading .heading-title {
	font-family: "Nunito Sans", sans-serif;
	font-weight: 600;
}
div.fl-node-2bruvqxokj0m div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-2bruvqxokj0m div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-2bruvqxokj0m div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-2bruvqxokj0m div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-2bruvqxokj0m .pp-heading-content .pp-sub-heading, div.fl-node-2bruvqxokj0m .pp-heading-content .pp-sub-heading p {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 30px;
}
div.fl-node-2bruvqxokj0m .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-2bruvqxokj0m .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 35px;
	}
	div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading .heading-title {
		text-align: left;
	}
	div.fl-node-2bruvqxokj0m .pp-heading-content .pp-sub-heading, div.fl-node-2bruvqxokj0m .pp-heading-content .pp-sub-heading p {
		font-size: 25px;
	}
}
@media(max-width: 869px) {
	div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
		padding-bottom: 10px;
	}
	div.fl-node-2bruvqxokj0m .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		font-size: 25px;
	}
	div.fl-node-2bruvqxokj0m .pp-heading-content .pp-sub-heading, div.fl-node-2bruvqxokj0m .pp-heading-content .pp-sub-heading p {
		font-size: 20px;
	}
}
 .fl-node-2bruvqxokj0m > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-2bruvqxokj0m.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}
.fl-builder-content .fl-node-irtekum12ap0.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-irtekum12ap0.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 22px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-irtekum12ap0.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-irtekum12ap0.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
 .fl-node-irtekum12ap0.fl-module-rich-text {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-irtekum12ap0.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}
/* Clearfix */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.pp-icon-list .pp-icon-list-items {
	margin: 0;
	padding: 0;
}
.pp-icon-list .pp-icon-list-items .pp-icon-list-item {
	list-style-type: none;
}
@media (max-width: 869px) {  }.fl-node-qxdnftikwzp8 .pp-icon-list:before {
	content: "" !important;
}
.fl-node-qxdnftikwzp8 .pp-icon-list:not(.pp-user-agent-ie) [class^="pp-icon-list"] {
	font-family: unset !important;
}
.fl-node-qxdnftikwzp8 .pp-icon-list .pp-icon-list-items .pp-icon-list-item {
	display: table;
	margin-bottom: 20px;
}
.fl-node-qxdnftikwzp8 .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-icon {
	float: left;
	margin-right: 20px;
		color: #ff623b;
	font-size: 30px;
	padding: px;
	text-align: center;
	display: inline-block;
	line-height: 30px;
		vertical-align: middle;
	-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-qxdnftikwzp8 .pp-icon-list .pp-icon-list-items .pp-icon-list-item:hover .pp-list-item-icon {
		color: ;
	border-color: ;
	-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-qxdnftikwzp8 .pp-icon-list .pp-icon-list-items.pp-list-type-number .pp-icon-list-item .pp-list-item-icon {
	}
.fl-node-qxdnftikwzp8 .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-text {
	display: table-cell;
	color: ;
	vertical-align: middle;
}

.fl-node-qxdnftikwzp8 .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-icon {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ff623b;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
}
 .fl-node-qxdnftikwzp8 > .fl-module-content {
	margin-bottom:0px;
}
.pp-accordion-button {
	display: flex;
	align-items: center;
	width: 100%;
	cursor: pointer;
	overflow: hidden;
	padding: 10px;
}
.pp-accordion-button-label {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}
.pp-accordion-button-label p {
	margin-bottom: 0;
}
span.pp-accordion-button-icon {
	display: table-cell;
	vertical-align: middle;
}
.pp-accordion-content {
	display: none;
	padding: 15px;
}

.pp-accordion-item .pp-accordion-button,
.pp-accordion-item .pp-accordion-button:hover {
	transition: all 0.1s ease-in;
	-webkit-transition: all 0.1s ease-in;
	-moz-transition: all 0.1s ease-in;
	-ms-transition: all 0.1s ease-in;
	-o-transition: all 0.1s ease-in;
}

/* Small */
.pp-accordion-small .pp-accordion-button {
	padding: 10px 15px;
}
.pp-accordion-small .pp-accordion-content {
	padding: 0 30px 10px 15px;
}

/* Medium */
.pp-accordion-medium .pp-accordion-button {
	padding: 15px 20px;
}
.pp-accordion-medium .pp-accordion-button-label {
	font-size: 20px;
}
.pp-accordion-medium .pp-accordion-content {
	padding: 0 40px 15px 20px;
}

/* Large */
.pp-accordion-large .pp-accordion-button {
	padding: 20px 25px;
}
.pp-accordion-large .pp-accordion-button-label {
	font-size: 26px;
}
.pp-accordion-large .pp-accordion-content {
	padding: 0 50px 25px 25px;
}

.pp-accordion span.pp-accordion-icon {
    padding-right: 10px;
    width: 20px;
	height: auto;
	line-height: 1.4;
    display: table-cell;
	vertical-align: middle;
    text-align: center;
    font-size: 16px;
}

.pp-accordion-button-icon.pp-accordion-close {
	display: none;
}

.pp-accordion-item.pp-accordion-item-active > .pp-accordion-button .pp-accordion-close {
	display: table-cell;
}

.pp-accordion-item.pp-accordion-item-active > .pp-accordion-button .pp-accordion-open {
	display: none;
}
.fl-node-2lixro4eaj9b .pp-accordion-item {
		margin-bottom: 10px;
	}

 
.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-button {
		background-color: #2f2b4f;
			color: #ffffff;
		}

.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-button:hover,
.fl-node-2lixro4eaj9b .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
		background-color: #ff623b;
			color: #2f2b4f;
	}

.fl-node-2lixro4eaj9b .pp-accordion-item.pp-accordion-item-active .pp-accordion-button-icon,
.fl-node-2lixro4eaj9b .pp-accordion-item:hover .pp-accordion-button-icon {
	color: #2f2b4f;
}

.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-right {
	padding-left: 15px;
}
.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-left {
	padding-right: 15px;
}
 






.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-content {
		background-color: rgba(191,190,198,0.29);
								}

.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-button-icon {
	color: #ffffff;
}

.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-button-icon,
.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-button-icon:before {
	font-size: 30px;
}

.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-icon {
		font-size: 15px;
	width: 18.75px;
			color: #ffffff;
		}

.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-button:hover .pp-accordion-icon,
.fl-node-2lixro4eaj9b .pp-accordion-item.pp-accordion-item-active .pp-accordion-icon {
	color: #2f2b4f;
}

.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-icon:before {
	font-size: 15px;
}

																																								.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-button {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-node-2lixro4eaj9b .pp-accordion-item .pp-accordion-content {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
 .fl-node-2lixro4eaj9b > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}




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

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

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

					background: #ff623b;
			
	}



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

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

	    .fl-node-46r3jml7kvpz .pp-button-wrap a.pp-button,
		.fl-node-46r3jml7kvpz .pp-button-wrap a.pp-button:visited {
							transition-duration: 500ms;
				    }
	    .fl-node-46r3jml7kvpz .pp-button-wrap {
	text-align: center;
}
.fl-node-46r3jml7kvpz a.pp-button {
	padding-top: 18px;
	padding-right: 13px;
	padding-bottom: 13px;
	padding-left: 13px;
}
.fl-node-46r3jml7kvpz .pp-button-wrap a.pp-button, .fl-node-46r3jml7kvpz .pp-button-wrap a.pp-button:visited {
	border-top-left-radius: 70px;
	border-top-right-radius: 70px;
	border-bottom-left-radius: 70px;
	border-bottom-right-radius: 70px;
	font-family: "Nunito Sans", sans-serif;
	font-weight: 800;
	font-size: 20px;
	text-transform: uppercase;
	width: 290px;
}
.fl-node-46r3jml7kvpz .pp-button-wrap a.pp-button:hover, .fl-node-46r3jml7kvpz .pp-button-wrap a.pp-button:focus {
	border-top-left-radius: 70px;
	border-top-right-radius: 70px;
	border-bottom-left-radius: 70px;
	border-bottom-right-radius: 70px;
}
.fl-node-46r3jml7kvpz .pp-button .pp-button-icon {
	font-size: 16px;
}
@media(max-width: 992px) {
	.fl-node-46r3jml7kvpz .pp-button-wrap {
		text-align: center;
	}
	.fl-node-46r3jml7kvpz .pp-button-wrap a.pp-button, .fl-node-46r3jml7kvpz .pp-button-wrap a.pp-button:visited {
		width: 290px;
	}
}
 .fl-node-46r3jml7kvpz > .fl-module-content {
	margin-top:0px;
	margin-left:20px;
}
@media ( max-width: 992px ) {
 .fl-node-46r3jml7kvpz.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
@media ( max-width: 869px ) {
 .fl-node-46r3jml7kvpz.fl-module > .fl-module-content {
	margin-top:40px;
	margin-bottom:40px;
}
}
div.fancybox-container {
	z-index: 999992;
}
.pp-photo-gallery {
    position: relative;
	text-align: center;
	text-decoration: none;
	opacity: 0;
}
.pp-photo-gallery:before,
.pp-photo-gallery:after {
	content: " ";
	display: table;
}
.pp-photo-gallery:after {
	clear: both;
}
.pp-photo-gallery .pp-photo-gallery-item {
    float: left;
    text-align: center;
}
.pp-photo-gallery .pp-photo-gallery-content {
    position: relative;
    text-align: center;
    overflow: hidden;
}

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

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

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

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

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

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

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

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



.fl-node-7hqazo82intl .pp-photo-gallery {
	opacity: 1;
}
.fl-node-7hqazo82intl .pp-photo-gallery {
		display: flex;
	flex-wrap: wrap;
	justify-content: center;
	}


.fl-node-7hqazo82intl .pp-photo-gallery-item {
	width: 32.733333333333%;
			margin-right: 0.75%;
		margin-bottom: 0.75%;
	}


.fl-node-7hqazo82intl .pp-gallery-masonry-item {
	width: calc( 32.733333333333% - 1px );
}

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

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


.fl-node-7hqazo82intl .pp-photo-space {
	width: 0.75%;
}


	.fl-node-7hqazo82intl .pp-photo-gallery-caption {
				text-align: left;
	}



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

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

.fl-node-7hqazo82intl .pp-photo-gallery-caption,
.fl-node-7hqazo82intl .pp-gallery-overlay .pp-caption {
	}















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

.fancybox-7hqazo82intl-overlay {
	background-image: none;
			background-color: rgba(47,43,79,0.8);
	}
.fancybox-is-open .fancybox-7hqazo82intl-overlay {
	opacity: 1;
}

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

					.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(3n+1){
				clear: none;
			}
			.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(3n+0){
				clear: none;
			}
			.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0.75%;
			}
							.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(3n+1){
					clear: left;
				}
				.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(3n+0){
					clear: right;
				}
						.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0;
			}
			}

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

					.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(3n+1){
				clear: none;
			}
			.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(3n+0){
				clear: none;
			}
			.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0.75%;
			}
							.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(2n+1){
					clear: left;
				}
				.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(2n+0){
					clear: right;
				}
						.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0;
			}
			}

@media only screen and ( max-width: 869px ) {
			.fl-node-7hqazo82intl .pp-photo-gallery-item {
			width: 99.9%;
		}
					.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(2n+1){
				clear: none;
			}
			.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(2n+0){
				clear: none;
			}
			.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0.75%;
			}
						.fl-node-7hqazo82intl .pp-photo-gallery-item:nth-child(1n){
				margin-right: 0;
			}
			}
.fl-node-7hqazo82intl .pp-photo-gallery-caption {
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-7hqazo82intl .pp-photo-gallery-caption, .fl-node-7hqazo82intl .pp-gallery-overlay .pp-caption {
	font-size: 14px;
}
.fl-node-7hqazo82intl .pp-gallery-pagination {
	text-align: left;
}
.fl-node-7hqazo82intl .pp-gallery-pagination .pp-gallery-load-more {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
@media(max-width: 869px) {
	.fl-node-7hqazo82intl .pp-photo-gallery-item {
		padding: 20px;
	}
}
 .fl-node-7hqazo82intl > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-7hqazo82intl.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media (max-width: 869px) { .fl-node-7hqazo82intl > .fl-module-content { margin-bottom:20px; } }
.fancybox-n032igqujtcz button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}



.fl-node-n032igqujtcz .pp-photo-gallery {
	opacity: 1;
}
.fl-node-n032igqujtcz .pp-photo-gallery {
		display: flex;
	flex-wrap: wrap;
	justify-content: center;
	}


.fl-node-n032igqujtcz .pp-photo-gallery-item {
	width: 32.733333333333%;
			margin-right: 0.75%;
		margin-bottom: 0.75%;
	}


.fl-node-n032igqujtcz .pp-gallery-masonry-item {
	width: calc( 32.733333333333% - 1px );
}

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

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


.fl-node-n032igqujtcz .pp-photo-space {
	width: 0.75%;
}


	.fl-node-n032igqujtcz .pp-photo-gallery-caption {
				text-align: left;
	}



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

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

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















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

.fancybox-n032igqujtcz-overlay {
	background-image: none;
			background-color: rgba(47,43,79,0.8);
	}
.fancybox-is-open .fancybox-n032igqujtcz-overlay {
	opacity: 1;
}

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

					.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(3n+1){
				clear: none;
			}
			.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(3n+0){
				clear: none;
			}
			.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0.75%;
			}
							.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(3n+1){
					clear: left;
				}
				.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(3n+0){
					clear: right;
				}
						.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0;
			}
			}

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

					.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(3n+1){
				clear: none;
			}
			.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(3n+0){
				clear: none;
			}
			.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0.75%;
			}
							.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(2n+1){
					clear: left;
				}
				.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(2n+0){
					clear: right;
				}
						.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0;
			}
			}

@media only screen and ( max-width: 869px ) {
			.fl-node-n032igqujtcz .pp-photo-gallery-item {
			width: 99.9%;
		}
					.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(2n+1){
				clear: none;
			}
			.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(2n+0){
				clear: none;
			}
			.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0.75%;
			}
						.fl-node-n032igqujtcz .pp-photo-gallery-item:nth-child(1n){
				margin-right: 0;
			}
			}
.fl-node-n032igqujtcz .pp-photo-gallery-caption {
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-n032igqujtcz .pp-photo-gallery-caption, .fl-node-n032igqujtcz .pp-gallery-overlay .pp-caption {
	font-size: 14px;
}
.fl-node-n032igqujtcz .pp-gallery-pagination {
	text-align: left;
}
.fl-node-n032igqujtcz .pp-gallery-pagination .pp-gallery-load-more {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
@media(max-width: 869px) {
	.fl-node-n032igqujtcz .pp-photo-gallery-item {
		padding: 20px;
	}
}
 .fl-node-n032igqujtcz > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-n032igqujtcz.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media (max-width: 869px) { .fl-node-n032igqujtcz > .fl-module-content { margin-bottom:20px; } }
.fancybox-itrfc2y6upwk button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}



.fl-node-itrfc2y6upwk .pp-photo-gallery {
	opacity: 1;
}
.fl-node-itrfc2y6upwk .pp-photo-gallery {
		display: flex;
	flex-wrap: wrap;
	justify-content: center;
	}


.fl-node-itrfc2y6upwk .pp-photo-gallery-item {
	width: 32.733333333333%;
			margin-right: 0.75%;
		margin-bottom: 0.75%;
	}


.fl-node-itrfc2y6upwk .pp-gallery-masonry-item {
	width: calc( 32.733333333333% - 1px );
}

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

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


.fl-node-itrfc2y6upwk .pp-photo-space {
	width: 0.75%;
}


	.fl-node-itrfc2y6upwk .pp-photo-gallery-caption {
				text-align: left;
	}



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

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

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















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

.fancybox-itrfc2y6upwk-overlay {
	background-image: none;
			background-color: rgba(47,43,79,0.8);
	}
.fancybox-is-open .fancybox-itrfc2y6upwk-overlay {
	opacity: 1;
}

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

					.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(3n+1){
				clear: none;
			}
			.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(3n+0){
				clear: none;
			}
			.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0.75%;
			}
							.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(3n+1){
					clear: left;
				}
				.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(3n+0){
					clear: right;
				}
						.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0;
			}
			}

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

					.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(3n+1){
				clear: none;
			}
			.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(3n+0){
				clear: none;
			}
			.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0.75%;
			}
							.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(2n+1){
					clear: left;
				}
				.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(2n+0){
					clear: right;
				}
						.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0;
			}
			}

@media only screen and ( max-width: 869px ) {
			.fl-node-itrfc2y6upwk .pp-photo-gallery-item {
			width: 99.9%;
		}
					.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(2n+1){
				clear: none;
			}
			.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(2n+0){
				clear: none;
			}
			.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0.75%;
			}
						.fl-node-itrfc2y6upwk .pp-photo-gallery-item:nth-child(1n){
				margin-right: 0;
			}
			}
.fl-node-itrfc2y6upwk .pp-photo-gallery-caption {
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-itrfc2y6upwk .pp-photo-gallery-caption, .fl-node-itrfc2y6upwk .pp-gallery-overlay .pp-caption {
	font-size: 14px;
}
.fl-node-itrfc2y6upwk .pp-gallery-pagination {
	text-align: left;
}
.fl-node-itrfc2y6upwk .pp-gallery-pagination .pp-gallery-load-more {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
@media(max-width: 869px) {
	.fl-node-itrfc2y6upwk .pp-photo-gallery-item {
		padding: 20px;
	}
}
 .fl-node-itrfc2y6upwk > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-itrfc2y6upwk.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media (max-width: 869px) { .fl-node-itrfc2y6upwk > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-xflmricygd56.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xflmricygd56.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 22px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-xflmricygd56.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xflmricygd56.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
 .fl-node-xflmricygd56.fl-module-rich-text {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-xflmricygd56.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}
.fl-builder-content .fl-node-opdxut72nbwe.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-opdxut72nbwe.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 22px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-opdxut72nbwe.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-opdxut72nbwe.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
 .fl-node-opdxut72nbwe.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-opdxut72nbwe.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}
.fl-builder-content .fl-node-mxn8tcisdo2g.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-mxn8tcisdo2g.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 22px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-mxn8tcisdo2g.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-mxn8tcisdo2g.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
 .fl-node-mxn8tcisdo2g.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-mxn8tcisdo2g.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}
.fl-builder-content .fl-node-48yt7esia53z.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-48yt7esia53z.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 22px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-48yt7esia53z.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-48yt7esia53z.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
 .fl-node-48yt7esia53z.fl-module-rich-text {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-48yt7esia53z.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}
.fl-builder-content .fl-node-05bmlrzn71qc.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-05bmlrzn71qc.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 22px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-05bmlrzn71qc.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-05bmlrzn71qc.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
 .fl-node-05bmlrzn71qc.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-05bmlrzn71qc.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}

.fancybox-en9170zav8mi button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}



.fl-node-en9170zav8mi .pp-photo-gallery {
	opacity: 1;
}
.fl-node-en9170zav8mi .pp-photo-gallery {
		display: flex;
	flex-wrap: wrap;
	justify-content: center;
	}


.fl-node-en9170zav8mi .pp-photo-gallery-item {
	width: 32.733333333333%;
			margin-right: 0.75%;
		margin-bottom: 0.75%;
	}


.fl-node-en9170zav8mi .pp-gallery-masonry-item {
	width: calc( 32.733333333333% - 1px );
}

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

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


.fl-node-en9170zav8mi .pp-photo-space {
	width: 0.75%;
}


	.fl-node-en9170zav8mi .pp-photo-gallery-caption {
				text-align: left;
	}



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

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

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















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

.fancybox-en9170zav8mi-overlay {
	background-image: none;
			background-color: rgba(47,43,79,0.8);
	}
.fancybox-is-open .fancybox-en9170zav8mi-overlay {
	opacity: 1;
}

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

					.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(3n+1){
				clear: none;
			}
			.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(3n+0){
				clear: none;
			}
			.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0.75%;
			}
							.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(3n+1){
					clear: left;
				}
				.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(3n+0){
					clear: right;
				}
						.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0;
			}
			}

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

					.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(3n+1){
				clear: none;
			}
			.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(3n+0){
				clear: none;
			}
			.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(3n){
				margin-right: 0.75%;
			}
							.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(2n+1){
					clear: left;
				}
				.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(2n+0){
					clear: right;
				}
						.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0;
			}
			}

@media only screen and ( max-width: 869px ) {
			.fl-node-en9170zav8mi .pp-photo-gallery-item {
			width: 99.9%;
		}
					.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(2n+1){
				clear: none;
			}
			.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(2n+0){
				clear: none;
			}
			.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0.75%;
			}
						.fl-node-en9170zav8mi .pp-photo-gallery-item:nth-child(1n){
				margin-right: 0;
			}
			}
.fl-node-en9170zav8mi .pp-photo-gallery-caption {
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-en9170zav8mi .pp-photo-gallery-caption, .fl-node-en9170zav8mi .pp-gallery-overlay .pp-caption {
	font-size: 14px;
}
.fl-node-en9170zav8mi .pp-gallery-pagination {
	text-align: left;
}
.fl-node-en9170zav8mi .pp-gallery-pagination .pp-gallery-load-more {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
@media(max-width: 869px) {
	.fl-node-en9170zav8mi .pp-photo-gallery-item {
		padding: 20px;
	}
}
 .fl-node-en9170zav8mi > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-en9170zav8mi.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-builder-content .fl-node-2vsulxjqp4d6.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-2vsulxjqp4d6.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 22px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-2vsulxjqp4d6.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-2vsulxjqp4d6.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
 .fl-node-2vsulxjqp4d6.fl-module-rich-text {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-2vsulxjqp4d6.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}
.fl-builder-content .fl-node-pwtlcvbr20h4.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-pwtlcvbr20h4.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 22px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-pwtlcvbr20h4.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-pwtlcvbr20h4.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
 .fl-node-pwtlcvbr20h4.fl-module-rich-text {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-pwtlcvbr20h4.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
}
.fl-node-tb8vpa50sk3c .pp-icon-list:before {
	content: "" !important;
}
.fl-node-tb8vpa50sk3c .pp-icon-list:not(.pp-user-agent-ie) [class^="pp-icon-list"] {
	font-family: unset !important;
}
.fl-node-tb8vpa50sk3c .pp-icon-list .pp-icon-list-items .pp-icon-list-item {
	display: table;
	margin-bottom: 20px;
}
.fl-node-tb8vpa50sk3c .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-icon {
	float: left;
	margin-right: 20px;
		color: #ff623b;
	font-size: 30px;
	padding: px;
	text-align: center;
	display: inline-block;
	line-height: 30px;
		vertical-align: middle;
	-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-tb8vpa50sk3c .pp-icon-list .pp-icon-list-items .pp-icon-list-item:hover .pp-list-item-icon {
		color: ;
	border-color: ;
	-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-tb8vpa50sk3c .pp-icon-list .pp-icon-list-items.pp-list-type-number .pp-icon-list-item .pp-list-item-icon {
	}
.fl-node-tb8vpa50sk3c .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-text {
	display: table-cell;
	color: ;
	vertical-align: middle;
}

.fl-node-tb8vpa50sk3c .pp-icon-list .pp-icon-list-items .pp-icon-list-item .pp-list-item-icon {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #ff623b;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
}
 .fl-node-tb8vpa50sk3c > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-1frbiq6vh7w3.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-1frbiq6vh7w3.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 22px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-1frbiq6vh7w3.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-1frbiq6vh7w3.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
 .fl-node-1frbiq6vh7w3.fl-module-rich-text {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-1frbiq6vh7w3.fl-module-rich-text.fl-module {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:40px;
	margin-left:20px;
}
}
.fl-builder-content .fl-node-94y0oawjps7h.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-94y0oawjps7h.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 22px;
}
@media(max-width: 869px) {
	.fl-builder-content .fl-node-94y0oawjps7h.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-94y0oawjps7h.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
 .fl-node-94y0oawjps7h.fl-module-rich-text {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 869px ) {
 .fl-node-94y0oawjps7h.fl-module-rich-text.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */



/* End Layout CSS */


                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .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-8jrogn5lu3ak .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-dn586fzbsj0k .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-npkybhacuxgl .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-5quzmfkliajo .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-klq089yzgowd .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-9rucie80wgvm .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-59qzmk71aygs .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-f2mq5nwyu81k .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-4br210i3eyw6 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-n5zkhfqtu3jb .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6ldnta5ygrvz .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-xiq3clje2rbd .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-301nifcwht8b .fl-row-content {
				min-width: 0px;
			}
		