/* 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:before,
.fl-module: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:after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* 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;
}

/* 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%;
  	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
}
.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 {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: 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 {
	align-items: flex-end;
	justify-content: flex-end;
	-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;
}

/* 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 {
	align-items: center;
	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-module,
.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;
}

/* Modules
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}

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

.fl-builder-module-template {
	margin: 0 auto;
	max-width: 1100px;
	padding: 20px;
}

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

/* 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;
	}
}
@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: 767px) { /* 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: 768px) 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: 767px) {
	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-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-col-content {
	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-module-content, :where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





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

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

/* Full height iPad with portrait orientation. */
@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
	.fl-node-tleproij8sqh.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
	.fl-node-tleproij8sqh.fl-row-full-height > .fl-row-content-wrap {
		min-height: 768px;
	}
}
/* Full height iPhone 5. You can also target devices with aspect ratio. */
@media screen and (aspect-ratio: 40/71) {
	.fl-node-tleproij8sqh.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-tleproij8sqh > .fl-row-content-wrap {
	background-color: #edad2c;
}
.fl-node-tleproij8sqh > .fl-row-content-wrap:after {
	background-color: rgba(237,173,44,0.65);
}
.fl-node-tleproij8sqh .fl-row-content {
	max-width: 1080px;
}
 .fl-node-tleproij8sqh > .fl-row-content-wrap {
	padding-top:30px;
	padding-bottom:30px;
}






.fl-node-d8nrytel3mbu .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: auto;
	top: auto;
	bottom: 0;
	transform: scaleX(2) scaleY(-1);
}
.fl-node-d8nrytel3mbu .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #edad2c;
}
 .fl-node-d8nrytel3mbu > .fl-row-content-wrap {
	margin-top:20px;
}
 .fl-node-d8nrytel3mbu > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:50px;
}






.fl-node-a1woqxd2knib .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: auto;
	top: auto;
	bottom: 0;
	transform: scaleX(2) scaleY(-1);
}
.fl-node-a1woqxd2knib .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #edad2c;
}
 .fl-node-a1woqxd2knib > .fl-row-content-wrap {
	margin-top:20px;
}
 .fl-node-a1woqxd2knib > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:50px;
}






.fl-node-9juwh0a7ompy > .fl-row-content-wrap {
	background-color: #edad2c;
}
.fl-node-9juwh0a7ompy .fl-row-content {
	max-width: 1080px;
}
.fl-node-9juwh0a7ompy .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: auto;
	top: auto;
	bottom: 0;
	transform: scaleX(2) scaleY(-1);
}
.fl-node-9juwh0a7ompy .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
 .fl-node-9juwh0a7ompy > .fl-row-content-wrap {
	padding-top:100px;
	padding-bottom:100px;
}
@media ( max-width: 767px ) {
 .fl-node-9juwh0a7ompy.fl-row > .fl-row-content-wrap {
	padding-top:70px;
}
}






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






.fl-node-pob6feshd90i > .fl-row-content-wrap {
	background-color: #edad2c;
}
.fl-node-pob6feshd90i .fl-row-content {
	max-width: 1240px;
}
 .fl-node-pob6feshd90i > .fl-row-content-wrap {
	padding-top:50px;
	padding-bottom:50px;
}






.fl-node-5d7smiv3exb2.fl-row-fixed-width, .fl-node-5d7smiv3exb2 .fl-row-fixed-width {
	max-width: 1100px;
}




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




.fl-node-8ipl06tbcw3x {
	width: 100%;
}




.fl-node-7ofqa5cutj9v {
	width: 50%;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-7ofqa5cutj9v {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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




.fl-node-07hby8t5nkwa {
	width: 25%;
}




.fl-node-q24zravp951o {
	width: 100%;
}
.fl-node-q24zravp951o > .fl-col-content {
	background-color: #e53412;
}
 .fl-node-q24zravp951o > .fl-col-content {
	margin-bottom:15px;
}
@media ( max-width: 767px ) {
 .fl-node-q24zravp951o.fl-col > .fl-col-content {
	margin-bottom:10px;
}
}
 .fl-node-q24zravp951o > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




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




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




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




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




.fl-node-90zgolc53quf {
	width: 100%;
}




.fl-node-fs95lrn4d7i0 {
	width: 100%;
}
.fl-node-fs95lrn4d7i0 > .fl-col-content {
	background-color: #e53412;
}
 .fl-node-fs95lrn4d7i0 > .fl-col-content {
	margin-top:15px;
}
@media ( max-width: 767px ) {
 .fl-node-fs95lrn4d7i0.fl-col > .fl-col-content {
	margin-top:10px;
}
}
 .fl-node-fs95lrn4d7i0 > .fl-col-content {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}




.fl-node-gly2bd45zo87 {
	width: 50%;
}
.fl-node-gly2bd45zo87 > .fl-col-content {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}




.fl-node-hq649tgkeljs {
	width: 35%;
}




.fl-node-zu8nk6v5dq1f {
	width: 50%;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-zu8nk6v5dq1f {
		width: 50% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-46c51bk28pnq {
	width: 50%;
}
 .fl-node-46c51bk28pnq > .fl-col-content {
	margin-left:15%;
}
@media ( max-width: 767px ) {
 .fl-node-46c51bk28pnq.fl-col > .fl-col-content {
	padding-top:15px;
	padding-right:15px;
	padding-bottom:15px;
	padding-left:15px;
}
}




.fl-node-9wqdi42va3mr {
	width: 15%;
}




.fl-node-yctepfxnjqo0 {
	width: 25%;
}
@media (max-width: 767px) { .fl-module-icon {
	text-align: center;
}
 }.fl-node-2my6fuh9pz3q .fl-icon i,
.fl-node-2my6fuh9pz3q .fl-icon i:before {
	color: #028eaf;
}



.fl-node-2my6fuh9pz3q .fl-icon i:hover,
.fl-node-2my6fuh9pz3q .fl-icon i:hover:before,
.fl-node-2my6fuh9pz3q .fl-icon a:hover i,
.fl-node-2my6fuh9pz3q .fl-icon a:hover i:before {
	color: #028eaf;
}

.fl-node-2my6fuh9pz3q .fl-icon i, .fl-node-2my6fuh9pz3q .fl-icon i:before {
	font-size: 143px;
}
.fl-node-2my6fuh9pz3q .fl-icon-wrap .fl-icon-text {
	height: 250.25px;
}
.fl-node-2my6fuh9pz3q.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-2my6fuh9pz3q .fl-icon-wrap .fl-icon-text {
		height: 250.25px;
	}
}
@media(max-width: 992px) {
	.fl-node-2my6fuh9pz3q .fl-icon-wrap .fl-icon-text {
		height: 250.25px;
	}
}
@media(max-width: 767px) {
	.fl-node-2my6fuh9pz3q .fl-icon-wrap .fl-icon-text {
		height: 250.25px;
	}
}
 .fl-node-2my6fuh9pz3q > .fl-module-content {
	margin-top:010px;
	margin-right:010px;
	margin-bottom:010px;
	margin-left:010px;
}
@media ( max-width: 767px ) {
 .fl-node-2my6fuh9pz3q.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
.fl-node-ryqapl0un1h3 .fl-icon i,
.fl-node-ryqapl0un1h3 .fl-icon i:before {
	color: #028eaf;
}



.fl-node-ryqapl0un1h3 .fl-icon i:hover,
.fl-node-ryqapl0un1h3 .fl-icon i:hover:before,
.fl-node-ryqapl0un1h3 .fl-icon a:hover i,
.fl-node-ryqapl0un1h3 .fl-icon a:hover i:before {
	color: #028eaf;
}

.fl-node-ryqapl0un1h3 .fl-icon i, .fl-node-ryqapl0un1h3 .fl-icon i:before {
	font-size: 60px;
}
.fl-node-ryqapl0un1h3 .fl-icon-wrap .fl-icon-text {
	height: 105px;
}
.fl-node-ryqapl0un1h3.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-ryqapl0un1h3 .fl-icon-wrap .fl-icon-text {
		height: 105px;
	}
}
@media(max-width: 992px) {
	.fl-node-ryqapl0un1h3 .fl-icon-wrap .fl-icon-text {
		height: 105px;
	}
}
@media(max-width: 767px) {
	.fl-node-ryqapl0un1h3 .fl-icon-wrap .fl-icon-text {
		height: 105px;
	}
}
 .fl-node-ryqapl0un1h3 > .fl-module-content {
	margin-top:010px;
	margin-right:010px;
	margin-bottom:010px;
	margin-left:010px;
}
.fl-countdown{
	text-align: center;
	font-size: 1px;
}
.fl-countdown .fl-countdown-unit-number {
	display: block;
}
.fl-countdown .fl-countdown-number{
	position: relative;
	display: inline-block;
}

.fl-countdown .fl-countdown-unit{
	position: relative;
}
.fl-countdown .fl-countdown-unit-label {
	min-width: 80px;
}

.fl-countdown.fl-countdown-separator-colon .fl-countdown-number:after{
	content: ':';
	display: inline-block;
	font-size: 30px;
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 10;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
			transform: translateY(-50%);
}
.fl-countdown.fl-countdown-separator-line .fl-countdown-number:after{
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 10;
	border-right: 1px solid #ccc;
}
.fl-countdown.fl-countdown-separator-colon .fl-countdown-number:last-child:after,
.fl-countdown.fl-countdown-separator-line .fl-countdown-number:last-child:after{
	content: none;
}

.fl-countdown .svg-container{
	display: inline-block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	padding-bottom: 100%;
}

.fl-countdown .svg-container .svg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
	.fl-node-76qd8pak240o .fl-countdown .fl-countdown-number {
		font-size: 1px;
		margin-left: 10px;
		margin-right: 10px;
	}



	.fl-node-76qd8pak240o .svg {
		overflow: overlay;
	}
	.fl-node-76qd8pak240o .fl-countdown-unit{
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%,-50%);
			-moz-transform: translate(-50%,-50%);
			-ms-transform: translate(-50%,-50%);
				transform: translate(-50%,-50%);
	}
	.fl-node-76qd8pak240o .fl-countdown-number{
		width: 200px;height: 200px;	}
	.fl-node-76qd8pak240o .fl-countdown-circle-container{
		max-width: 200px;max-height: 200px;	}

	.fl-node-76qd8pak240o .fl-countdown .svg circle{
	stroke-width: 10px;	}

	.fl-node-76qd8pak240o .fl-countdown .svg .fl-number-bg{
	stroke: #eaeaea;	}

	.fl-node-76qd8pak240o .fl-countdown .svg .fl-number{
	stroke: #028eaf;	}
.fl-node-76qd8pak240o .fl-countdown {
	text-align: center;
}
.fl-node-76qd8pak240o .fl-countdown .fl-countdown-unit-number {
	font-size: 34px;
	text-align: center;
	text-align: center;
}
.fl-node-76qd8pak240o .fl-countdown .fl-countdown-unit-label {
	font-size: 13px;
	text-align: center;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-76qd8pak240o .fl-countdown .fl-countdown-unit-number {
		text-align: center;
	}
	.fl-node-76qd8pak240o .fl-countdown .fl-countdown-unit-label {
		text-align: center;
	}
}
@media(max-width: 767px) {
	.fl-node-76qd8pak240o .fl-countdown .fl-countdown-unit-number {
		text-align: center;
	}
	.fl-node-76qd8pak240o .fl-countdown .fl-countdown-unit-label {
		text-align: center;
	}
}
.fl-animated.fl-zoom-in {
	animation: fl-zoom-in 1s ease;
	-webkit-animation: fl-zoom-in 1s ease;
}
@-webkit-keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
img.mfp-img {
    padding-bottom: 40px !important;
}

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

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

@media (max-width: 767px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-zmlfprat83i2 .fl-photo {
	text-align: center;
}
.fl-node-zmlfprat83i2 .fl-photo-content, .fl-node-zmlfprat83i2 .fl-photo-img {
	width: 60px;
}
 .fl-node-zmlfprat83i2 > .fl-module-content {
	margin-top:20px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-node-ovnyum8p9bca .fl-photo {
	text-align: center;
}
.fl-node-ovnyum8p9bca .fl-photo-content, .fl-node-ovnyum8p9bca .fl-photo-img {
	width: 60px;
}
 .fl-node-ovnyum8p9bca > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:10px;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
.fl-builder-content .fl-node-7vxyw3i1bu6q .fl-rich-text, .fl-builder-content .fl-node-7vxyw3i1bu6q .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 16px;
}
 .fl-node-7vxyw3i1bu6q > .fl-module-content {
	margin-bottom:0px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-ijbgo7rdc2a3 h2.fl-heading a,
.fl-row .fl-col .fl-node-ijbgo7rdc2a3 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ijbgo7rdc2a3 h2.fl-heading .fl-heading-text *,
.fl-node-ijbgo7rdc2a3 h2.fl-heading .fl-heading-text {
	color: #3a3a3a;
}
.fl-node-ijbgo7rdc2a3.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 30px;
	text-align: center;
}
@media(max-width: 767px) {
	.fl-node-ijbgo7rdc2a3.fl-module-heading .fl-heading {
		font-size: 20px;
	}
}
.fl-node-ktd6uapbgl23 .fl-photo {
	text-align: center;
}
 .fl-node-ktd6uapbgl23 > .fl-module-content {
	margin-top:0px;
}
.fl-row .fl-col .fl-node-25syzl8u90kt h1.fl-heading a,
.fl-row .fl-col .fl-node-25syzl8u90kt h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-25syzl8u90kt h1.fl-heading .fl-heading-text *,
.fl-node-25syzl8u90kt h1.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-25syzl8u90kt.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 767px) {
	.fl-node-25syzl8u90kt.fl-module-heading .fl-heading {
		font-size: 20px;
	}
}
 .fl-node-25syzl8u90kt > .fl-module-content {
	margin-bottom:10px;
}
.fl-row .fl-col .fl-node-z4j0cuqtkw1e h2.fl-heading a,
.fl-row .fl-col .fl-node-z4j0cuqtkw1e h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-z4j0cuqtkw1e h2.fl-heading .fl-heading-text *,
.fl-node-z4j0cuqtkw1e h2.fl-heading .fl-heading-text {
	color: #3a3a3a;
}
.fl-node-z4j0cuqtkw1e.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 30px;
	text-align: center;
}
@media(max-width: 767px) {
	.fl-node-z4j0cuqtkw1e.fl-module-heading .fl-heading {
		font-size: 20px;
	}
}
.fl-row .fl-col .fl-node-xtleof3y6p18 h2.fl-heading a,
.fl-row .fl-col .fl-node-xtleof3y6p18 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-xtleof3y6p18 h2.fl-heading .fl-heading-text *,
.fl-node-xtleof3y6p18 h2.fl-heading .fl-heading-text {
	color: #3a3a3a;
}
.fl-node-xtleof3y6p18.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 30px;
	text-align: center;
}
@media(max-width: 767px) {
	.fl-node-xtleof3y6p18.fl-module-heading .fl-heading {
		font-size: 20px;
	}
}
.fl-node-cif06ruwl542 .fl-icon i,
.fl-node-cif06ruwl542 .fl-icon i:before {
	color: #028eaf;
}



.fl-node-cif06ruwl542 .fl-icon i:hover,
.fl-node-cif06ruwl542 .fl-icon i:hover:before,
.fl-node-cif06ruwl542 .fl-icon a:hover i,
.fl-node-cif06ruwl542 .fl-icon a:hover i:before {
	color: #028eaf;
}

.fl-node-cif06ruwl542 .fl-icon i, .fl-node-cif06ruwl542 .fl-icon i:before {
	font-size: 60px;
}
.fl-node-cif06ruwl542 .fl-icon-wrap .fl-icon-text {
	height: 105px;
}
.fl-node-cif06ruwl542.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-cif06ruwl542 .fl-icon-wrap .fl-icon-text {
		height: 105px;
	}
}
@media(max-width: 992px) {
	.fl-node-cif06ruwl542 .fl-icon-wrap .fl-icon-text {
		height: 105px;
	}
}
@media(max-width: 767px) {
	.fl-node-cif06ruwl542 .fl-icon-wrap .fl-icon-text {
		height: 105px;
	}
}
 .fl-node-cif06ruwl542 > .fl-module-content {
	margin-top:010px;
	margin-right:010px;
	margin-bottom:010px;
	margin-left:010px;
}
@media ( max-width: 767px ) {
 .fl-node-cif06ruwl542.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
	.fl-builder-content .fl-node-bumeys4akl9d .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-bumeys4akl9d .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-bumeys4akl9d .fl-rich-text, .fl-builder-content .fl-node-bumeys4akl9d .fl-rich-text *:not(b, strong) {
	line-height: 2.5;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-bumeys4akl9d .fl-rich-text, .fl-builder-content .fl-node-bumeys4akl9d .fl-rich-text *:not(b, strong) {
		font-size: 14px;
	}
}
.fl-node-vohjbaimewc3 .fl-photo {
	text-align: center;
}
.fl-node-vohjbaimewc3 .fl-photo-content, .fl-node-vohjbaimewc3 .fl-photo-img {
	width: 450px;
}
 .fl-node-vohjbaimewc3 > .fl-module-content {
	margin-right:15%;
	margin-left:0%;
}
@media ( max-width: 767px ) {
 .fl-node-vohjbaimewc3.fl-module > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}

	.fl-node-oqwx1n0p32mz .fl-countdown .fl-countdown-number {
		font-size: 1px;
		margin-left: 0px;
		margin-right: 0px;
	}



	.fl-node-oqwx1n0p32mz .svg {
		overflow: overlay;
	}
	.fl-node-oqwx1n0p32mz .fl-countdown-unit{
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%,-50%);
			-moz-transform: translate(-50%,-50%);
			-ms-transform: translate(-50%,-50%);
				transform: translate(-50%,-50%);
	}
	.fl-node-oqwx1n0p32mz .fl-countdown-number{
		width: 140px;height: 140px;	}
	.fl-node-oqwx1n0p32mz .fl-countdown-circle-container{
		max-width: 140px;max-height: 140px;	}

	.fl-node-oqwx1n0p32mz .fl-countdown .svg circle{
	stroke-width: 5px;	}

	.fl-node-oqwx1n0p32mz .fl-countdown .svg .fl-number-bg{
	stroke: #eaeaea;	}

	.fl-node-oqwx1n0p32mz .fl-countdown .svg .fl-number{
	stroke: #028eaf;	}
.fl-node-oqwx1n0p32mz .fl-countdown {
	text-align: center;
}
.fl-node-oqwx1n0p32mz .fl-countdown .fl-countdown-unit-number {
	font-size: 34px;
	text-align: center;
	text-align: center;
}
.fl-node-oqwx1n0p32mz .fl-countdown .fl-countdown-unit-label {
	font-size: 13px;
	text-align: center;
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-oqwx1n0p32mz .fl-countdown .fl-countdown-unit-number {
		text-align: center;
	}
	.fl-node-oqwx1n0p32mz .fl-countdown .fl-countdown-unit-label {
		text-align: center;
	}
}
@media(max-width: 767px) {
	.fl-node-oqwx1n0p32mz .fl-countdown .fl-countdown-unit-number {
		font-size: 16px;
		text-align: center;
	}
	.fl-node-oqwx1n0p32mz .fl-countdown .fl-countdown-unit-label {
		font-size: 14px;
		text-align: center;
	}
}
@media ( max-width: 767px ) {
 .fl-node-oqwx1n0p32mz.fl-module > .fl-module-content {
	margin-bottom:05px;
}
}
.fl-embed-video iframe {
	max-width: 100%;
}
.fl-wp-video {
	position: relative;
	height: 0;
	overflow: hidden;
	padding: 0 0 56.25%;
}
.fl-wp-video .wp-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


.mfp-container .fl-video-lightbox-content .wp-video {
    margin-left: auto;
    margin-right: auto;
}

.mfp-container .fl-video-lightbox-content .fluid-width-video-wrapper iframe {
	width: 80%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.fl-module-video .fl-video-poster {
	cursor: pointer;
}

.fl-wp-video .wp-video .mejs-container,
.fl-wp-video .wp-video .mejs-inner,
.fl-wp-video .wp-video .mejs-layers,
.fl-wp-video .wp-video .mejs-layer,
.fl-wp-video .wp-video-shortcode,
.fl-wp-video .me-plugin,
.fl-wp-video .me-plugin * {
	width: 100% !important;
	height: 100% !important;
}

.fl-video-sticky {
	position: fixed;
    top: 20px;
	z-index: 11;
}

.fl-wp-video img{
	width: 100%;
}
@media (max-width: 767px) {  }







.fl-node-jt4qi6e1umld .fl-video-poster {
	display: none;
}


 .fl-node-jt4qi6e1umld > .fl-module-content {
	margin-top:2%;
	margin-right:30%;
	margin-bottom:2%;
	margin-left:30%;
}
@media (max-width: 767px) { .fl-node-jt4qi6e1umld > .fl-module-content { margin-left:20px;margin-right:20px; } }.fl-row .fl-col .fl-node-ykbiwd5juzae h1.fl-heading a,
.fl-row .fl-col .fl-node-ykbiwd5juzae h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-ykbiwd5juzae h1.fl-heading .fl-heading-text *,
.fl-node-ykbiwd5juzae h1.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-ykbiwd5juzae.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 767px) {
	.fl-node-ykbiwd5juzae.fl-module-heading .fl-heading {
		font-size: 20px;
	}
}
 .fl-node-ykbiwd5juzae > .fl-module-content {
	margin-bottom:10px;
}
	.fl-builder-content .fl-node-t9vy8cua0efo .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-t9vy8cua0efo .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-t9vy8cua0efo .fl-rich-text, .fl-builder-content .fl-node-t9vy8cua0efo .fl-rich-text *:not(b, strong) {
	line-height: 2.5;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-t9vy8cua0efo .fl-rich-text, .fl-builder-content .fl-node-t9vy8cua0efo .fl-rich-text *:not(b, strong) {
		font-size: 14px;
	}
}

/* Start Global CSS */
/* GÉNÉRALITÉS */
.uppercase a,
.uppercase span {
    text-transform: uppercase;
}

a {
    color: inherit;
}

a.fl-button, a.fl-button:visited {
    border: 0 !important;
}

.fl-icon-wrap .fl-icon i {
    overflow: hidden;
}

/* GESTION DES OMBRES */

.fl-module-pp-flipbox.box-shadow .pp-flip-box,
.liste-malles .pp-content-grid-post,
.ombre-patro,
.gform_wrapper {
    -webkit-box-shadow: 4px 4px 22px -1px rgba(151,151,151,1);
    -moz-box-shadow: 4px 4px 22px -1px rgba(151,151,151,1);
    box-shadow: 4px 4px 22px -1px rgba(151,151,151,1);
}

/* TIMELINE - NE PAS AFFICHER LES TITRES ARTICLES*/

.timeline-patro .pp-post-timeline-title-wrapper {
    display: none;
}

/* ICON PATRO - SINON AFFICHAGE ANARCHIQUE*/

.patro-icones-line p {
    font-family: "Open Sans", Sans-Serif;
    font-size: 16px;
    line-height: 22px;
 }
 
 .patro-icones-line .fl-icon {
     display: inline-block !important;
 }
 
 .patro-icones-line .fl-icon a {
     display: inherit !important;
 }
 
 .patro-icones-line .fl-icon-text {
     padding: 0;
 }
 
 /* PATRO EN CHIFFRES */
 
.en-chiffres-patro .fl-icon-text {
    margin: 30px auto;
    font-size: 22px;
 }

.en-chiffres-patro .fl-icon-text strong {
   font-family: "Open Sans", sans-serif;
    font-weight: 800;
    font-size: 40px;
}
 
.en-chiffres-patro .vert .fl-icon-text {
     color: #9FC421;
}

.en-chiffres-patro .jaune .fl-icon-text {
     color: #FCC139;
}
 
 
 /* PATRO NEWS */
 
 .news-patro .pp-content-grid-post-image {
     padding : 0 !important;
 }
 
 .news-patro .date {
    float: right;
    color: #9FC421;
  }
  
.news-patro .tags {
    float: left;
    text-transform: uppercase;
  }
  
.news-patro .pp-content-grid-post-meta:after {
    content: "";
    display: block;
    clear: both;
}

.news-patro .pp-content-grid-post-title {
    margin: 2rem 0;
}

.news-patro h3 a {
    font-size: 16px;
    font-weight: 800;
}

.news-patro .fa-plus {
    color: #9FC421;
    font-size: 30px;
    margin: 2rem 0
}

.news-single-patro .tags{
   text-transform: uppercase;
   font-size: 14px;
   font-family: "Open Sans", Sans-Serif;
   font-weight: 200;
  }
 
 .news-single-patro .date {
     color: #9FC421;
 }

 .news-single-patro .fl-heading .fl-heading-text {
     color: #4A4A4A;
     font-family: "Open Sans";
     font-size: 16px !important;
     font-weight: bold !important;
     line-height: 22px;
     text-transform: uppercase;
 }
 
  .news-single-patro p{
      font-size: 14px;
  }

 /* PATRO AGENDA */
 
 .agenda-patro {
     position: relative;
 }
 
 .agenda-patro .pp-content-grid-post {
     min-height: 200px;
     background-color: #fff;
 }
 
 .agenda-patro .pp-content-post-date {
     float: left;
     width: 80px;
     padding-top: 12px;
     background-color: #9FC421;
     height: 80px;
     border-radius: 40px;
     font-family: "Open Sans" Sans-Serif;
 }
 
 .agenda-patro .pp-post-month,
   .agenda-patro .pp-post-day{
     display: block;
     text-align: center;
     color: #ffffff;
     text-transform: uppercase;
     font-size: 14px;
 }
 
 .agenda-patro .pp-post-day {
    font-size: 36px;
    font-weight: 600;
    line-height: 32px;
 }
 
 .agenda-patro .pp-content-post-data {
     width: 100%;
 }
 
 .agenda-patro .pp-post-meta-public {
     color: #9FC421;
     text-transform: uppercase;
     font-size: 12px;
     margin: 0 0 0 90px;
 }
 
 .agenda-patro h3.pp-post-title {
     font-size: 16px;
     font-weight: bold;
     line-height: 24px;
     color: #4A4A4A;
     margin: 0 0 0 90px;
 }
 
  .agenda-patro .pp-post-event-calendar-meta {
    width: 100%;
     padding: 10px 20px 40px 90px;
     font-size: 14px;
 }
 
 .agenda-patro .tribe-address {
     color: #9FC421;
     text-transform: uppercase;
     font-style: normal;
 }
 
 .agenda-patro a {
     display: block;
 }
 
 .agenda-patro *:hover {
    text-decoration: none;
    color: inherit;
 }
 
.agenda-patro-homepage .pp-content-grid-post {
    min-height: 200px;
    background-color: #efefef;
}

.agenda-patro-homepage a.next.page-numbers {
    display: none !important;
}
 
 
 /* SINGLE EVENEMENT */
 
 .evenement-single-patro h3 {
     font-family: "Open Sans";
     font-size: 16px;
     font-weight: 800;
     margin-bottom: 20px;
     color: #ffffff;
 }
 
 .evenement-single-patro .droite h3 {
     color : #7C9C8F;
     font-size: 18px;
 }
 
  .evenement-single-patro .droite li, .cob-handicap-li li{
      font-size: 16px
  }
 
  .evenement-single-patro .fiche-technique div {
      display: block;
      position: relative;
      font-size: 14px;
      margin: 0 0 30px 0;
      padding: 0 0 16px 0;
      border-bottom: 1px solid #ffffff;
      margin-left: 55px;
      color: #ffffff;
  }
  
  .evenement-single-patro .fiche-technique div::before,
  .evenement-single-patro .fiche-technique .contact-container div:before {
    font-family: patrofonticon !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    font-size: 40px;
    position: absolute;
    left: -55px;
    top: -10px;
  }
  
  .evenement-single-patro .fiche-technique .contact-container {
      background-color: #ffffff;
      margin: 40px 0 0 0;
      padding: 20px;
  }
  
.evenement-single-patro .fiche-technique .contact-container div {
    color: #7C9C8F !important;
    margin-bottom: 0;
    }
 
 
 
 .evenement-single-patro .fiche-technique .infos-pratiques {
     border-bottom: none;
 }

 

 .evenement-single-patro .en_savoir_plus button {
   background-color:  #7C9C8F;
   border-color: #7C9C8F;
   display: block;
   margin: auto;
   font-size: 16px;
   text-transform: uppercase;
   padding: 12px;
   margin-top: 20px;
 }
 
  /* PATRO ROLES */
  
.roles-patro .pp-content-grid-post-more-link a {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  font-size: 30px;
  line-height: 56px;
  font-weight: bolder;
  color: #ffffff;
  text-align: center;
  background-color: #ED695C;
  margin: 2rem auto;
  }
  
.roles-patro h3 {
   text-align: center;
   font-size: 21px;
   padding: 2rem !important;
 }
 
 .roles-patro .pp-content-grid-post-excerpt {
     text-align: center;
 }
 
  /* PATRO CONTACT */
  
 .patro-contact .box-text h4 {
  color: #7C9C8F;
  font-size: 14px;
  text-transform: uppercase;
  }
  
 .patro-contact .box-text p {
    color: #4A4A4A;
    font-family: "Open Sans";
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 2rem;
 }
  
 .patro-contact .box-text strong {
       color: #4A4A4A;
       font-family: "Open Sans";
       font-size: 14px;
       font-weight: 600;
       line-height: 19px;
       text-transform: uppercase
  }
  
  /* ORGANISER CAMP */
  
  .organiser-camp .fl-col-content.fl-node-content .fl-icon-wrap {
    -webkit-box-shadow: 4px 4px 10px -1px rgba(180,180,180,0.8);
    -moz-box-shadow: 4px 4px 10px -1px rgba(180,180,180,0.8);
    box-shadow: 4px 4px 10px -1px rgba(180,180,180,0.8);
    padding: 20px 10px 0 10px;
    background-color: #ffffff;
    width: 100%;
  }
  .organiser-camp .fl-col-content.fl-node-content .fl-icon-wrap .fl-icon-text,
  .icon-vertical-patro .fl-icon-text{
      width: 100%;
      display: block;
  }
   .icon-vertical-patro .fl-icon-text {
       padding-top: 20px;
   }
  .organiser-camp .fl-col-content.fl-node-content .fl-icon-wrap .fl-icon-text a{
      color: inherit;
  }
  
   .organiser-camp .fl-col-content.fl-node-content .fl-icon-wrap .fl-icon-text a:hover {
       text-decoration: none;
   }
  
  .organiser-camp .fl-col-content.fl-node-content .fl-icon-wrap .fl-icon {
      margin-top: 20px;
  }
  
  .organiser-camp .fl-col-content.fl-node-content .fl-icon-wrap h4{
      margin-top: 20px !important;
  }
  
   .organiser-camp .fl-col-content.fl-node-content .fl-icon-wrap p {
       font-size: 14px;
   }
   
   .linge-temps-camp .pp-timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-icon{
       height: 40px;
       width: 40px;
       border-radius: 40px;
   }
   
   .linge-temps-camp .pp-timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-icon .dashicons{
       font-size: 40px;
   }
   
  /* DIVERS */
  
  .icon-vertical-patro .fl-icon {
      display: inherit;
      margin: auto;
      text-align: center;
  }
  
  .icon-vertical-patro .fl-icon i {
      margin: auto;
      text-align: center;
      display: inline-block;
      
  }
  
.icon-vertical-patro .fl-icon-text {
      vertical-align: top;
  }
  
.icon-vertical-patro .fl-icon-text h3 {
      font-size: 24px;
      font-weight: bold;
  }
  
  /* PAGES SINGLE */
  
.patro-single .fl-rich-text {
    font-family: "Open Sans",sans-serif;
    font-size: 14px;
    line-height: 21px;
}  
  
.patro-single .gauche .fl-module-content {
    border: 1px solid #9FC421 !important;
    padding: 20px;
    background-color: #ffffff;
 }

.patro-single p a {
    text-decoration: underline !important;
    color: inherit! important;
}

.patro-single .fl-rich-text h3 {
    text-transform: uppercase;
    color: #9FC421;
    font-size: 14px;
    font-weight: 600;
}

.patro-single .pp-highlight-box-content {
    line-height: 23px;
}

.patro-single .fl-rich-text h4 {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.patro-single .fl-rich-text p, li, blockquote {
    font-size: 14px;
}

.patro-single blockquote {
    border: none !important;
    padding: 20px 0 !important;
    color: #9FC421;
}

.patro-single .video iframe {
    display: block;
    margin: auto;
}

/* MALLE */

.malle.gauche ul {
    margin: 0;
    padding: 0;
}

.malle.gauche li {
    color: #9FC421;
    margin: 30px 0;
    padding-left: 70px;
    list-style-type: none;
    height: 60px;
    line-height: 60px;
}

.malle.gauche li a {
    text-decoration: none !important;
}

.malle.gauche li a:hover {
    text-decoration: underline !important;
}

.malle .disponible {
    background: url('https://patro.be/wp-content/uploads/sites/5/2019/01/antenne.png') no-repeat center left;
}

.malle .livret {
    background: url('https://patro.be/wp-content/uploads/sites/5/2019/01/livret.png') no-repeat 7px;
}

.reservation-malles {
    color: #4A4A4A;
}

.reservation-malles input[type="submit"], .reservation-malles input[type="submit"]:hover {
    background-color: #9FC421;
    color: #ffffff;
    border: none;
}

.malle.gauche .pp-modal-trigger span {
    color: #ffffff !important;   
}

/* ROLE SINGLE */

.content-liste-roles-patro {
    background-color: #ffffff;
    border: solid 1px #ED695C;
}

.content-liste-roles-patro h3{
    text-transform: uppercase;
    color: #ED695C;
    font-size: 14px;
    font-weight: 600;
}

.content-liste-roles-patro .role a  {
     color: #ED695C;
}

.content-liste-roles-patro .role  span {
    display: list-item;
    list-style-type: disc;       
    list-style-position: inside;
    color: #ED695C;
}


/* FORMULAIRE GF */

.gform_wrapper {
    background-color: #ffffff;
    padding: 2rem 4rem;
}

.gform_wrapper h3 {
    color: #7C9C8F;
}

.gform_footer {
    text-align: center;
}

.gform_footer .gform_button {
    background: #7C9C8F;
    border-color: #7C9C8F;
}

/* Pour les labels qui n'ont pas de titre principal (exemple les champs Nom et Prénom du module Nom de GF) */
.cob-form-label-sub-notitle span label {
    font-size: 16px !important;
}

/*-------HEADER--------*/
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink img {
    max-height: 90px !important;
}

/* BUG barre cookies */

.pp-announcement-bar-close-button .fa-close:before {
    content: 'f00d';
}

/*-------FOOTER--------*/
#cob-footer-fixed {
    position: fixed;
    bottom: 0;
    right: 60px;
    z-index: 10;
}

#cob-footer-fixed .fl-photo {
    max-height: 43px;
    max-width: 43px;
    margin-left: auto;
    transform: translate(64px, -45px);
}

#cob-footer-fixed .fl-button {
    transform: translateY(40px);
    transition: transform .5s ease;
    padding-bottom: 22px;
}
#cob-footer-fixed .fl-button:hover {
    transform: translateY(0);
}

/*-------Annuaire EVRAS--------*/
.pp-post-filters-wrapper {
    padding-bottom: 20px;
}
.pp-post-filter {
    border-radius: 5px;
}
.pp-content-grid-post-header {
    padding: 25px;
    background-color: #ed695c;
}
.pp-content-grid-post-title {
    font-size: 22px;
    color: #ed695c;
    font-weight: 600;
    text-transform: uppercase;
	line-height: 26px;
	padding-bottom: 10px;
	padding-top: 5px;
}
.cob-evras-question {
    padding-bottom: 5px;
    font-size: 20px;
    color: #fff;
    line-height: 28px;
    font-weight: 400;
}
.pp-content-grid-post-text {
    font-size: 14px;
    padding: 25px;
}
.pp-content-grid-post-more-link {
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 10px
}
.pp-content-grid-post-more-link a {
    background-color: #ed695c;
    padding: 5px 10px;
    border-radius: 5px;
}

.pp-content-grid-post-more-link a:hover {
    color: #ED695C;
    background-color: rgba(237,105,92,0.2);
}
.cob-bouton-contact {
    background-color: #9fc421;
    padding: 50px;
    border-radius: 250px;
    text-align: center;
}
.st0{fill:#9FC421;}
.st2{fill:#FFFFFF;}
.st3{font-family:'OpenSans-Regular';}
.st4{font-size:12px;}
.st5{font-family:'OpenSans-SemiBold';}


.cob-bullet{
  background:#9fc421;
  width:60px;
  height:60px;
}

/* BARRE COOKIES et PAGE COOKIES */

#cc-window .cc-message a {
    color: #f7f7f7;
}
#cc-window .cc-message a:hover {
    color: #fff;
}
#cmplz-document {
    font-size: 16px !important;
    max-width: 900px !important;
}    
/* HANDICAP INCLUSION*/
.cob-handi-bouton {
    text-align: center;
    margin: 12px 0px 0px 10px;
    padding: 20px 17px;
    border: solid 2px #fff;
    transition: margin 0.3s ease-in-out;
}
.cob-handi-bouton-left {
    text-align: left;
}
.cob-handi-bouton-1 {
    font-size: 18px;
    color: #fff;
    padding-bottom: 0px;
}
.cob-handi-bouton-2 {
     font-size: 0px;
}
.cob-handi-bouton-3 {
     font-size: 25px;
     padding-top: 10px;
}
.cob-handi-bouton:hover {
    margin: 0px 8px 4px 0px;
    border-top: solid 1px #fff;
    border-left: solid 1px #fff;
    border-bottom: solid 3px #fff;
    border-right: solid 3px #fff;
}
.cob-sous-col {
    transition: margin 0.3s ease-in-out;
}
.cob-sous-col:hover {
    margin-bottom: 8px;
}
.max-width-400 {
    max-width: 400px;
}
.max-width-500 {
    max-width: 500px;
}
.max-width-300 {
    max-width: 300px;
}
.max-width-350 {
    max-width: 350px;
}
.ocean {
   background-color: #008591;
   border-radius: 60px;
}
.rouge {
   background-color: #ed695c;
   border-radius: 60px;
}
.jaune-handi {
   background-color: #f2b424;
   border-radius: 60px;
}
.vert-handi {
   background-color: #429e73;
   border-radius: 60px;
}
.encre {
   background-color: #414b82;
   border-radius: 60px;
}
.ash {
   background-color: #293949;
   border-radius: 160px;
}

@media only screen and (min-width: 992px)  {
.sticky-col {
     position: fixed;
     position: -webkit-fixed;
     top:180px;
     right: 25px;
     z-index: 10;
}}
.cob-titre4-hand {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
}
.cob-apport-positif {
    background-color: #ffbc26;
    border-radius: 10px;
}
.fl-row-full-height .fl-row-content-wrap  {
    min-height: 20px !important;
}
.fl-row-custom-height .fl-row-content-wrap  {
    min-height: 20px !important;
}

/*------MODULE HEADER VIDEO -------*/
#cob-header-video.fl-row-custom-height .fl-row-content-wrap {
    min-height: 40vh !important;
}

/*------HANDI INCLU - ILLU -------*/
	.cob-fill-ocean{
	    fill:#008591;
	}
	.cob-fill-rouge{
	    fill:#ed695c;
	}
	.cob-fill-jaune{
	    fill:#f2b424;
	}
	.cob-fill-vert{
	    fill:#429e73;
	}
	.cob-fill-encre{
	    fill:#414b82;
	}
	  .cob-handi-bouton2 {  
	    stroke:#FFFFFF;
	    stroke-width:2;
	    stroke-miterlimit:10;
        transition: margin 0.3s ease-in-out;
	}

	.st1{fill:none;}
	.size-illu{font-size:16px;}
	.size-illu {
	    font-weight: 300 !important;
	    font-family: 'open sans', 'sans serif';
	}
	.cob-handi-fleche {fill:none;stroke:#FFFFFF;stroke-width:2;stroke-miterlimit:10;}
	.cob-handi-blanc{fill:#FFFFFF;}
/*--- HANDICAP INCLUSION row activités-----*/

.handi-grid-act-more-link {
    font-size: 14px;
    padding-top: 25px;
    padding-bottom: 10px
}
.handi-grid-act-more-link a {
    background-color: #ed695c;
    padding: 5px 10px;
    border-radius: 25px;
}
.handi-grid-act-more-link a:hover {
    background-color: none;
}
.handi-grid-act-text {
    padding: 18px;
}
.handi-grid-act-title {
    font-size: 22px;
    font-weight: 600;
	line-height: 26px;
	padding-bottom: 20px;
}
.handi-grid-act-excerpt {
    padding-bottom: 20px;
}
.handi-grid-taxos {
    font-size: 14px;
    text-transform: uppercase;
    padding-bottom: 5px;
}
.handi-grid-taxos .fal  {font-size: 20px; width:30px}
.img-share-play {
    width: 150px;
    padding-bottom :20px;
}
.padding-share-play {padding:30px;}

/* ------- MODULE INSTAGRAM ------- */
.pp-instagram-feed .pp-feed-item:before {
    display: none;
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */


                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-tleproij8sqh .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-d8nrytel3mbu .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-a1woqxd2knib .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-9juwh0a7ompy .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-gkxzf4nlh27y .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-pob6feshd90i .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-5d7smiv3exb2 .fl-row-content {
				min-width: 0px;
			}
		