/* 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: 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-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, :where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
:root {
	--fl-global-text-font-family: Montserrat, sans-serif;
	--fl-global-text-font-weight: 400;
	--fl-global-h1-font-family: Montserrat, sans-serif;
	--fl-global-h1-font-weight: 700;
	--fl-global-h2-font-family: Montserrat, sans-serif;
	--fl-global-h2-font-weight: 600;
	--fl-global-h3-font-family: Heebo, sans-serif;
	--fl-global-h3-font-weight: 500;
	--fl-global-button-color: #000000;
	--fl-global-button-hover-color: #000000;
	--fl-global-button-background: #aaf26f;
	--fl-global-button-hover-background: #0eb200;
	--fl-global-button-font-weight: 700;
	--fl-global-button-border-style: none;
	--fl-global-button-background-clip: border-box;
	--fl-global-button-border-top-left-radius: 20px;
	--fl-global-button-border-top-right-radius: 20px;
	--fl-global-button-border-bottom-left-radius: 20px;
	--fl-global-button-border-bottom-right-radius: 20px;
}
.fl-builder-content:not(.fl-builder-empty) {
	font-family: Montserrat, sans-serif;
	font-weight: 400;
}
.fl-builder-content h1 {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
}
.fl-builder-content h2 {
	font-family: Montserrat, sans-serif;
	font-weight: 600;
}
.fl-builder-content h3 {
	font-family: Heebo, sans-serif;
	font-weight: 500;
}
.fl-builder-content button:not(.fl-menu-mobile-toggle), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content a.fl-button, .fl-builder-content button:not(.fl-menu-mobile-toggle) *, .fl-builder-content input[type=button] *, .fl-builder-content input[type=submit] *, .fl-builder-content a.fl-button *, .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-builder-content button:visited *, .fl-builder-content input[type=button]:visited *, .fl-builder-content input[type=submit]:visited *, .fl-builder-content a.fl-button:visited *, .fl-page .fl-builder-content button:not(.fl-menu-mobile-toggle), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content a.fl-button, .fl-page .fl-builder-content button:not(.fl-menu-mobile-toggle) *, .fl-page .fl-builder-content input[type=button] *, .fl-page .fl-builder-content input[type=submit] *, .fl-page .fl-builder-content a.fl-button *, .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content button:visited *, .fl-page .fl-builder-content input[type=button]:visited *, .fl-page .fl-builder-content input[type=submit]:visited *, .fl-page .fl-builder-content a.fl-button:visited * {
	color: #000000;
}
.fl-builder-content button:not(.fl-menu-mobile-toggle):hover, .fl-builder-content input[type=button]:hover, .fl-builder-content input[type=submit]:hover, .fl-builder-content a.fl-button:hover, .fl-builder-content button:not(.fl-menu-mobile-toggle):hover *, .fl-builder-content input[type=button]:hover *, .fl-builder-content input[type=submit]:hover *, .fl-builder-content a.fl-button:hover *, .fl-page .fl-builder-content button:not(.fl-menu-mobile-toggle):hover, .fl-page .fl-builder-content input[type=button]:hover, .fl-page .fl-builder-content input[type=submit]:hover, .fl-page .fl-builder-content a.fl-button:hover, .fl-page .fl-builder-content button:not(.fl-menu-mobile-toggle):hover *, .fl-page .fl-builder-content input[type=button]:hover *, .fl-page .fl-builder-content input[type=submit]:hover *, .fl-page .fl-builder-content a.fl-button:hover * {
	color: #000000;
}
.fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-menu-mobile-toggle), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content a.fl-button, .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-menu-mobile-toggle), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content a.fl-button, .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
	background-color: #aaf26f;
}
.fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-menu-mobile-toggle):hover, .fl-builder-content input[type=button]:hover, .fl-builder-content input[type=submit]:hover, .fl-builder-content a.fl-button:hover, .fl-page .fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-menu-mobile-toggle):hover, .fl-page .fl-builder-content input[type=button]:hover, .fl-page .fl-builder-content input[type=submit]:hover, .fl-page .fl-builder-content a.fl-button:hover {
	background-color: #0eb200;
}
.fl-builder-content button:not(.fl-menu-mobile-toggle), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content a.fl-button, .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content button:not(.fl-menu-mobile-toggle), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content a.fl-button, .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
	font-weight: 700;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





.fl-node-pk3jgse18lf0 .fl-row-content {
	max-width: 90%;
}






.fl-node-pv3s9f2kmgby .fl-row-content {
	max-width: 90%;
}






.fl-node-8gvbi9nxulhy .fl-row-content {
	max-width: 90%;
}






.fl-node-t5k2hwjx96zu > .fl-row-content-wrap {
	background-image: radial-gradient(at left bottom, #8ddad3 0%, #aaf26f 100%);
	border-top-left-radius: 21px;
	border-top-right-radius: 21px;
	border-bottom-left-radius: 21px;
	border-bottom-right-radius: 21px;
}
.fl-node-t5k2hwjx96zu.fl-row-fixed-width, .fl-node-t5k2hwjx96zu .fl-row-fixed-width {
	max-width: 90%;
}
 .fl-node-t5k2hwjx96zu > .fl-row-content-wrap {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:20px;
	margin-left:0px;
}


















.fl-node-bmcwpf0stx96 .fl-row-content {
	max-width: 90%;
}






.fl-node-hoj62urdwn4e > .fl-row-content-wrap {
	border-top-left-radius: 21px;
	border-top-right-radius: 21px;
	border-bottom-left-radius: 21px;
	border-bottom-right-radius: 21px;
}
.fl-node-hoj62urdwn4e.fl-row-fixed-width, .fl-node-hoj62urdwn4e .fl-row-fixed-width {
	max-width: 90%;
}
 .fl-node-hoj62urdwn4e > .fl-row-content-wrap {
	margin-top:20px;
	margin-bottom:80px;
}
.pp-headline--style-highlight .pp-headline-dynamic-wrapper {
    overflow: visible;
}
.pp-headline--style-highlight .pp-headline-dynamic-text {
    z-index: 1;
}
.pp-headline--style-highlight .pp-headline-plain-text {
    z-index: 1;
    position: relative;
}
.pp-headline--style-highlight svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc( 100% + 20px);
    height: calc( 100% + 20px);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    overflow: visible;
}
.pp-headline--style-highlight svg path {
    stroke: red;
    stroke-width: 9;
    fill: none;
    stroke-dasharray: 1500;
    -webkit-animation: pp-headline-dash-no-loop 10s ease;
    animation: pp-headline-dash-no-loop 10s ease;
}
.pp-headline--style-highlight.pp-headline-loop svg path {
    -webkit-animation: pp-headline-dash 10s infinite;
    animation: pp-headline-dash 10s infinite;
}
.pp-headline--style-highlight svg path:nth-of-type(2) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
@-webkit-keyframes pp-headline-dash {
    0% {
        stroke-dasharray: 0 1500;
    }
    15% {
        stroke-dasharray: 1500 1500;
    }
    85% {
        opacity: 1;
    }
    90% {
        stroke-dasharray: 1500 1500;
        opacity: 0;
    }
    100% {
        stroke-dasharray: 0 1500;
        opacity: 0;
    }
}
@keyframes pp-headline-dash {
    0% {
        stroke-dasharray: 0 1500;
    }
    15% {
        stroke-dasharray: 1500 1500;
    }
    85% {
        opacity: 1;
    }
    90% {
        stroke-dasharray: 1500 1500;
        opacity: 0;
    }
    100% {
        stroke-dasharray: 0 1500;
        opacity: 0;
    }
}
@-webkit-keyframes pp-headline-dash-no-loop {
    0% {
        stroke-dasharray: 0 1500;
    }
    15% {
        stroke-dasharray: 1500 1500;
    }
    85% {
        opacity: 1;
    }
    90% {
        stroke-dasharray: 1500 1500;
        opacity: 1;
    }
    100% {
        stroke-dasharray: 1500 1500;
        opacity: 1;
    }
}
@keyframes pp-headline-dash-no-loop {
    0% {
        stroke-dasharray: 0 1500;
    }
    15% {
        stroke-dasharray: 1500 1500;
    }
    85% {
        opacity: 1;
    }
    90% {
        stroke-dasharray: 1500 1500;
        opacity: 1;
    }
    100% {
        stroke-dasharray: 1500 1500;
        opacity: 1;
    }
}
.pp-headline-dynamic-wrapper {
    display: inline-block;
	position: relative;
	text-align: left;
	transition: width 0.3s ease;
}
.pp-headline-dynamic-wrapper.has-stopped {
	width: auto !important;
}
.pp-headline-dynamic-wrapper.has-stopped:after,
.pp-headline-dynamic-wrapper.has-stopped .pp-headline-dynamic-text:after {
	display: none;
}
.pp-headline-dynamic-wrapper .pp-headline-dynamic-text {
    display: inline-block;
    position: absolute;
	white-space: nowrap;
	top: 0;
	left: 0;
	right: 0;
}
.pp-headline-center.pp-headline-animation-type-wave .pp-headline-dynamic-wrapper .pp-headline-dynamic-text {
	left: 50%;
	transform: translateX(-50%);
}
.pp-headline-center .pp-headline-plain-text + .pp-headline-dynamic-wrapper .pp-headline-dynamic-text {
	left: 0;
	transform: translateX(0);
}
.pp-headline-dynamic-wrapper .pp-headline-dynamic-text.pp-headline-text-active {
    position: relative;
}
.pp-headline-dynamic-wrapper .pp-headline-dynamic-text i,
.pp-headline-dynamic-wrapper .pp-headline-dynamic-text i em {
    font-style: normal;
}
.pp-headline-animation-type-flip .pp-headline-dynamic-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px;
}
.pp-headline-animation-type-flip .pp-headline-dynamic-text {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.pp-headline-animation-type-flip .pp-headline-dynamic-text.pp-headline-text-active {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation: pp-headline-flip-in 1.2s;
    animation: pp-headline-flip-in 1.2s;
}
.pp-headline-animation-type-flip .pp-headline-dynamic-text.pp-headline-text-inactive {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: pp-headline-flip-out 1.2s;
    animation: pp-headline-flip-out 1.2s;
}
@-webkit-keyframes pp-headline-flip-in {
    0% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
    35% {
        -webkit-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1;
    }
}
@keyframes pp-headline-flip-in {
    0% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
    35% {
        -webkit-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1;
    }
}
@-webkit-keyframes pp-headline-flip-out {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
    35% {
        -webkit-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
}
@keyframes pp-headline-flip-out {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
    35% {
        -webkit-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper {
    vertical-align: top;
    overflow: hidden;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper::after {
    /* vertical bar */

    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 90%;
    width: 1px;
    background-color: #0d0d0d;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper:not(.pp-headline-typing-selected):after {
    -webkit-animation: pp-headline-pulse 1s infinite;
    animation: pp-headline-pulse 1s infinite;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper.pp-headline-typing-selected {
    background-color: #0d0d0d;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper.pp-headline-typing-selected::after {
    visibility: hidden;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper.pp-headline-typing-selected .pp-headline-dynamic-text {
    color: #aebcb9;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-text:not(.pp-headline-text-active) {
    visibility: hidden;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-letter:not(.pp-headline-animation-in) {
    position: absolute;
    visibility: hidden;
}
@-webkit-keyframes pp-headline-pulse {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    40% {
        -webkit-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}
@keyframes pp-headline-pulse {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    40% {
        -webkit-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px;
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-letter {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-letter {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
    opacity: 0;
}
.pp-headline-text-active .pp-headline-animation-type-swirl .pp-headline-dynamic-letter {
    opacity: 1;
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-letter.pp-headline-animation-in {
    -webkit-animation: pp-headline-swirl-in .4s forwards;
    animation: pp-headline-swirl-in .4s forwards;
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-letter:not(.pp-headline-animation-in) {
    -webkit-animation: pp-headline-swirl-out .4s forwards;
    animation: pp-headline-swirl-out .4s forwards;
}
@-webkit-keyframes pp-headline-swirl-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
        transform: translateZ(-20px) rotateX(90deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
        transform: translateZ(-20px) rotateX(-10deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
        transform: translateZ(-20px) rotateX(0deg);
    }
}
@keyframes pp-headline-swirl-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
        transform: translateZ(-20px) rotateX(90deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
        transform: translateZ(-20px) rotateX(-10deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
        transform: translateZ(-20px) rotateX(0deg);
    }
}
@-webkit-keyframes pp-headline-swirl-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
        transform: translateZ(-20px) rotateX(-100deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
        transform: translateZ(-20px) rotateX(-90deg);
    }
}
@keyframes pp-headline-swirl-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
        transform: translateZ(-20px) rotateX(-100deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
        transform: translateZ(-20px) rotateX(-90deg);
    }
}
.pp-headline-animation-type-slide-down .pp-headline-text-wrapper {
    display: inline-block;
    padding: .2em 0;
}
.pp-headline-animation-type-slide-down .pp-headline-dynamic-wrapper {
    overflow: hidden;
    vertical-align: top;
}
.pp-headline-animation-type-slide-down .pp-headline-dynamic-text {
    opacity: 0;
    top: .2em;
}
.pp-headline-animation-type-slide-down .pp-headline-dynamic-text.pp-headline-text-active {
    top: 0;
    opacity: 1;
    -webkit-animation: pp-headline-slide-down-in .6s;
    animation: pp-headline-slide-down-in .6s;
}
.pp-headline-animation-type-slide-down .pp-headline-dynamic-text.pp-headline-text-inactive {
    -webkit-animation: pp-headline-slide-down-out .6s;
    animation: pp-headline-slide-down-out .6s;
}
@-webkit-keyframes pp-headline-slide-down-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes pp-headline-slide-down-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes pp-headline-slide-down-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        transform: translateY(120%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@keyframes pp-headline-slide-down-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        transform: translateY(120%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
.pp-headline-animation-type-clip .pp-headline-text-wrapper {
    display: inline-block;
    padding: .2em 0;
}
.pp-headline-animation-type-clip .pp-headline-dynamic-wrapper {
    overflow: hidden;
    vertical-align: top;
}
.pp-headline-animation-type-clip .pp-headline-dynamic-wrapper::after {
    /* line */

    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #0d0d0d;
}
.pp-headline-animation-type-clip .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-clip .pp-headline-dynamic-text.pp-headline-text-active {
    opacity: 1;
}
.pp-headline-animation-type-drop-in .pp-headline-dynamic-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px;
}
.pp-headline-animation-type-drop-in .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-drop-in .pp-headline-dynamic-text.pp-headline-text-active {
    opacity: 1;
    -webkit-animation: pp-headline-drop-in-in .8s;
    animation: pp-headline-drop-in-in .8s;
}
.pp-headline-animation-type-drop-in .pp-headline-dynamic-text.pp-headline-text-inactive {
    -webkit-animation: pp-headline-drop-in-out .8s;
    animation: pp-headline-drop-in-out .8s;
}
@-webkit-keyframes pp-headline-drop-in-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
        transform: translateZ(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes pp-headline-drop-in-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
        transform: translateZ(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@-webkit-keyframes pp-headline-drop-in-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
        transform: translateZ(-100px);
    }
}
@keyframes pp-headline-drop-in-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
        transform: translateZ(-100px);
    }
}
.pp-headline-animation-type-blinds .pp-headline-dynamic-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px;
}
.pp-headline-animation-type-blinds .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-blinds .pp-headline-dynamic-letter {
    display: inline-block;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.pp-headline-text-active .pp-headline-animation-type-blinds .pp-headline-dynamic-letter {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.pp-headline-animation-type-blinds .pp-headline-dynamic-letter.pp-headline-animation-in {
    -webkit-animation: pp-headline-blinds-in .6s forwards;
    animation: pp-headline-blinds-in .6s forwards;
}
.pp-headline-animation-type-blinds .pp-headline-dynamic-letter:not(.pp-headline-animation-in) {
    -webkit-animation: pp-headline-blinds-out .6s forwards;
    animation: pp-headline-blinds-out .6s forwards;
}
@-webkit-keyframes pp-headline-blinds-in {
    0% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}
@keyframes pp-headline-blinds-in {
    0% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}
@-webkit-keyframes pp-headline-blinds-out {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }
    100% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}
@keyframes pp-headline-blinds-out {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }
    100% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}
.pp-headline-animation-type-wave .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-wave .pp-headline-dynamic-letter {
    display: inline-block;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.pp-headline-text-active .pp-headline-animation-type-wave .pp-headline-dynamic-letter {
    opacity: 1;
}
.pp-headline-animation-type-wave .pp-headline-dynamic-letter.pp-headline-animation-in {
    -webkit-animation: pp-headline-wave-up .6s forwards;
    animation: pp-headline-wave-up .6s forwards;
}
.pp-headline-animation-type-wave .pp-headline-dynamic-letter:not(.pp-headline-animation-in) {
    -webkit-animation: pp-headline-wave-down .6s forwards;
    animation: pp-headline-wave-down .6s forwards;
}
@-webkit-keyframes pp-headline-wave-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes pp-headline-wave-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@-webkit-keyframes pp-headline-wave-down {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    60% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
}
@keyframes pp-headline-wave-down {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    60% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
}
.pp-headline-animation-type-slide .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-slide .pp-headline-dynamic-text.pp-headline-text-active {
    opacity: 1;
    -webkit-animation: pp-headline-slide-in .6s;
    animation: pp-headline-slide-in .6s;
}
.pp-headline-animation-type-slide .pp-headline-dynamic-text.pp-headline-text-inactive {
    -webkit-animation: pp-headline-slide-out .6s;
    animation: pp-headline-slide-out .6s;
}
@-webkit-keyframes pp-headline-slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes pp-headline-slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes pp-headline-slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
        transform: translateX(110%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@keyframes pp-headline-slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
        transform: translateX(110%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
.fl-node-cz02s3yuhlgw .pp-headline {
	text-align: left;
}
.fl-node-cz02s3yuhlgw .pp-headline,
.fl-node-cz02s3yuhlgw .pp-headline a {
	}
.fl-node-cz02s3yuhlgw .pp-headline-dynamic-wrapper {
	}
.fl-node-cz02s3yuhlgw .pp-headline-dynamic-wrapper.pp-headline-typing-selected {
	}
.fl-node-cz02s3yuhlgw .pp-headline-dynamic-wrapper.pp-headline-typing-selected .pp-headline-dynamic-text {
	}
.fl-node-cz02s3yuhlgw .pp-headline-dynamic-wrapper path {
		}@media(max-width: 768px) {
	.fl-node-cz02s3yuhlgw .pp-headline {
		font-size: 2em;
	}
}
.fl-node-9n7tgpb5irqd .pp-headline {
	text-align: center;
}
.fl-node-9n7tgpb5irqd .pp-headline,
.fl-node-9n7tgpb5irqd .pp-headline a {
	}
.fl-node-9n7tgpb5irqd .pp-headline-dynamic-wrapper {
	}
.fl-node-9n7tgpb5irqd .pp-headline-dynamic-wrapper.pp-headline-typing-selected {
	}
.fl-node-9n7tgpb5irqd .pp-headline-dynamic-wrapper.pp-headline-typing-selected .pp-headline-dynamic-text {
	}
.fl-node-9n7tgpb5irqd .pp-headline-dynamic-wrapper path {
		}.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-zj7pk1c5ihqx.fl-module-heading .fl-heading {
	font-size: 3rem;
	line-height: 1;
}
.fl-module-box:before,
.fl-module-box:after {
	display: none !important;
	content: '';
}
a.fl-module-box {
	text-decoration: none;
}

/* Zero margins for child modules */
.fl-module-box :where( .fl-module ),
.fl-module-box :where( .fl-module-content ) {
	margin: 0;
}
.fl-builder-content-796 .fl-node-sobvhje0u157 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-builder-content-796 .fl-node-biz8f705r3sh {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-builder-content-796 .fl-node-pmcv5wqunrko {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-builder-content-796 .fl-node-pmcv5wqunrko {
		flex-direction: column;
		align-items: center;
		padding-top: 0px;
	}
	:where( .fl-node-pmcv5wqunrko > :not( .fl-block-overlay, .fl-drop-target ) ) {
		padding-top: 0px;
		padding-right: 0px;
		padding-bottom: 0px;
		padding-left: 0px;
	}
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
.fl-builder-content-796 .fl-node-bh0xt2w7gd3c {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-node-7xpdk31g0w5n .pp-headline {
	text-align: ;
}
.fl-node-7xpdk31g0w5n .pp-headline,
.fl-node-7xpdk31g0w5n .pp-headline a {
	}
.fl-node-7xpdk31g0w5n .pp-headline-dynamic-wrapper {
	}
.fl-node-7xpdk31g0w5n .pp-headline-dynamic-wrapper.pp-headline-typing-selected {
	}
.fl-node-7xpdk31g0w5n .pp-headline-dynamic-wrapper.pp-headline-typing-selected .pp-headline-dynamic-text {
	}
.fl-node-7xpdk31g0w5n .pp-headline-dynamic-wrapper path {
		}.fl-node-7xpdk31g0w5n .pp-headline {
	font-family: Heebo, sans-serif;
	font-weight: 700;
	text-align: center;
}
.fl-node-7xpdk31g0w5n .pp-headline-dynamic-wrapper, .fl-node-7xpdk31g0w5n .pp-headline-dynamic-text {
	font-family: Heebo, sans-serif;
	font-weight: 700;
}
.fl-builder-content-796 .fl-node-rj1t7cd536io {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-builder-content-796 .fl-node-4exdg69wu5sh {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.fl-node-mqa7xivf9b2p.fl-module-heading .fl-heading {
	font-size: 3rem;
	line-height: 1;
}
.fl-node-4h8am67ls0iy .pp-headline {
	text-align: center;
}
.fl-node-4h8am67ls0iy .pp-headline,
.fl-node-4h8am67ls0iy .pp-headline a {
	}
.fl-node-4h8am67ls0iy .pp-headline-dynamic-wrapper {
	}
.fl-node-4h8am67ls0iy .pp-headline-dynamic-wrapper.pp-headline-typing-selected {
	}
.fl-node-4h8am67ls0iy .pp-headline-dynamic-wrapper.pp-headline-typing-selected .pp-headline-dynamic-text {
	}
.fl-node-4h8am67ls0iy .pp-headline-dynamic-wrapper path {
		}.fl-node-4h8am67ls0iy .pp-headline {
	font-weight: 700;
	text-transform: uppercase;
}
.fl-builder-content-796 .fl-node-1uqrwzs5pnm9 {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	gap: 10px;
}
@media(max-width: 768px) {
	.fl-builder-content-796 .fl-node-1uqrwzs5pnm9 {
		display: flex;
		flex-direction: column;
		gap: 25px;
	}
}
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-2c9egp6o58qd .fl-photo {
	text-align: center;
}
.fl-node-2c9egp6o58qd .fl-photo-content, .fl-node-2c9egp6o58qd .fl-photo-img {
	width: 100%;
}
.fl-builder-content .fl-node-54t1b6rdvly3 .fl-rich-text, .fl-builder-content .fl-node-54t1b6rdvly3 .fl-rich-text *:not(b, strong) {
	font-family: Heebo, sans-serif;
	font-weight: 500;
}
.pp-photo-container .pp-photo-align-left {
    text-align: left;
}
.pp-photo-container .pp-photo-align-center {
    text-align: center;
}
.pp-photo-container .pp-photo-align-right {
    text-align: right;
}

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

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

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


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

.fl-node-9vp2g4uo7mse .pp-photo-container .pp-photo-content:hover .pp-photo-content-inner {
	}

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

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


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

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

@media only screen and (max-width: 768px) {
	.fl-node-9vp2g4uo7mse .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-9vp2g4uo7mse .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-9vp2g4uo7mse .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-9vp2g4uo7mse .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-9vp2g4uo7mse .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-9vp2g4uo7mse .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
	width: 100px;
}
.fl-node-9vp2g4uo7mse .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-builder-content-796 .fl-node-3j9vbo8w5mup {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.fl-builder-content-796 .fl-node-zktncjy95bw6 {
	display: flex;
	flex-direction: row;
	gap: 10px;
	width: 60%;
}
@media(max-width: 768px) {
	.fl-builder-content-796 .fl-node-zktncjy95bw6 {
		width: 100%;
	}
}
.fl-builder-content-796 .fl-node-jxtz7cs6mkq3 {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 70%;
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }.fl-node-fe6imgodkywx .fl-icon i,
.fl-node-fe6imgodkywx .fl-icon i:before {
	color: #00e2b5;
}




.fl-node-fe6imgodkywx .fl-icon i, .fl-node-fe6imgodkywx .fl-icon i:before {
	font-size: 2.2em;
}
.fl-node-fe6imgodkywx .fl-icon-wrap .fl-icon-text {
	height: 3.85em;
}
.fl-node-fe6imgodkywx.fl-module-icon {
	text-align: left;
}
@media(max-width: 1200px) {
	.fl-node-fe6imgodkywx .fl-icon-wrap .fl-icon-text {
		height: 3.85px;
	}
}
@media(max-width: 992px) {
	.fl-node-fe6imgodkywx .fl-icon-wrap .fl-icon-text {
		height: 3.85px;
	}
}
@media(max-width: 768px) {
	.fl-node-fe6imgodkywx .fl-icon-wrap .fl-icon-text {
		height: 3.85px;
	}
}
.fl-node-3sj1navhdwlf .pp-headline {
	text-align: left;
}
.fl-node-3sj1navhdwlf .pp-headline,
.fl-node-3sj1navhdwlf .pp-headline a {
	}
.fl-node-3sj1navhdwlf .pp-headline-dynamic-wrapper {
	}
.fl-node-3sj1navhdwlf .pp-headline-dynamic-wrapper.pp-headline-typing-selected {
	}
.fl-node-3sj1navhdwlf .pp-headline-dynamic-wrapper.pp-headline-typing-selected .pp-headline-dynamic-text {
	}
.fl-node-3sj1navhdwlf .pp-headline-dynamic-wrapper path {
		}.fl-node-3sj1navhdwlf .pp-headline {
	text-align: center;
}
.fl-builder-content-796 .fl-node-suhc3wf961oz {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 10px;
}
.fl-node-z5sdlxr17h2f .fl-photo {
	text-align: center;
}
.fl-node-n7xu0p59y6w3.fl-module-heading .fl-heading {
	font-size: 3rem;
	line-height: 1;
}
@media(max-width: 1200px) {
	.fl-node-n7xu0p59y6w3.fl-module-heading .fl-heading {
		font-size: 35px;
	}
}
.fl-node-zsx3mwyjh9pc .fl-icon i,
.fl-node-zsx3mwyjh9pc .fl-icon i:before {
	color: #ff0000;
}




.fl-node-zsx3mwyjh9pc .fl-icon i, .fl-node-zsx3mwyjh9pc .fl-icon i:before {
	font-size: 2.2em;
}
.fl-node-zsx3mwyjh9pc .fl-icon-wrap .fl-icon-text {
	height: 3.85em;
}
.fl-node-zsx3mwyjh9pc.fl-module-icon {
	text-align: left;
}
@media(max-width: 1200px) {
	.fl-node-zsx3mwyjh9pc .fl-icon-wrap .fl-icon-text {
		height: 3.85px;
	}
}
@media(max-width: 992px) {
	.fl-node-zsx3mwyjh9pc .fl-icon-wrap .fl-icon-text {
		height: 3.85px;
	}
}
@media(max-width: 768px) {
	.fl-node-zsx3mwyjh9pc .fl-icon-wrap .fl-icon-text {
		height: 3.85px;
	}
}
.fl-node-nbpqmv928fd4 .fl-icon i,
.fl-node-nbpqmv928fd4 .fl-icon i:before {
	color: #00ff04;
}




.fl-node-nbpqmv928fd4 .fl-icon i, .fl-node-nbpqmv928fd4 .fl-icon i:before {
	font-size: 75px;
}
.fl-node-nbpqmv928fd4 .fl-icon-wrap .fl-icon-text {
	height: 131.25px;
}
.fl-node-nbpqmv928fd4.fl-module-icon {
	text-align: left;
}
@media(max-width: 1200px) {
	.fl-node-nbpqmv928fd4 .fl-icon-wrap .fl-icon-text {
		height: 131.25px;
	}
}
@media(max-width: 992px) {
	.fl-node-nbpqmv928fd4 .fl-icon-wrap .fl-icon-text {
		height: 131.25px;
	}
}
@media(max-width: 768px) {
	.fl-node-nbpqmv928fd4 .fl-icon-wrap .fl-icon-text {
		height: 131.25px;
	}
}
.fl-builder-content-796 .fl-node-kbui07fn14e3 {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 30px;
	background-color: #ffe9e8;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-builder-content-796 .fl-node-kbui07fn14e3 {
		display: flex;
	}
}
.fl-node-xy51qhvsifwn.fl-module-heading .fl-heading {
	font-size: 3em;
	line-height: 1;
}
@media(max-width: 1200px) {
	.fl-node-xy51qhvsifwn.fl-module-heading .fl-heading {
		font-size: 35px;
	}
}
.fl-node-e4c2z6qlhgun .fl-icon i,
.fl-node-e4c2z6qlhgun .fl-icon i:before {
	color: #ed6200;
}




.fl-node-e4c2z6qlhgun .fl-icon i, .fl-node-e4c2z6qlhgun .fl-icon i:before {
	font-size: 2.2em;
}
.fl-node-e4c2z6qlhgun .fl-icon-wrap .fl-icon-text {
	height: 3.85em;
}
.fl-node-e4c2z6qlhgun.fl-module-icon {
	text-align: left;
}
@media(max-width: 1200px) {
	.fl-node-e4c2z6qlhgun .fl-icon-wrap .fl-icon-text {
		height: 3.85px;
	}
}
@media(max-width: 992px) {
	.fl-node-e4c2z6qlhgun .fl-icon-wrap .fl-icon-text {
		height: 3.85px;
	}
}
@media(max-width: 768px) {
	.fl-node-e4c2z6qlhgun .fl-icon-wrap .fl-icon-text {
		height: 3.85px;
	}
}
.fl-builder-content-796 .fl-node-9y2td738qa0p {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}
@media(max-width: 768px) {
	.fl-builder-content-796 .fl-node-9y2td738qa0p {
		flex-direction: column-reverse;
	}
}
 .fl-node-9y2td738qa0p.fl-module-box {
	margin-top:-50px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-9y2td738qa0p.fl-module-box { margin-top:20px; } }.fl-builder-content .fl-node-mi68ou7rawgt .fl-rich-text, .fl-builder-content .fl-node-mi68ou7rawgt .fl-rich-text *:not(b, strong) {
	line-height: .5;
}
.fl-builder-content-796 .fl-node-04nzeph1wjmb {
	display: flex;
	flex-direction: row;
	gap: 10px;
}
.fl-builder-content-796 .fl-node-8yekcjg6pshx {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.fl-builder-content-796 .fl-node-5bvapcmlfqh7 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
 .fl-node-5bvapcmlfqh7.fl-module-box {
	margin-top:-10%;
}
@media (max-width: 768px) { .fl-node-5bvapcmlfqh7.fl-module-box { margin-top:20px; } }.fl-builder-content-796 .fl-node-5rjkedz6xyn9 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0px;
	padding-top: 50px;
	padding-right: 50px;
	padding-bottom: 50px;
	padding-left: 50px;
	background-color: #e8ffe9;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
@media(max-width: 768px) {
	.fl-builder-content-796 .fl-node-5rjkedz6xyn9 {
		padding-top: 20px;
		padding-right: 20px;
		padding-bottom: 20px;
		padding-left: 20px;
	}
}
 .fl-node-5rjkedz6xyn9.fl-module-box {
	margin-top:65px;
}
@media (max-width: 768px) { .fl-node-5rjkedz6xyn9.fl-module-box { margin-top:20px; } }













.fl-node-2osdzhqk6r1y .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-jakw1plfhge6 .fl-rich-text, .fl-builder-content .fl-node-jakw1plfhge6 .fl-rich-text *:not(b, strong) {
	text-align: center;
}
/* Post Slider */

/* Wrappers */
body.rtl .fl-module-post-carousel .bx-viewport {
	direction: ltr;
}
body.rtl .fl-post-carousel-post {
	direction: rtl;
}
.fl-module-post-carousel .bx-wrapper {
	max-width: 100% !important;
	margin: 0 auto 40px;
}
.fl-module-post-carousel .bx-controls {
	width: 100%;
	position: absolute;
	bottom: 0;
	margin-top: 20px;
}

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

.fl-post-carousel-navigation .carousel-prev{ left: 0; }
.fl-post-carousel-navigation .carousel-next{ right: 0; }

.fl-post-carousel-navigation .fl-post-carousel-svg-container{
	position: relative;
	width: 32px;
	height: 32px;
}
.fl-post-carousel-navigation svg{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.fl-post-carousel-navigation path{ fill: #fff; }

.fl-post-carousel-navigation a.disabled,
.bx-controls a.disabled {
	pointer-events: none;
}

/*Module styles =======================================*/

/* Post Carousel */
.fl-post-carousel {
	margin: 0 auto;
	position: relative;
}

.fl-post-carousel-wrapper:before,
.fl-post-carousel-wrapper:after {
	content: '';
	display: table;
}
.fl-post-carousel-wrapper:after {
	clear: both;
}

.fl-post-carousel-post {
	position: absolute;
	top: 0;
	float: left;
	visibility: hidden;
	background: #fff;
}

.fl-post-carousel-loaded .fl-post-carousel-post {
	position: relative;
	visibility: visible;
	margin: 0;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}

.fl-post-carousel-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-post-carousel-image .fl-photo-content {
	display: block;
}

/* Layout - post grid */
.fl-post-carousel-post {
	border: 1px solid #e6e6e6;
	border: 1px solid rgba(0,0,0,0.1);
}
.fl-post-carousel-text {
	padding: 20px;
}
.fl-post-carousel-title {
	padding-bottom: 7px;
}
.fl-post-carousel-content {
	font-size: 14px;
	line-height: 22px;
}
.fl-post-carousel-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
.fl-post-carousel-title {
	font-size: 20px;
	line-height: 26px;
	margin: 0 0 10px;
	padding: 0;
}
.fl-post-carousel-meta {
	font-size: 14px;
	margin: 0 0 10px;
	padding: 0;
}

/* Layout - post gallery */

.fl-post-carousel-gallery .fl-post-carousel-link {
	display: block;
	height: 100%;
	text-decoration: none;
}
.fl-post-carousel-gallery .fl-post-carousel-img {
	position: relative;
	z-index: 1;
}

.fl-post-carousel-gallery .fl-post-carousel-text-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	text-align: center;
	opacity: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}
.fl-post-carousel-gallery .fl-post-no-crop .fl-post-carousel-text-wrap,
.fl-post-carousel-gallery .fl-post-no-crop .fl-post-carousel-text{
	position: relative;
	padding: 20px;
	top: 0;
	left: 0;
	-webkit-transform: none;
	   -moz-transform: none;
	    -ms-transform: none;
	        transform: none;
}

.fl-post-carousel-gallery .fl-post-carousel-link:hover .fl-post-carousel-text-wrap,
.fl-post-carousel-gallery .fl-post-carousel-post.fl-post-no-thumb .fl-post-carousel-text-wrap {
	opacity: 1;
}

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

.fl-post-carousel-gallery .fl-post-carousel-title {
	margin: 0 0 5px 0;
}

/* slide ratio - for slides with no thumb */
.fl-post-carousel-gallery .fl-post-carousel-ratio{
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}
.fl-post-carousel-gallery .fl-post-carousel-ratio{ padding-bottom: 70%; }

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

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

/* Common Styles */
body .fl-post-carousel-text a {
	text-decoration: none;
}

	.fl-node-iwp48ruhn7qg .fl-post-carousel-wrapper{
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		height: 100%;
	}

	

.fl-node-iwp48ruhn7qg .fl-post-carousel .fl-post-carousel-post {
	width: 33.33%;
}

.fl-node-iwp48ruhn7qg .fl-post-carousel .fl-post-carousel-post:nth-child(-n+3) {
	position: relative;
}



	.fl-builder-content .fl-node-iwp48ruhn7qg .fl-post-carousel-post{
		background-color: #ffffff;
	}




.fl-node-iwp48ruhn7qg .fl-post-carousel-meta a {
	color: #cccccc;
}
.fl-node-iwp48ruhn7qg .fl-post-carousel-meta a:hover {
	color: #ffffff;
}
.fl-builder-content .fl-node-h3aoplxniu2d .fl-rich-text, .fl-builder-content .fl-node-h3aoplxniu2d .fl-rich-text *:not(b, strong) {
	font-family: Heebo, sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	line-height: 1;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-h3aoplxniu2d .fl-rich-text, .fl-builder-content .fl-node-h3aoplxniu2d .fl-rich-text *:not(b, strong) {
		font-size: 25px;
	}
}
.fl-builder-content-796 .fl-node-w6tvhs1u43gq {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.fl-builder-content .fl-node-9owk70at4esb .fl-rich-text, .fl-builder-content .fl-node-9owk70at4esb .fl-rich-text *:not(b, strong) {
	font-family: Heebo, sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	line-height: 1;
}
.fl-builder-content .fl-node-rfdsb4gy8p63 .fl-rich-text, .fl-builder-content .fl-node-rfdsb4gy8p63 .fl-rich-text *:not(b, strong) {
	font-family: Heebo, sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
}
/* ---------------------------------- */
/* Container */
/* ---------------------------------- */

.pp-card-slider-container .pp-card-slider {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content:center;
    width: 100%;
    position: relative;
    max-width: 800px;
    margin: auto;
    background: #fff;
    box-shadow: 0 14px 80px rgba(34,35,58,.2);
    padding: 25px;
	border-radius: 25px;
	opacity: 0;
    transition: all .3s;
}
.pp-card-slider-container .pp-card-slider.pp-card-slider-initialized {
	opacity: 1;
}

/* ---------------------------------- */
/* Swiper Container */
/* ---------------------------------- */
.pp-card-slider-container .pp-card-slider-item,
.pp-card-slider-container .swiper-slide {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content:center;
}

/* ---------------------------------- */
/* Links */
/* ---------------------------------- */

.pp-card-slider-container .pp-card-slider-box-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    z-index: 11;
}

.pp-card-slider-container .pp-card-slider-image a:not[data-has-lightbox] {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pp-card-slider-container .pp-card-slider-image a[data-has-lightbox] {
	text-decoration: none !important;
	border: 0 !important;
}

/* ---------------------------------- */
/* Image */
/* ---------------------------------- */

.pp-card-slider-container .pp-card-slider-image {
    width: 300px;
    flex-shrink: 0;
    height: 300px;
    border-radius: 20px;
    margin-left: -80px;
    margin-right: 40px;
    position: relative;
}

.pp-card-slider-container .pp-card-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    border-radius: 20px;
    transition: all .3s;
}

.pp-card-slider-container .pp-card-slider-image:not(.has-lightbox):after,
.pp-card-slider-container .pp-card-slider-image.has-lightbox a:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	opacity: .8;
}

/* ---------------------------------- */
/* Content Container */
/* ---------------------------------- */
.pp-card-slider-container .pp-card-slider-content-wrap {
	display: flex;
	flex-direction: column;
	padding-right: 30px;
	margin: 0 20px;
}

/* ---------------------------------- */
/* Title */
/* ---------------------------------- */
.pp-card-slider-container .pp-card-slider-title {
	order: 1;
	margin: 10px 0;
}

/* ---------------------------------- */
/* Meta*/
/* ---------------------------------- */
.pp-card-slider-container .pp-card-slider-meta {
	order: 2;
}

.pp-card-slider-container .pp-card-slider-meta-icon {
	margin-right: 5px;
}

/* ---------------------------------- */
/* Excerpt */
/* ---------------------------------- */
.pp-card-slider-container .pp-card-slider-content {
	order: 3;
}

/* ---------------------------------- */
/* Card Button */
/* ---------------------------------- */
.pp-card-slider-container .pp-card-slider-button {
    display: inline-flex;
    padding: 15px 35px;
    border-radius: 50px;
	color: #fff;
	background-color: #333;
    text-decoration: none;
    font-weight: 500;
    justify-content: center;
    text-align: center;
	letter-spacing: 1px;
}

.pp-card-slider-container .pp-card-slider-button-wrap {
	order: 4;
	margin-top: 10px;
	margin-bottom: 20px;
}

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

.pp-card-slider-container .swiper-pagination-bullet {
	width: 11px;
	height: 11px;
	border-radius: 10px;
	margin: 8px 0;
}

.pp-card-slider-container .swiper-container-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 30px;
}

.pp-card-slider-container .swiper-container-vertical .swiper-pagination-bullet.swiper-pagination-bullet-active {
	height: 30px;
}
.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider {

	
}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider:hover {

	
}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-title, 
.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-title a {

	
	
}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-title:hover, 
.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-title a:hover {

	
}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-content {

	
}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-content:hover {

	
}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-meta {

		
}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-meta:hover {

	
}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-image:not(.has-lightbox):after,
.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-image.has-lightbox:after {

	}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-button {

			color: #000000;
				background-color: #aaf26f;
				height: auto;
	}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-button:hover {

	
			background-color: #e8ffe9;
	}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .swiper-pagination-bullet {

		transition: all 0.4s ease;
}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .swiper-pagination-bullet:hover {

	}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .swiper-container-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: calc( px + 30px );
}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .swiper-container-vertical .swiper-pagination-bullet.swiper-pagination-bullet-active {
	height: calc( px + 30px );
}

.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-image {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 300px;
	height: 300px;
}
.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-title, .fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-title a {
	font-family: Heebo, sans-serif;
	font-weight: 700;
	text-align: center;
}
.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-button {
	font-family: Heebo, sans-serif;
	font-weight: 700;
	width: 100%;
}
@media(max-width: 768px) {
	.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-item, .fl-node-bs0lc6h2mpky .pp-card-slider-container .swiper-slide {
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-content-wrap {
		margin: 10px 0;
		padding: 10px 20px;
	}
	.fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-title, .fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-meta, .fl-node-bs0lc6h2mpky .pp-card-slider-container .pp-card-slider-content {
		text-align: center;
	}
}
.fl-builder-content-796 .fl-node-b7mv659f041o {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 30px;
	background-color: #e8ffee;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.fl-builder-content-796 .fl-node-ywqakxgvhd3m {
	display: flex;
	flex-direction: column;
	gap: 5px;
}














.fl-node-e691dfyswxn0 .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-e691dfyswxn0 a.fl-button, .fl-builder-content .fl-node-e691dfyswxn0 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-e691dfyswxn0 a.fl-button, .fl-page .fl-builder-content .fl-node-e691dfyswxn0 a.fl-button:visited {
	background-color: #ffffff;
}
.fl-builder-content .fl-node-e691dfyswxn0 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-e691dfyswxn0 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-e691dfyswxn0 a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-e691dfyswxn0 a.fl-button:hover {
	background-color: #f7fff7;
}
.fl-builder-content-796 .fl-node-i0cb94oew3k8 {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.fl-builder-content .fl-node-y9xzrj6d7i80 .fl-rich-text, .fl-builder-content .fl-node-y9xzrj6d7i80 .fl-rich-text *:not(b, strong) {
	text-align: center;
}
.fl-builder-content .fl-node-9rvmfx6tb40l .fl-rich-text, .fl-builder-content .fl-node-9rvmfx6tb40l .fl-rich-text *:not(b, strong) {
	font-family: Heebo, sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	line-height: 1;
}
/**
 * Horizontal Layout
 */

.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 {
    display: block;
}

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

.fl-node-odx8kcrns35e .fl-button-group-layout-vertical .fl-button-group-buttons a.fl-button,
.fl-node-odx8kcrns35e .fl-button-group-layout-horizontal .fl-button-group-buttons a.fl-button {
	width: 300px;
}

.fl-node-odx8kcrns35e .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: flex-start}




	#fl-button-group-button-odx8kcrns35e-0 a.fl-button {
									background: #f7fff7;
			border: 1px solid #ebf3eb;		
			}

			#fl-button-group-button-odx8kcrns35e-0 a.fl-button:hover,
		#fl-button-group-button-odx8kcrns35e-0 a.fl-button:focus {
			background: #e8ffe9;
					}
			.fl-builder-content .fl-node-odx8kcrns35e .fl-button,
	.fl-builder-content .fl-node-odx8kcrns35e .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-odx8kcrns35e .fl-button-group-layout-vertical .fl-button-group-button .fl-button-wrap {
	text-align: left;
}
.fl-node-odx8kcrns35e .fl-button-group-layout-horizontal .fl-button-group-buttons {
	justify-content: flex-start;
}
.fl-builder-content .fl-node-odx8kcrns35e .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-odx8kcrns35e .fl-button-group .fl-button-group-buttons .fl-button-group-button a.fl-button {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
#fl-button-group-button-odx8kcrns35e-0 a.fl-button {
	background-image: radial-gradient(at left bottom, #8ddad3 10%, #aaf26f 100%);
}
#fl-button-group-button-odx8kcrns35e-0 a.fl-button:hover {
	background-image: radial-gradient(at left bottom, #aaf26f 0%, #8ddad3 100%);
}














.fl-node-orlvz456ucxn .fl-button-wrap {
	text-align: left;
}
.fl-builder-content-796 .fl-node-bi8q76kma1vn {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 30px;
	background-color: #fff3e8;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
/*  Labels
------------------------------------ */
.fl-tabs-label {
	cursor: pointer;
}
a.fl-tabs-label {
	display: block;
}
.fl-tabs-label {
	padding: 12px 18px;
}
.fl-tabs-label.fl-tab-active {
	background: #fff;
	position: relative;
	z-index: 1;
}
.fl-tabs-label.fl-tab-active:focus {
	outline: 0;
}
.fl-tabs-labels .fl-tabs-label:active,
.fl-tabs-labels .fl-tabs-label:focus,
.fl-tabs-labels .fl-tabs-label:hover {
	text-decoration: none;
}

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

.fl-tabs-panel-label {
	display: none;
}
.fl-tabs-panel-label span {
	display: table-cell;
	width: 100%;
}
.fl-tabs-panel-label .fa {
	display: table-cell;
	line-height: inherit;
	opacity: .5;
	padding-left: 15px;
	vertical-align: middle;
}

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

.fl-tabs-panels {
	background: #fff;
	border-width: 1px;
	border-style: solid;
}

.fl-tabs-panel-content {
	display: none;
	padding: 18px;
}
.fl-tabs-panel-content.fl-tab-active {
	display: block;
}
.fl-tabs-panel-content p:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

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

.fl-tabs-horizontal .fl-tabs-label {
	float: left;
}
.fl-tabs-horizontal .fl-tabs-labels .fl-tabs-label {
	border: 1px solid transparent;
	border-bottom: none;
}
.fl-tabs-horizontal .fl-tabs-label.fl-tab-active {
	border-width: 1px;
	border-style: solid;
	border-bottom: none !important;
}
.fl-tabs-horizontal .fl-tabs-label.fl-tab-active:after {
	content: '';
	background: inherit;
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -1px;
	left: 0;
}

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

.fl-tabs-vertical .fl-tabs-labels {
	float: left;
	width: 30%;
}
.fl-tabs-vertical .fl-tabs-labels .fl-tabs-label {
	border: 1px solid transparent;
	border-right: none;
}
.fl-tabs-vertical .fl-tabs-label.fl-tab-active {
	border-width: 1px;
	border-style: solid;
	border-right: none !important;
}
.fl-tabs-vertical .fl-tabs-label.fl-tab-active:after {
	content: '';
	background: inherit;
	display: block;
	width: 1px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: -1px;
}
.fl-tabs-vertical .fl-tabs-panels {
	float: left;
	width: 70%;
}
@media (max-width: 768px) { /*  Labels
------------------------------------ */

.fl-tabs-labels {
	display: none;
}
.fl-tabs-label.fl-tab-active {
	position: static;
}

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

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

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

.fl-tabs-panel {
	border-bottom-style: solid;
	border-bottom-width: 1px;
}
.fl-tabs-panel:last-child {
	border-bottom: none;
}
.fl-tabs-panel-content {
	padding: 0 15px 15px 15px;
}

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

.fl-tabs-horizontal .fl-tabs-label {
	float: none;
}
.fl-tabs-horizontal .fl-tabs-label.fl-tab-active {
	border: none;
	padding: 10px 15px;
}

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

.fl-tabs-vertical .fl-tabs-labels {
	float: none;
	width: auto;
}
.fl-tabs-vertical .fl-tabs-label.fl-tab-active {
	border: none;
	padding: 10px 15px;
}
.fl-tabs-vertical .fl-tabs-panels {
	float: none;
	width: auto;
}
 }.fl-node-s2lhepx0o87c .fl-tabs-panels, .fl-node-s2lhepx0o87c .fl-tabs-label.fl-tab-active {
	background-color: #f7fff7;
}
.fl-node-s2lhepx0o87c .fl-tabs-labels .fl-tabs-label {
	border-width: .2px;
}
.fl-node-s2lhepx0o87c .fl-tabs .fl-tabs-labels .fl-tabs-label.fl-tab-active {
	border-color: #aaf26f;
	border-width: .2px;
}
.fl-node-s2lhepx0o87c .fl-tabs-horizontal .fl-tabs-labels .fl-tabs-label.fl-tab-active:after {
	bottom: -0.2px;
	height: .2px;
}
.fl-node-s2lhepx0o87c .fl-tabs-vertical .fl-tabs-labels .fl-tabs-label.fl-tab-active:after {
	right: -0.2px;
	width: .2px;
}
.fl-node-s2lhepx0o87c .fl-tabs-panels, .fl-node-s2lhepx0o87c .fl-tabs-panel {
	border-color: #aaf26f;
	border-width: .2px;
}
.fl-builder-content-796 .fl-node-q1h4ovs6e3cn {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 30px;
	background-color: #e8fffd;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */


                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-pk3jgse18lf0 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-pv3s9f2kmgby .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-8gvbi9nxulhy .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-t5k2hwjx96zu .fl-row-content {
				min-width: 0px;
			}
		
        
        
        			.fl-node-bmcwpf0stx96 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-hoj62urdwn4e .fl-row-content {
				min-width: 0px;
			}
		