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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Default button colors for non Beaver Builder themes.
------------------------------------------------------ */

.fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content a.fl-button *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

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

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

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

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

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

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

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

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

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

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

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

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

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




.fl-node-7img1nsywj52 > .fl-row-content-wrap:after {
	background-image: radial-gradient(at left bottom, #147c7c 5%, rgba(255,255,255,0) 71%);
}
.fl-node-7img1nsywj52 > .fl-row-content-wrap {
	background-image: url(https://overmountaintraceil.com/wp-content/uploads/2022/11/theviridian-6381-scaled.jpg);
	background-repeat: no-repeat;
	background-position: 0% 90%;
	background-attachment: scroll;
	background-size: cover;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #b5a66b;
	border-bottom-width: 2px;
}
@media(max-width: 768px) {
	.fl-node-7img1nsywj52 > .fl-row-content-wrap {
		background-attachment: fixed;
		background-size: cover;
	}
}
@media ( max-width: 768px ) {
 .fl-node-7img1nsywj52.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}





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





.fl-node-zbs0k758ayv3 > .fl-row-content-wrap {
	background-color: rgba(19,0,25,0.07);
}





.fl-node-nly87v3p4cd0 > .fl-row-content-wrap {
	background-color: #ffffff;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #021443;
	border-top-width: 1px;
	border-bottom-width: 1px;
}
 .fl-node-nly87v3p4cd0 > .fl-row-content-wrap {
	padding-bottom:0px;
}









.fl-node-ocpfa0b6e87i {
	width: 100%;
}
 .fl-node-ocpfa0b6e87i > .fl-col-content {
	padding-top:450px;
}
@media ( max-width: 992px ) {
 .fl-node-ocpfa0b6e87i.fl-col > .fl-col-content {
	padding-top:250px;
}
}




.fl-node-3qa8i1nhbkmj {
	width: 100%;
}




.fl-node-692el4cihgup {
	width: 100%;
}




.fl-node-2gsebqz3vy45 {
	width: 100%;
}
 .fl-node-2gsebqz3vy45 > .fl-col-content {
	margin-bottom:0px;
}
 .fl-node-2gsebqz3vy45 > .fl-col-content {
	padding-bottom:0px;
}




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




.fl-node-fbq10xpzuv2s {
	width: 75%;
}




.fl-node-rnpbt3uzf8js {
	width: 24%;
}




.fl-node-6j3zn892kqmr {
	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: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }
div.fl-node-baw6pulycok0 .pp-heading-content .pp-heading-prefix {
	}

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

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

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


div.fl-node-baw6pulycok0 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-baw6pulycok0 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
			background: none;
		}


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


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

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

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

/** Separators */


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

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

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


div.fl-node-baw6pulycok0 .pp-heading-content .pp-sub-heading,
div.fl-node-baw6pulycok0 .pp-heading-content .pp-sub-heading p {
		color: rgb(1,0,5);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-baw6pulycok0 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-baw6pulycok0 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-baw6pulycok0 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-baw6pulycok0 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-baw6pulycok0 .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	font-size: 35px;
}
div.fl-node-baw6pulycok0 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-baw6pulycok0 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-baw6pulycok0 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-baw6pulycok0 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-baw6pulycok0 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-baw6pulycok0 .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-baw6pulycok0 .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-baw6pulycok0 .pp-heading-content .pp-heading .heading-title {
		font-size: 25px;
	}
}
@media(max-width: 768px) {
	div.fl-node-baw6pulycok0 .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
}
 .fl-node-baw6pulycok0 > .fl-module-content {
	margin-top:35px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-baw6pulycok0.fl-module > .fl-module-content {
	margin-top:30px;
}
}
/**
 * Horizontal Layout
 */
.fl-button-group-layout-horizontal .fl-button-group-buttons,
.fl-button-group-layout-horizontal.fl-button-group-buttons {
    display: flex;
    flex-wrap: wrap;
}

.fl-button-group-layout-horizontal .fl-button-wrap {
    display: inline-block;
}

/**
 * Vertical Layout
 */
.fl-button-group-layout-vertical .fl-button-group-buttons,
.fl-button-group-layout-vertical.fl-button-group-buttons {
    display: block;
}

.fl-button-group-layout-vertical .fl-button-wrap {
    display: block;
}

.fl-node-r1lej7ubvfty .fl-button-group-layout-vertical .fl-button-group-buttons a.fl-button,
.fl-node-r1lej7ubvfty .fl-button-group-layout-horizontal .fl-button-group-buttons a.fl-button {
	width: 280px;
}
.fl-node-r1lej7ubvfty .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: center}

	.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group a.fl-button > span,
	.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group a.fl-button > i {
		color: #147c7c;
	}

	.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group a.fl-button:hover > span,
	.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group a.fl-button:focus > span,
	.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group a.fl-button:hover > i,
	.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group a.fl-button:focus > i {
		color: #dcbc6a;
	}

.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group .fl-button-group-buttons a.fl-button {
	background: rgba(255,0,0,0);
		}
	.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group .fl-button-group-buttons a.fl-button:hover,
.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group .fl-button-group-buttons a.fl-button:focus {

	background: rgba(255,0,0,0);

	}
	
	#fl-button-group-button-r1lej7ubvfty-0 a.fl-button {
		
			}

	
	#fl-button-group-button-r1lej7ubvfty-1 a.fl-button {
		
			}

	
	#fl-button-group-button-r1lej7ubvfty-2 a.fl-button {
		
			}

	
	#fl-button-group-button-r1lej7ubvfty-3 a.fl-button {
		
			}

		.fl-builder-content .fl-node-r1lej7ubvfty .fl-button,
	.fl-builder-content .fl-node-r1lej7ubvfty .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-r1lej7ubvfty .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: center;
}
.fl-node-r1lej7ubvfty .fl-button-group-layout-horizontal .fl-button-group-buttons {
	justify-content: center;
}
.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group a.fl-button, .fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group a.fl-button:visited {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	font-size: 20px;
}
.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group .fl-button-group-buttons a.fl-button {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #000837;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-builder-content .fl-node-r1lej7ubvfty .fl-button-group .fl-button-group-buttons a.fl-button:hover {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(243,0,0,0);
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-r1lej7ubvfty-0 .fl-button, #fl-button-group-button-r1lej7ubvfty-0 .fl-button * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
#fl-button-group-button-r1lej7ubvfty-0 a.fl-button {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #021443;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
#fl-button-group-button-r1lej7ubvfty-1 .fl-button, #fl-button-group-button-r1lej7ubvfty-1 .fl-button * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
#fl-button-group-button-r1lej7ubvfty-1 a.fl-button {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #021443;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
#fl-button-group-button-r1lej7ubvfty-2 .fl-button, #fl-button-group-button-r1lej7ubvfty-2 .fl-button * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
#fl-button-group-button-r1lej7ubvfty-2 a.fl-button {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #021443;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
#fl-button-group-button-r1lej7ubvfty-3 .fl-button, #fl-button-group-button-r1lej7ubvfty-3 .fl-button * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
#fl-button-group-button-r1lej7ubvfty-3 a.fl-button {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #021443;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
 .fl-node-r1lej7ubvfty > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}

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

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

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

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


div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #147c7c;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
			background: none;
		}


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


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

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

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

/** Separators */


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

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

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

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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-l91jcsrfnyd4 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading-prefix {
									}
		div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading-separator,
	div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before,
	div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after,
	div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading-prefix:before,
	div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading-prefix:after {
		content: none !important;
		display: none !important;
	}
	div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span,
	div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading-prefix {
		padding: 0 !important;
	}
	}
div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: 300;
	font-size: 23px;
}
div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
div.fl-node-l91jcsrfnyd4 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-l91jcsrfnyd4 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-l91jcsrfnyd4 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-l91jcsrfnyd4 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-sub-heading, div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-sub-heading p {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: 300;
	font-size: 20px;
	text-align: center;
}
div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-l91jcsrfnyd4 .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-l91jcsrfnyd4 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 768px) {
	div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-heading .heading-title {
		font-size: 23px;
	}
	div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-sub-heading, div.fl-node-l91jcsrfnyd4 .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
	}
}

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

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

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

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


div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #147c7c;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
			background: none;
		}


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


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

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

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

/** Separators */


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

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

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

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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-xyjd1on8wrz6 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading-prefix {
									}
		div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading-separator,
	div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before,
	div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after,
	div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading-prefix:before,
	div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading-prefix:after {
		content: none !important;
		display: none !important;
	}
	div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span,
	div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading-prefix {
		padding: 0 !important;
	}
	}
div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: 300;
	font-size: 23px;
}
div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
div.fl-node-xyjd1on8wrz6 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-xyjd1on8wrz6 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-xyjd1on8wrz6 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-xyjd1on8wrz6 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-sub-heading, div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-sub-heading p {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: 300;
	font-size: 23px;
	text-align: center;
}
div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-xyjd1on8wrz6 .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-xyjd1on8wrz6 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 768px) {
	div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-heading .heading-title {
		font-size: 23px;
	}
	div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-sub-heading, div.fl-node-xyjd1on8wrz6 .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
	}
}

.fl-node-eh15tpfq8v3s .fl-button-group-layout-vertical .fl-button-group-buttons a.fl-button,
.fl-node-eh15tpfq8v3s .fl-button-group-layout-horizontal .fl-button-group-buttons a.fl-button {
	width: 100%;
}
.fl-node-eh15tpfq8v3s .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: center}

	.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group a.fl-button > span,
	.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group a.fl-button > i {
		color: #147c7c;
	}

	.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group a.fl-button:hover > span,
	.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group a.fl-button:focus > span,
	.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group a.fl-button:hover > i,
	.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group a.fl-button:focus > i {
		color: #dcbc6a;
	}

.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group .fl-button-group-buttons a.fl-button {
	background: rgba(255,0,0,0);
		}
	.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group .fl-button-group-buttons a.fl-button:hover,
.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group .fl-button-group-buttons a.fl-button:focus {

	background: rgba(255,0,0,0);

	}
	
	#fl-button-group-button-eh15tpfq8v3s-0 a.fl-button {
		
			}

	
	#fl-button-group-button-eh15tpfq8v3s-1 a.fl-button {
		
			}

	
	#fl-button-group-button-eh15tpfq8v3s-2 a.fl-button {
		
			}

	
	#fl-button-group-button-eh15tpfq8v3s-3 a.fl-button {
		
			}

		.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button,
	.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-eh15tpfq8v3s .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group a.fl-button, .fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group a.fl-button:visited {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	font-size: 20px;
}
.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group .fl-button-group-buttons a.fl-button {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #000837;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 2px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-builder-content .fl-node-eh15tpfq8v3s .fl-button-group .fl-button-group-buttons a.fl-button:hover {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(243,0,0,0);
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 2px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-eh15tpfq8v3s-0 .fl-button, #fl-button-group-button-eh15tpfq8v3s-0 .fl-button * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
#fl-button-group-button-eh15tpfq8v3s-0 a.fl-button {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #021443;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 2px;
	border-left-width: 0px;
}
#fl-button-group-button-eh15tpfq8v3s-1 .fl-button, #fl-button-group-button-eh15tpfq8v3s-1 .fl-button * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
#fl-button-group-button-eh15tpfq8v3s-1 a.fl-button {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #021443;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 2px;
	border-left-width: 0px;
}
#fl-button-group-button-eh15tpfq8v3s-2 .fl-button, #fl-button-group-button-eh15tpfq8v3s-2 .fl-button * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
#fl-button-group-button-eh15tpfq8v3s-2 a.fl-button {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #021443;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 2px;
	border-left-width: 0px;
}
#fl-button-group-button-eh15tpfq8v3s-3 .fl-button, #fl-button-group-button-eh15tpfq8v3s-3 .fl-button * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
#fl-button-group-button-eh15tpfq8v3s-3 a.fl-button {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #021443;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 2px;
	border-left-width: 0px;
}
@media(max-width: 992px) {
	#fl-button-group-button-eh15tpfq8v3s-0 a.fl-button {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
	#fl-button-group-button-eh15tpfq8v3s-1 a.fl-button {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
	#fl-button-group-button-eh15tpfq8v3s-2 a.fl-button {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
	#fl-button-group-button-eh15tpfq8v3s-3 a.fl-button {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
}
 .fl-node-eh15tpfq8v3s > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
/*  Labels
------------------------------------ */

.pp-tabs-label {
	outline: 0;
	cursor: pointer;
	transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
}
.pp-tabs-label:hover,
.pp-tab-active {
	transition: all 0.2s ease-in;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
}
.pp-tabs-label:focus > .pp-tab-label-inner {
	outline: 1px dotted;
}
.pp-tabs-label.pp-tab-active {
	position: relative;
	z-index: 1;
}
.pp-tab-label-flex {
	display: flex;
    flex-direction: row;
    flex: 1 1 auto;
}
.pp-tabs-label .pp-tab-label-flex {
	align-items: center;
}
.pp-tabs-label.pp-tab-icon-top .pp-tab-label-flex,
.pp-tabs-label.pp-tab-icon-bottom .pp-tab-label-flex {
	flex-direction: column;
}

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

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

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

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

.pp-tabs-panel-label {
	display: none;
}
.pp-tabs-panel-label span {
	display: table-cell;
	width: 100%;
}
.pp-tabs-panel-label .pp-toggle-icon {
	display: table-cell;
	line-height: inherit;
	padding-left: 15px;
	vertical-align: middle;
	width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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




/* Media Queries */

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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


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

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

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

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

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

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

.pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner:after {
	display: none;
} }.fl-node-7f52nsyo6ai8 .pp-tabs-default .pp-tabs-label.pp-tab-active,
.fl-node-7f52nsyo6ai8 .pp-tabs-default .pp-tabs-panels,
.fl-node-7f52nsyo6ai8 .pp-tabs-default .pp-tabs-panel {
	border-color: #021443;
}

.fl-node-7f52nsyo6ai8 .pp-tabs-label .pp-tab-icon {
			margin-right: 15px;
							color: #147c7c;
	}

	.fl-node-7f52nsyo6ai8 .pp-tabs-vertical .pp-tabs-label {
				text-align: center;
			}
	

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

.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label {
		background-color: rgba(19,0,25,0.07);
			color: #dcbc6a;
	}

.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label.pp-tab-active,
.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label.pp-tab-active:hover,
.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label:hover,
.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label:focus {
		background-color: #00857D;
			color: #ffffff;
	}

.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label .pp-tab-description {
		color: #021443;
	}

.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label.pp-tab-active .pp-tab-description,
.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label.pp-tab-active:hover .pp-tab-description,
.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label:hover .pp-tab-description {
		color: #021443;
	}

.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label.pp-tab-active .pp-tab-icon,
.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label.pp-tab-active:hover .pp-tab-icon,
.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-label:hover .pp-tab-icon {
			color: #dcbc6a;
	}

.fl-node-7f52nsyo6ai8 .pp-tabs-panel-label .pp-toggle-icon {
		font-size: 20px;
			color: #147c7c;
	}

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

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

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

.fl-node-7f52nsyo6ai8 .pp-tabs-style-1 .pp-tabs-labels {
	background-color: #021443;
	border-color: #021443;
}
.fl-node-7f52nsyo6ai8 .pp-tabs-style-1 .pp-tabs-label:hover {
	color: #ffffff;
}

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

.fl-node-7f52nsyo6ai8 .pp-tabs-style-2 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	border-top-color: #00857D;
}
.fl-node-7f52nsyo6ai8 .pp-tabs-style-2 .pp-tabs-label:first-child:before,
.fl-node-7f52nsyo6ai8 .pp-tabs-style-2 .pp-tabs-label::after {
	background: rgba(2, 20, 67, 0.7);
}

/*  Style 3
------------------------------------ */
.fl-node-7f52nsyo6ai8 .pp-tabs-style-3 .pp-tabs-label:after {
	background-color: #ffffff;
}

.fl-node-7f52nsyo6ai8 .pp-tabs-style-3 .pp-tabs-label:hover {
		color: #dcbc6a;
			background-color: rgba(19,0,25,0.07);
	}

/*  Style 4
------------------------------------ */
.fl-node-7f52nsyo6ai8 .pp-tabs-style-4 .pp-tabs-label:before {
	background-color: #ffffff;
}

.fl-node-7f52nsyo6ai8 .pp-tabs-style-4 .pp-tabs-label:hover {
		color: #dcbc6a;
			background-color: rgba(19,0,25,0.07);
	}

/*  Style 5
------------------------------------ */
.fl-node-7f52nsyo6ai8 .pp-tabs-style-5 .pp-tabs-label .pp-tab-label-inner:after,
.fl-node-7f52nsyo6ai8 .pp-tabs-style-5 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	background-color: #00857D;
}
.fl-node-7f52nsyo6ai8 .pp-tabs-style-5 .pp-tabs-label:hover {
	color: #dcbc6a;
}

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

	
.fl-node-7f52nsyo6ai8 .pp-tabs-style-6 .pp-tabs-label,
.fl-node-7f52nsyo6ai8 .pp-tabs-style-6 .pp-tabs-label.pp-tab-active,
.fl-node-7f52nsyo6ai8 .pp-tabs-style-6 .pp-tabs-label.pp-tab-active:hover,
.fl-node-7f52nsyo6ai8 .pp-tabs .pp-tabs-style-6 .pp-tabs-label:hover {
	background-color: transparent !important;
		color: #dcbc6a !important;
	}
.fl-node-7f52nsyo6ai8 .pp-tabs-style-6 .pp-tabs-label:last-child:before {
	background-color: #ffffff;
}

/*  Style 7
------------------------------------ */
.fl-node-7f52nsyo6ai8 .pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
	border-bottom-color: #021443;
}
.fl-node-7f52nsyo6ai8 .pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after,
.fl-node-7f52nsyo6ai8 .pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before {
	border-top-color: #021443;
}

/*  Style 8
------------------------------------ */
.fl-node-7f52nsyo6ai8 .pp-tabs-style-8 .pp-tabs-label .pp-tab-label-inner:after {
	background-color: #021443;
}
.fl-node-7f52nsyo6ai8 .pp-tabs-style-8 .pp-tabs-label:hover .pp-tab-label-inner:after,
.fl-node-7f52nsyo6ai8 .pp-tabs-style-8 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
	background-color: #00857D;
}
.fl-node-7f52nsyo6ai8 .pp-tabs-style-8 .pp-tabs-label:hover {
	color: #dcbc6a;
}
.fl-node-7f52nsyo6ai8 .pp-tabs-horizontal.pp-tabs-style-8 .pp-tabs-label {
	margin-left: 15px;
	margin-right: 15px;
}

@media only screen and (min-width: 769px) {
		.fl-node-7f52nsyo6ai8 .pp-tabs-vertical.pp-tabs-style-2 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
		border-left-color: #00857D;
	}
		.fl-node-7f52nsyo6ai8 .pp-tabs-vertical.pp-tabs-style-6 .pp-tabs-label {
		border-bottom: 4px solid transparent;
	}
		.fl-node-7f52nsyo6ai8 .pp-tabs-vertical.pp-tabs-style-6 .pp-tabs-label.pp-tab-active {
		border-bottom: 4px solid #ffffff;
	}
			.fl-node-7f52nsyo6ai8 .pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
		border-right-color: #021443;
	}
	.fl-node-7f52nsyo6ai8 .pp-tabs-vertical.pp-tabs-vertical-right.pp-tabs-style-7 .pp-tabs-label .pp-tab-label-inner {
		border-left-color: #021443;
	}
	.fl-node-7f52nsyo6ai8 .pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:before,
	.fl-node-7f52nsyo6ai8 .pp-tabs-vertical.pp-tabs-style-7 .pp-tabs-label.pp-tab-active .pp-tab-label-inner:after {
		border-left-color: #021443;
	}
	}

@media only screen and (max-width: 768px) {
	.fl-node-7f52nsyo6ai8 .pp-tabs-style-1 .pp-tabs-label {
				border: 4px solid #021443;
				margin: 2px 0;
	}
		.fl-node-7f52nsyo6ai8 .pp-tabs-style-5 .pp-tabs-label.pp-tab-active {
		background-color: #00857D !important;
	}
	.fl-node-7f52nsyo6ai8 .pp-tabs-style-8 .pp-tabs-label.pp-tab-active {
		background-color: #00857D !important;
	}
	}.fl-node-7f52nsyo6ai8 .pp-tabs-label .pp-tab-icon, .fl-node-7f52nsyo6ai8 .pp-tabs-label .pp-tab-icon:before {
	font-size: 30px;
}
.fl-node-7f52nsyo6ai8 .pp-tabs-label .pp-tab-icon img {
	width: 30px;
}
.fl-node-7f52nsyo6ai8 .pp-tabs-labels .pp-tabs-label .pp-tab-title, .fl-node-7f52nsyo6ai8 .pp-tabs-panels .pp-tabs-label .pp-tab-title {
	font-family: Montserrat, sans-serif;
	font-weight: 500;
	font-size: 25px;
	text-align: center;
}
.fl-node-7f52nsyo6ai8 .pp-tabs-labels .pp-tabs-label .pp-tab-description, .fl-node-7f52nsyo6ai8 .pp-tabs-panels .pp-tabs-label .pp-tab-description {
	font-family: Montserrat, sans-serif;
	font-weight: 100;
	font-size: 20px;
	text-align: left;
}
.fl-node-7f52nsyo6ai8 .pp-tabs-panels .pp-tabs-panel-content {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: 400;
	font-size: 20px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-7f52nsyo6ai8 .pp-tabs-labels .pp-tabs-label .pp-tab-title, .fl-node-7f52nsyo6ai8 .pp-tabs-panels .pp-tabs-label .pp-tab-title {
		font-size: 23px;
		line-height: 2;
	}
	.fl-node-7f52nsyo6ai8 .pp-tabs-labels .pp-tabs-label .pp-tab-description, .fl-node-7f52nsyo6ai8 .pp-tabs-panels .pp-tabs-label .pp-tab-description {
		font-size: 15px;
	}
	.fl-node-7f52nsyo6ai8 .pp-tabs-panels .pp-tabs-panel-content {
		font-size: 18px;
	}
}
.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;
  }
}
/* .fl-module-pp-video .fl-module-content {
	overflow: hidden;
} */
.fancybox-container .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-lightbox .fancybox-content {
	background: none;
    width: 100%;
    height: 100%;
}

.pp-fit-aspect-ratio {
	position: relative;
	background: none;
}

.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 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 {
	background-color: transparent;
	overflow: hidden;
}
.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-player {
	-o-object-fit: cover;
    object-fit: cover;
}

.pp-aspect-ratio-219 .pp-video-player {
	aspect-ratio: 21/9;
}
  
.pp-aspect-ratio-169 .pp-video-player {
	aspect-ratio: 16/9;
}

.pp-aspect-ratio-916 .pp-video-player {
	aspect-ratio: 9/16;
}
  
.pp-aspect-ratio-43 .pp-video-player {
	aspect-ratio: 4/3;
}

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

.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%;
	display: flex;
}
.pp-video-wrapper:not(.pp-video-has-lightbox) .pp-video-image-overlay img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: auto;
}

.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-source-youtube .pp-video-play-icon.play-icon-default {
	background: #f00;
	width: 68px;
    height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
}
.pp-video-source-youtube .pp-video-play-icon.play-icon-default svg {
	fill: #fff;
	width: 22px;
    height: 22px;
}
*/

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

@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%;
	}
}.fl-node-mvsrbj3y1ntf .pp-video-play-icon {
		}
.fl-node-mvsrbj3y1ntf .pp-video-play-icon:hover {
		}
.fl-node-mvsrbj3y1ntf .pp-video-image-overlay {
	cursor: pointer;
}
.fl-node-mvsrbj3y1ntf .pp-video-play-icon svg {
	}
.fl-node-mvsrbj3y1ntf .pp-video-play-icon:hover svg {
	}


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

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

@media only screen and (max-width: 992px) {
	.fl-node-mvsrbj3y1ntf .pp-video-play-icon {
			}
}
@media only screen and (max-width: 768px) {
	.fl-node-mvsrbj3y1ntf .pp-video-play-icon {
			}
} .fl-node-mvsrbj3y1ntf > .fl-module-content {
	margin-top:0px;
	margin-right:350px;
	margin-left:350px;
}
@media (max-width: 768px) { .fl-node-mvsrbj3y1ntf > .fl-module-content { margin-left:20px;margin-right:20px; } }.fl-node-5pxs29rn83if .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #021443;
	max-width: 95%;
	margin: auto;
}

			 .fl-node-5pxs29rn83if > .fl-module-content {
	margin-top:0px;
	margin-bottom:20px;
}
.fl-row-fixed-width {
	min-width: 1px;
}
.fl-col-group.fl-col-group-responsive-reversed,
.fl-col-group.fl-col-group-responsive-reversed .fl-col,
.fl-col-group.fl-col-group-responsive-reversed .fl-col-content,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	min-width: 0px;
}
.fl-module-box > .fl-module-pp-image-carousel {
    width: 100%;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

.fl-node-vywg2irt5sf4 .pp-image-carousel .pp-carousel-image-container {
	background-size: auto;
}
.fl-node-vywg2irt5sf4 .pp-image-carousel .pp-carousel-image-container figure.use-as-background {
	}
.fl-node-vywg2irt5sf4 .pp-image-carousel .pp-carousel-image-container figure.use-as-background .swiper-slide-image {
	object-fit: none;
		}
.fl-node-vywg2irt5sf4 .pp-carousel-image-container figure.use-as-background picture.swiper-slide-image img {
	}

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

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

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


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

.fl-node-vywg2irt5sf4 .pp-image-carousel-wrapper .pp-swiper-button:hover,
.fl-node-vywg2irt5sf4 .pp-image-carousel-wrapper .pp-swiper-button:focus {
        color: #ffffff !important;
    			background-color: #147c7c !important;
	    }

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



.mfp-vywg2irt5sf4.mfp-gallery img.mfp-img {
	padding: 40px 0 40px;
}

.mfp-vywg2irt5sf4 .mfp-counter {
	display: block !important;
}

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

.fl-node-vywg2irt5sf4 .pp-image-overlay .pp-overlay-icon {
			width: 60px;
	height: 60px;
}

.fl-node-vywg2irt5sf4 .pp-image-overlay .pp-overlay-icon span {
	color: rgb(255,255,255);
	font-size: 60px;
			background-color: rgba(255,0,0,0);
			}



.fl-node-vywg2irt5sf4 .pp-image-carousel-wrapper .pp-swiper-button {
	border-color: #147c7c;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
 .fl-node-vywg2irt5sf4 > .fl-module-content {
	margin-top:0px;
}
.fl-node-hqdm43iap0ft .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #021443;
	max-width: 95%;
	margin: auto;
}

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

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

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

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


div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #147c7c;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
			background: none;
		}


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


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

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

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

/** Separators */


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

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

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

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


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

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-cxdhb78eztqy .pp-heading-content {
				text-align: ;
			}
	div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading-prefix {
									}
		div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading-separator,
	div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before,
	div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after,
	div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading-prefix:before,
	div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading-prefix:after {
		content: none !important;
		display: none !important;
	}
	div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading.pp-separator-inline .heading-title span,
	div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading-prefix {
		padding: 0 !important;
	}
	}
div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: 300;
	font-size: 23px;
}
div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
	font-size: 30px;
}
div.fl-node-cxdhb78eztqy div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-cxdhb78eztqy div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-cxdhb78eztqy div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-cxdhb78eztqy div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-cxdhb78eztqy .pp-heading-content .pp-sub-heading, div.fl-node-cxdhb78eztqy .pp-heading-content .pp-sub-heading p {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-weight: 300;
	font-size: 20px;
	text-align: center;
}
div.fl-node-cxdhb78eztqy .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-cxdhb78eztqy .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 768px) {
	div.fl-node-cxdhb78eztqy .pp-heading-content .pp-heading .heading-title {
		font-size: 23px;
	}
	div.fl-node-cxdhb78eztqy .pp-heading-content .pp-sub-heading, div.fl-node-cxdhb78eztqy .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
	}
}
img.mfp-img {
    padding-bottom: 40px !important;
}

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

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

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-ysbtu4l35fj7, .fl-node-ysbtu4l35fj7 .fl-photo {
	text-align: center;
}


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






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







.fl-node-8xaj1b5790s3.fl-button-wrap, .fl-node-8xaj1b5790s3 .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button, .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button, .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:visited {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 20px;
	border: 1px solid #087070;
	background-color: #147c7c;
}
.fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:hover, .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:focus {
	border: 1px solid rgba(243,0,0,0);
}
.fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button, .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:visited, .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:hover, .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button, .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #147c7c;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-builder-content .fl-module-button.fl-node-8xaj1b5790s3 a.fl-button:hover, .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:focus, .fl-page .fl-builder-content .fl-module-button.fl-node-8xaj1b5790s3 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:focus {
	border-color: #147c7c;
}
.fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-8xaj1b5790s3 a.fl-button:hover {
	background-color: rgba(255,0,0,0);
}
.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-s6b5389fivgr .pp-accordion-item {
		margin-bottom: 10px;
	}

 
.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-button {
		background-color: rgba(221,221,221,0);
			color: #147c7c;
		}

.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-button:hover,
.fl-node-s6b5389fivgr .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
		background-color: rgba(255,0,0,0);
			color: #dcbc6a;
	}

.fl-node-s6b5389fivgr .pp-accordion-item.pp-accordion-item-active .pp-accordion-button-icon,
.fl-node-s6b5389fivgr .pp-accordion-item:hover .pp-accordion-button-icon {
	color: #dcbc6a;
}

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




.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
		justify-content: center;
}


.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-content {
		background-color: rgba(238,238,238,0);
			color: #0179bf;
							}

.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-button-icon {
	color: #666666;
}

.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-button-icon,
.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-button-icon:before {
	font-size: 14px;
}

.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-icon {
		font-size: 15px;
	width: 18.75px;
			color: #147c7c;
		}

.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-button:hover .pp-accordion-icon,
.fl-node-s6b5389fivgr .pp-accordion-item.pp-accordion-item-active .pp-accordion-icon {
	color: #dcbc6a;
}

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

										.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
	font-size: 20px;
	text-align: center;
}
.fl-node-s6b5389fivgr .pp-accordion-item .pp-accordion-content {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
 .fl-node-s6b5389fivgr > .fl-module-content {
	margin-top:0px;
}
.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-node-h2zp8crujt7s > .fl-module-content {
	margin-top:-35px;
	margin-bottom:-20px;
}
@media (max-width: 768px) { .fl-node-h2zp8crujt7s > .fl-module-content { margin-top:20px;margin-bottom:20px; } }
/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
/*#######################################################*/

                    /* USEFUL CSS */

/*#######################################################*/

/* ## TESTIMONIALS ## */

/* The following rules provide some useful layout abilities - namely to have
an avatar image for the each testimonial, and to have either a centered style
or a left aligned style. You'll need to apply the appropriate class to your
module, and remember to align your avatar images left when adding them into the 
text editor */

/* ## TESTIMONIALS LEFT ALIGNED ## */

.bb-testimonials p {
  margin-bottom: 30px;
}
.bb-testimonials img {
  border-radius: 100%;
  height: 60px;
  width: 60px;
  margin-top: -5px !important;
}

/*#######################################################*/

/* ## BB COUNTDOWN ## */

/* Align the countdown text to the left */
.bb-countdown-align-left .fl-countdown {
    text-align: left;
}
/* End Layout CSS */


                                    .fl-node-7img1nsywj52 > .fl-row-content-wrap:after {
                width: 50%;
            }
                
        
                                
        
                                
        
                                
        
                                
        
        .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;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        
        
        
        
        