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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
:root {
	--fl-global-pistazie: #d1dd7d;
	--fl-global-limoncello: #efff93;
	--fl-global-mango: #efb13d;
	--fl-global-aubergine: #2d001c;
	--fl-global-olive: #988326;
	--fl-global-espresso-66: #5f4a13;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }




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

	.fl-builder-edit .fl-node-wtfi9qc352jy.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-wtfi9qc352jy.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-wtfi9qc352jy.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-wtfi9qc352jy.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-wtfi9qc352jy > .fl-row-content-wrap {
	background-image: url(https://cctest.diktum.website/wp-content/uploads/2024/11/Startseite_QF_Desktop.jpg);
	background-repeat: no-repeat;
	background-position: 80% 0%;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-wtfi9qc352jy.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 75vh;
}
@media(max-width: 1200px) {
	.fl-node-wtfi9qc352jy > .fl-row-content-wrap {
		background-position: right center;
	}
}
@media(max-width: 992px) {
	.fl-node-wtfi9qc352jy > .fl-row-content-wrap {
		background-position: 25% 0%;
	}
}
@media(max-width: 768px) {
	.fl-node-wtfi9qc352jy > .fl-row-content-wrap {
		background-image: url(https://cctest.diktum.website/wp-content/uploads/2024/11/Startseite_HF_Mobile.jpg);
		background-position: 0% 0%;
	}
}
 .fl-node-wtfi9qc352jy > .fl-row-content-wrap {
	padding-top:5vw;
	padding-right:0vw;
	padding-bottom:5vw;
	padding-left:0vw;
}
.fl-node-jo3hwratipze {
	color: #000000;
}
.fl-builder-content .fl-node-jo3hwratipze *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-jo3hwratipze a {
	color: #000000;
}

.fl-builder-content .fl-node-jo3hwratipze a:hover {
	color: #000000;
}

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


.fl-node-jo3hwratipze > .fl-row-content-wrap {
	background-color: #ffffff;
}
 .fl-node-jo3hwratipze > .fl-row-content-wrap {
	padding-top:89px;
	padding-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-jo3hwratipze.fl-row > .fl-row-content-wrap {
	padding-top:65px;
	padding-bottom:65px;
}
}





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





 .fl-node-6qwf54k7txeh > .fl-row-content-wrap {
	margin-bottom:0px;
}





 .fl-node-unr8zvbw1i3g > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:89px;
}
.fl-node-8vkcdfeb175i {
	color: #000000;
}
.fl-builder-content .fl-node-8vkcdfeb175i *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-8vkcdfeb175i a {
	color: #000000;
}

.fl-builder-content .fl-node-8vkcdfeb175i a:hover {
	color: #000000;
}

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


.fl-node-8vkcdfeb175i > .fl-row-content-wrap {
	background-color: #ffffff;
}
 .fl-node-8vkcdfeb175i > .fl-row-content-wrap {
	padding-top:89px;
	padding-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-8vkcdfeb175i.fl-row > .fl-row-content-wrap {
	padding-top:65px;
	padding-bottom:65px;
}
}
.fl-node-y0hwa32ivg75 {
	color: #ffffff;
}
.fl-builder-content .fl-node-y0hwa32ivg75 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

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

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

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


.fl-node-y0hwa32ivg75 > .fl-row-content-wrap {
	background-color: var(--fl-global-aubergine);
}
 .fl-node-y0hwa32ivg75 > .fl-row-content-wrap {
	padding-top:55px;
	padding-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-y0hwa32ivg75.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-bottom:65px;
}
}
.fl-node-cklfa8in6sbd {
	color: #000000;
}
.fl-builder-content .fl-node-cklfa8in6sbd *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-cklfa8in6sbd a {
	color: #000000;
}

.fl-builder-content .fl-node-cklfa8in6sbd a:hover {
	color: #000000;
}

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


.fl-node-cklfa8in6sbd > .fl-row-content-wrap {
	background-color: #ffffff;
}
 .fl-node-cklfa8in6sbd > .fl-row-content-wrap {
	padding-top:89px;
	padding-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-cklfa8in6sbd.fl-row > .fl-row-content-wrap {
	padding-top:65px;
	padding-bottom:65px;
}
}
.fl-node-305wv8hbleq2 {
	color: #000000;
}
.fl-builder-content .fl-node-305wv8hbleq2 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-305wv8hbleq2 a {
	color: #000000;
}

.fl-builder-content .fl-node-305wv8hbleq2 a:hover {
	color: #000000;
}

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


.fl-node-305wv8hbleq2 > .fl-row-content-wrap {
	background-color: var(--fl-global-mango);
}
 .fl-node-305wv8hbleq2 > .fl-row-content-wrap {
	padding-top:89px;
	padding-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-305wv8hbleq2.fl-row > .fl-row-content-wrap {
	padding-top:65px;
	padding-bottom:65px;
}
}





.fl-node-g7nuj0t3slkv .fl-row-content {
	max-width: 1100px;
}
 .fl-node-g7nuj0t3slkv > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:64px;
}
.fl-node-2dakerb6nqvl {
	color: #000000;
}
.fl-builder-content .fl-node-2dakerb6nqvl *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-2dakerb6nqvl a {
	color: #000000;
}

.fl-builder-content .fl-node-2dakerb6nqvl a:hover {
	color: #000000;
}

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


.fl-node-2dakerb6nqvl > .fl-row-content-wrap {
	background-color: #ffffff;
}
 .fl-node-2dakerb6nqvl > .fl-row-content-wrap {
	padding-top:89px;
	padding-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-2dakerb6nqvl.fl-row > .fl-row-content-wrap {
	padding-top:65px;
	padding-bottom:65px;
}
}
.fl-node-xa536plyhz92 {
	color: #ffffff;
}
.fl-builder-content .fl-node-xa536plyhz92 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

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

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

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


.fl-node-xa536plyhz92 > .fl-row-content-wrap {
	background-color: var(--fl-global-aubergine);
}
 .fl-node-xa536plyhz92 > .fl-row-content-wrap {
	padding-top:69px;
	padding-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-xa536plyhz92.fl-row > .fl-row-content-wrap {
	padding-top:45px;
	padding-bottom:65px;
}
}
.fl-node-x361dnwjrit2 {
	color: #ffffff;
}
.fl-builder-content .fl-node-x361dnwjrit2 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

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

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

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


.fl-node-x361dnwjrit2 > .fl-row-content-wrap {
	background-color: var(--fl-global-aubergine);
}
 .fl-node-x361dnwjrit2 > .fl-row-content-wrap {
	padding-top:69px;
	padding-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-x361dnwjrit2.fl-row > .fl-row-content-wrap {
	padding-top:45px;
	padding-bottom:65px;
}
}
.fl-node-wjhackvg0npl {
	color: #000000;
}
.fl-builder-content .fl-node-wjhackvg0npl *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-wjhackvg0npl a {
	color: #000000;
}

.fl-builder-content .fl-node-wjhackvg0npl a:hover {
	color: #000000;
}

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


.fl-node-wjhackvg0npl > .fl-row-content-wrap {
	background-color: #ffffff;
}
.fl-node-wjhackvg0npl .fl-row-content {
	max-width: 1120px;
}
 .fl-node-wjhackvg0npl > .fl-row-content-wrap {
	padding-top:80px;
	padding-bottom:89px;
}
.fl-node-5x8pwy3oi2e0 {
	color: #ffffff;
}
.fl-builder-content .fl-node-5x8pwy3oi2e0 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

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

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

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


.fl-node-5x8pwy3oi2e0 > .fl-row-content-wrap {
	background-color: var(--fl-global-aubergine);
}
 .fl-node-5x8pwy3oi2e0 > .fl-row-content-wrap {
	padding-top:89px;
	padding-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-5x8pwy3oi2e0.fl-row > .fl-row-content-wrap {
	padding-top:65px;
	padding-bottom:65px;
}
}
.fl-node-yqjpzd59grik {
	color: #000000;
}
.fl-builder-content .fl-node-yqjpzd59grik *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-yqjpzd59grik a {
	color: #000000;
}

.fl-builder-content .fl-node-yqjpzd59grik a:hover {
	color: #000000;
}

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


.fl-node-yqjpzd59grik > .fl-row-content-wrap {
	background-color: #ffffff;
}
 .fl-node-yqjpzd59grik > .fl-row-content-wrap {
	padding-top:89px;
	padding-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-yqjpzd59grik.fl-row > .fl-row-content-wrap {
	padding-top:65px;
	padding-bottom:65px;
}
}




.fl-node-4g0zxuyjtpso {
	width: 100%;
}
 .fl-node-4g0zxuyjtpso > .fl-col-content {
	margin-top:0px;
}




.fl-node-9admbzsj8i5f {
	width: 50%;
}
 .fl-node-9admbzsj8i5f > .fl-col-content {
	margin-top:0px;
}




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




.fl-node-jt7w48fxm650 {
	width: 25.03%;
}




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




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




.fl-node-cxrqgikum46w {
	width: 8%;
}




.fl-node-h2c8p6m0itjw {
	width: 25.03%;
}




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




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




.fl-node-ue1cqs0w7hv5 {
	width: 25.04%;
}




.fl-node-6cq1wdja3kv8 {
	width: 25.03%;
}




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




.fl-node-nachidfkq049 {
	width: 50%;
}
@media ( max-width: 768px ) {
 .fl-node-nachidfkq049.fl-col > .fl-col-content {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-nachidfkq049.fl-col > .fl-col-content {
	padding-top:0px;
}
}




.fl-node-94mnfavoh6bj {
	width: 100%;
}




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




.fl-node-7jyw0cordlzt {
	width: 25.03%;
}




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




.fl-node-85ac7u1bn4k9 {
	width: 25.04%;
}




.fl-node-l7kmc15ne30y {
	width: 25.03%;
}




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




.fl-node-9t02cdgofxqr {
	width: 50%;
}




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




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




.fl-node-vc67h0lbm5yg {
	width: 8%;
}




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




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




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




.fl-node-kmsyt4wpxj7l {
	width: 25.03%;
}




.fl-node-xjgl5ce9p0qd {
	width: 100%;
}
 .fl-node-xjgl5ce9p0qd > .fl-col-content {
	margin-top:0px;
}




.fl-node-02bwvnysj7ih {
	width: 100%;
}




.fl-node-pif7mo5vbksg {
	width: 25.03%;
}




.fl-node-2rkz0384fngt {
	width: 100%;
}




.fl-node-401c5onhkrs6 {
	width: 50%;
}




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




.fl-node-ay7egnu5dc0v {
	width: 50%;
}
@media ( max-width: 768px ) {
 .fl-node-ay7egnu5dc0v.fl-col > .fl-col-content {
	margin-top:0px;
	margin-bottom:0px;
}
}




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




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




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




.fl-node-k5jun764atsy {
	width: 100%;
}
 .fl-node-k5jun764atsy > .fl-col-content {
	margin-top:0px;
}




.fl-node-d5v8bm0lecpy {
	width: 50%;
}
 .fl-node-d5v8bm0lecpy > .fl-col-content {
	margin-top:0px;
}




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




.fl-node-5lxmd2st7190 {
	width: 20%;
}




.fl-node-of59g12dh8sv {
	width: 20%;
}

.fl-builder-content .fl-node-ojml59n42iwt a {
	color: #000000;
}

.fl-builder-content .fl-node-ojml59n42iwt a:hover {
	color: #000000;
}


.fl-node-ojml59n42iwt {
	width: 43%;
}
.fl-builder-content .fl-node-ojml59n42iwt > .fl-col-content {
	min-height: 30vh;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-ojml59n42iwt {
		width: 45% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-ojml59n42iwt {
		width: 45% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ojml59n42iwt {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-ojml59n42iwt > .fl-col-content {
	padding-top:15px;
	padding-right:0px;
	padding-bottom:15px;
	padding-left:0px;
}




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




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




.fl-node-ojzfwm804d36 {
	width: 50%;
}
 .fl-node-ojzfwm804d36 > .fl-col-content {
	margin-top:0px;
}




.fl-node-kgyh8qiwvnjr {
	width: 49.94%;
}




.fl-node-9nvutzr0e73w {
	width: 84%;
}




.fl-node-y2g7eqhtzmfx {
	width: 50.04%;
}




.fl-node-4t5v30rfhsdp {
	width: 50.02%;
}




.fl-node-bh4syz65n8go {
	width: 49.94%;
}




.fl-node-20hbdcil4k1n {
	width: 50%;
}




.fl-node-li1dvun0rtcy {
	width: 50.03%;
}




.fl-node-ekfmvubjs5a2 {
	width: 50.02%;
}




.fl-node-ag2t7wyj0vxz {
	width: 49.94%;
}




.fl-node-9vzq47we32gb {
	width: 50%;
}




.fl-node-w7gq40dsuazb {
	width: 84%;
}




.fl-node-gnjvs24myrq7 {
	width: 50%;
}
 .fl-node-gnjvs24myrq7 > .fl-col-content {
	margin-top:0px;
}




.fl-node-rymua7oib4vz {
	width: 50.03%;
}




.fl-node-gh5fnk8csma4 {
	width: 50.03%;
}




.fl-node-6cz8iv1jf50s {
	width: 50.03%;
}




.fl-node-3sqxce9ohk8j {
	width: 50%;
}




.fl-node-ivtgys2zqakc {
	width: 50%;
}
@media ( max-width: 768px ) {
 .fl-node-ivtgys2zqakc.fl-col > .fl-col-content {
	margin-top:0px;
	margin-bottom:0px;
}
}




.fl-node-zhgpustweajc {
	width: 50%;
}
 .fl-node-zhgpustweajc > .fl-col-content {
	margin-top:0px;
}




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




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




.fl-node-wukh8fd5ygqe {
	width: 59%;
}




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




.fl-node-i1zwcpo4206t {
	width: 49%;
}
.fl-builder-content .fl-node-i1zwcpo4206t > .fl-col-content {
	min-height: 40vh;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-i1zwcpo4206t {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-3k9t01o8i5hy {
	width: 25.03%;
}




.fl-node-6diurhwcsp1v {
	width: 24.94%;
}




.fl-node-3gmhsu9fwi2n {
	width: 25.03%;
}
@media ( max-width: 768px ) {
 .fl-node-3gmhsu9fwi2n.fl-col > .fl-col-content {
	margin-top:0px;
	margin-bottom:0px;
}
}




.fl-node-gxt4c9neswfi {
	width: 24.94%;
}




.fl-node-nqlxcmg25bw6 {
	width: 24.94%;
}




.fl-node-6dnjelqgkz1a {
	width: 25.03%;
}




.fl-node-kn7zj9v6dsqf {
	width: 8%;
}




.fl-node-g0rek7nwi91b {
	width: 24.94%;
}




.fl-node-ld1eukq6jrp4 {
	width: 24.94%;
}




.fl-node-wnj70dvo3e2t {
	width: 8%;
}




.fl-node-lqjv5zxu1mtf {
	width: 24.94%;
}




.fl-node-2rg8zx6fe5ks {
	width: 24.94%;
}




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




.fl-node-keaftwun4mcl {
	width: 20%;
}




.fl-node-ujtb93ehrp0v {
	width: 20%;
}




.fl-node-64lfkuwon57y {
	width: 100%;
}




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




.fl-node-ymi1q457tazw {
	width: 100%;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
.fl-builder-content .fl-node-mwc63b8takgo .fl-rich-text, .fl-builder-content .fl-node-mwc63b8takgo .fl-rich-text *:not(b, strong) {
	font-family: "Archeron Pro", Verdana, Arial, sans-serif;
	font-weight: 700;
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-mwc63b8takgo .fl-rich-text, .fl-builder-content .fl-node-mwc63b8takgo .fl-rich-text *:not(b, strong) {
		font-size: 27px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-mwc63b8takgo .fl-rich-text, .fl-builder-content .fl-node-mwc63b8takgo .fl-rich-text *:not(b, strong) {
		font-size: 21px;
	}
}
 .fl-node-mwc63b8takgo > .fl-module-content {
	margin-top:0px;
	margin-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-mwc63b8takgo.fl-module > .fl-module-content {
	margin-bottom:65px;
}
}
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-hyr2mw3okbxf, .fl-node-hyr2mw3okbxf .fl-photo {
	text-align: center;
}
 .fl-node-hyr2mw3okbxf > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 768px ) {
 .fl-node-hyr2mw3okbxf.fl-module > .fl-module-content {
	margin-top:0px;
}
}
@media (max-width: 768px) { .fl-node-hyr2mw3okbxf > .fl-module-content { margin-bottom:20px; } }.fl-node-wsxiq016yk5l, .fl-node-wsxiq016yk5l .fl-photo {
	text-align: center;
}
 .fl-node-wsxiq016yk5l > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media (max-width: 768px) { .fl-node-wsxiq016yk5l > .fl-module-content { margin-bottom:20px; } }
body .fl-module-cc-button .cc-button-container {
	text-align:center;
}
body .fl-module-cc-button .cc-button-container.center {
	text-align:center;
}
body .fl-module-cc-button .cc-button-container.left {
	text-align:left;
}
body .fl-module-cc-button .cc-button-container.right {
	text-align:right;
}
body .fl-module-cc-button .cc-button {
	padding: 5px 15px 6px 15px;
	background: #efff93;
	color: #000000;
	text-decoration: none;
	cursor:pointer;
    display: inline-block;
    -moz-transition: all ease-in-out .15s;
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s;
}

body .fl-module-cc-button .cc-button:hover {
	background: #cfd083;
	color: #000000;
	cursor:pointer;
	-moz-transition: all ease-in-out .15s;
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s;
}
body .fl-module-cc-button .cc-button .cc-button-first-text {
	font-family: 'Archeron Pro';
	font-size: 18px;
	font-weight: 700;
	line-height: 22px;
	text-transform: uppercase;
	cursor:pointer;
	margin-right:5px;
}
body .fl-module-cc-button .cc-button.cc-single-text .cc-button-first-text {
	display:none;
}
body .fl-module-cc-button .cc-button .cc-button-second-text {
	font-family: 'Tt Firs Neue';
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	text-transform: uppercase;
	cursor:pointer;
	margin-left:5px;
}
body .fl-module-cc-button .cc-button .cc-icon-arrow {
	position: relative;
    font-size: 24px;
    line-height: 22px;
    top: 4px;
    transform: translateX(0px);
    display: inline-block;
    -moz-transition: all ease-in-out .15s;
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s;
}
body .fl-module-cc-button .cc-button:hover .cc-icon-arrow {
	transform: translateX(3px);
    position: relative;
	-moz-transition: all ease-in-out .15s;
    -webkit-transition: all ease-in-out .15s;
    transition: all ease-in-out .15s;
} .fl-node-q8vwhm2gz1na > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-q8vwhm2gz1na.fl-module > .fl-module-content {
	margin-bottom:45px;
}
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }



.fl-node-sud9o4ea7j6h .fl-icon i, .fl-node-sud9o4ea7j6h .fl-icon i:before {
	font-size: 2rem;
}
.fl-node-sud9o4ea7j6h .fl-icon-wrap .fl-icon-text {
	height: 3.5rem;
}
.fl-node-sud9o4ea7j6h.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-sud9o4ea7j6h .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-sud9o4ea7j6h .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-sud9o4ea7j6h .fl-icon-wrap .fl-icon-text {
		height: 3.5rem;
	}
}
 .fl-node-sud9o4ea7j6h > .fl-module-content {
	margin-top:0px;
	margin-bottom:21px;
}
@media ( max-width: 768px ) {
 .fl-node-sud9o4ea7j6h.fl-module > .fl-module-content {
	margin-bottom:12px;
}
}
body .fl-module-cc-square-image .cc-square {
	position: relative;
}
body .fl-module-cc-square-image .fl-module-content {

}

body .fl-module-cc-square-image .cc-square .cc-square-text{
	position:absolute; left:50%; 
	top:50%; transform: translate(-50%, -50%); 
	font-family: 'TT Firs Neue'; 
	font-weight: 800; 
	text-transform:uppercase; 
	font-size:1.945rem; 
	line-height:2.1rem;
	letter-spacing:0.075em;
	text-align:center;
	max-width:360px;
	padding:;
}
body .fl-module-cc-square-image .cc-square .cc-square-text.small{
	font-size:1.25rem; 
	line-height:1.5rem;
}
@media (max-width: 768px) { 
	body .fl-module-cc-square-image .cc-square .cc-square-text{
		font-size:1.8rem; 
		line-height:2rem;
		letter-spacing:0.075em;
		max-width:220px;
	}
	body .fl-module-cc-square-image .cc-square .cc-square-text.small{
		font-size:1.1rem; 
		line-height:1.25rem;
	}
}.cc-square-text {
	padding: 0px 40px 0px 40px;
} .fl-node-sxpi6j9nu53h > .fl-module-content {
	margin-top:0px;
	margin-bottom:60px;
}
@media ( max-width: 768px ) {
 .fl-node-sxpi6j9nu53h.fl-module > .fl-module-content {
	margin-bottom:45px;
}
}
.cc-square-text {
	padding: 0px 40px 0px 40px;
} .fl-node-ugbvyfh13qil > .fl-module-content {
	margin-top:0px;
	margin-bottom:60px;
}
@media ( max-width: 768px ) {
 .fl-node-ugbvyfh13qil.fl-module > .fl-module-content {
	margin-bottom:45px;
}
}
.fl-builder-content .fl-node-g1cwh4b8riqj .fl-rich-text, .fl-builder-content .fl-node-g1cwh4b8riqj .fl-rich-text *:not(b, strong) {
	font-family: "Archeron Pro", Verdana, Arial, sans-serif;
	font-weight: 400;
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-g1cwh4b8riqj .fl-rich-text, .fl-builder-content .fl-node-g1cwh4b8riqj .fl-rich-text *:not(b, strong) {
		font-size: 27px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-g1cwh4b8riqj .fl-rich-text, .fl-builder-content .fl-node-g1cwh4b8riqj .fl-rich-text *:not(b, strong) {
		font-size: 21px;
	}
}
 .fl-node-g1cwh4b8riqj > .fl-module-content {
	margin-top:0px;
	margin-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-g1cwh4b8riqj.fl-module > .fl-module-content {
	margin-bottom:65px;
}
}
.fl-node-z34t509ykdgv, .fl-node-z34t509ykdgv .fl-photo {
	text-align: center;
}
 .fl-node-z34t509ykdgv > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 768px ) {
 .fl-node-z34t509ykdgv.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:40px;
}
}
.fl-node-esuk7i3xfcz9, .fl-node-esuk7i3xfcz9 .fl-photo {
	text-align: center;
}
 .fl-node-esuk7i3xfcz9 > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 768px ) {
 .fl-node-esuk7i3xfcz9.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
 .fl-node-16btomcev8ai > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}




.fl-node-4ujoclmb78x2 .fl-icon i, .fl-node-4ujoclmb78x2 .fl-icon i:before {
	font-size: 2rem;
}
.fl-node-4ujoclmb78x2 .fl-icon-wrap .fl-icon-text {
	height: 3.5rem;
}
.fl-node-4ujoclmb78x2.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-4ujoclmb78x2 .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-4ujoclmb78x2 .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-4ujoclmb78x2 .fl-icon-wrap .fl-icon-text {
		height: 3.5rem;
	}
}
 .fl-node-4ujoclmb78x2 > .fl-module-content {
	margin-top:0px;
	margin-bottom:21px;
}
@media ( max-width: 768px ) {
 .fl-node-4ujoclmb78x2.fl-module > .fl-module-content {
	margin-bottom:12px;
}
}
.cc-square-text {
	padding: 0px 40px 0px 40px;
} .fl-node-nhto2a14cmzx > .fl-module-content {
	margin-top:0px;
	margin-bottom:60px;
}
@media ( max-width: 768px ) {
 .fl-node-nhto2a14cmzx.fl-module > .fl-module-content {
	margin-bottom:45px;
}
}
.fl-builder-content .fl-node-dv7pbysm0zu2 .fl-rich-text, .fl-builder-content .fl-node-dv7pbysm0zu2 .fl-rich-text *:not(b, strong) {
	font-family: "Archeron Pro", Verdana, Arial, sans-serif;
	font-weight: 700;
	font-size: 28px;
	text-align: center;
	text-transform: uppercase;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-dv7pbysm0zu2 .fl-rich-text, .fl-builder-content .fl-node-dv7pbysm0zu2 .fl-rich-text *:not(b, strong) {
		font-size: 27px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-dv7pbysm0zu2 .fl-rich-text, .fl-builder-content .fl-node-dv7pbysm0zu2 .fl-rich-text *:not(b, strong) {
		font-size: 21px;
	}
}
 .fl-node-dv7pbysm0zu2 > .fl-module-content {
	margin-top:0px;
	margin-bottom:89px;
}
@media ( max-width: 768px ) {
 .fl-node-dv7pbysm0zu2.fl-module > .fl-module-content {
	margin-bottom:65px;
}
}
.fl-node-z6s72kdyreti, .fl-node-z6s72kdyreti .fl-photo {
	text-align: center;
}
 .fl-node-z6s72kdyreti > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 768px ) {
 .fl-node-z6s72kdyreti.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
.fl-node-vr8hm4ckw6f5, .fl-node-vr8hm4ckw6f5 .fl-photo {
	text-align: center;
}
 .fl-node-vr8hm4ckw6f5 > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 768px ) {
 .fl-node-vr8hm4ckw6f5.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
 .fl-node-4mszbcgwk5vu > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}




.fl-node-w34xdkqvegi7 .fl-icon i, .fl-node-w34xdkqvegi7 .fl-icon i:before {
	font-size: 2rem;
}
.fl-node-w34xdkqvegi7 .fl-icon-wrap .fl-icon-text {
	height: 3.5rem;
}
.fl-node-w34xdkqvegi7.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-w34xdkqvegi7 .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-w34xdkqvegi7 .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-w34xdkqvegi7 .fl-icon-wrap .fl-icon-text {
		height: 3.5rem;
	}
}
 .fl-node-w34xdkqvegi7 > .fl-module-content {
	margin-top:0px;
	margin-bottom:21px;
}
@media ( max-width: 768px ) {
 .fl-node-w34xdkqvegi7.fl-module > .fl-module-content {
	margin-bottom:12px;
}
}
.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: 768px) {  }







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






.fl-node-82p7qmtblfsd .fl-icon i, .fl-node-82p7qmtblfsd .fl-icon i:before {
	font-size: 2rem;
}
.fl-node-82p7qmtblfsd .fl-icon-wrap .fl-icon-text {
	height: 3.5rem;
}
.fl-node-82p7qmtblfsd.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-82p7qmtblfsd .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-82p7qmtblfsd .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-82p7qmtblfsd .fl-icon-wrap .fl-icon-text {
		height: 3.5rem;
	}
}
 .fl-node-82p7qmtblfsd > .fl-module-content {
	margin-top:41px;
	margin-bottom:21px;
}
@media ( max-width: 768px ) {
 .fl-node-82p7qmtblfsd.fl-module > .fl-module-content {
	margin-bottom:12px;
}
}
@media (max-width: 768px) { .fl-node-82p7qmtblfsd > .fl-module-content { margin-top:20px; } }.fl-node-25jrizplx9o6, .fl-node-25jrizplx9o6 .fl-photo {
	text-align: center;
}
 .fl-node-25jrizplx9o6 > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 992px ) {
 .fl-node-25jrizplx9o6.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-25jrizplx9o6.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}@media(max-width: 768px) {
	.fl-node-4mr7wascvqpo.fl-module-heading .fl-heading {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-bneq1uk4xoci.fl-module-heading .fl-heading {
		text-align: center;
	}
}




.fl-node-s0c92baln3mo .fl-icon i, .fl-node-s0c92baln3mo .fl-icon i:before {
	font-size: 2rem;
}
.fl-node-s0c92baln3mo .fl-icon-wrap .fl-icon-text {
	height: 3.5rem;
}
.fl-node-s0c92baln3mo.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-s0c92baln3mo .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-s0c92baln3mo .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-s0c92baln3mo .fl-icon-wrap .fl-icon-text {
		height: 3.5rem;
	}
}
 .fl-node-s0c92baln3mo > .fl-module-content {
	margin-top:0px;
	margin-bottom:21px;
}
@media ( max-width: 768px ) {
 .fl-node-s0c92baln3mo.fl-module > .fl-module-content {
	margin-bottom:12px;
}
}
/* Generic Styles */
.fl-module-post-grid .fl-sep {
	display: inline-block;
	margin: 0 2px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.fl-accordion-button {
	cursor: pointer;
	display: table;
}
.fl-accordion-button:focus,
.fl-accordion-button-icon:focus,
.fl-accordion-button-icon:active {
	outline: 0
}

.fl-accordion-button-label {
	display: table-cell;
	width: 100%;
	border: none;
	background: none;
	text-align: left;
	outline: 1px;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	text-decoration: none;
}

.fl-accordion-button-label:focus,
.fl-accordion-button-label:active,
.fl-accordion-button-icon:focus,
.fl-accordion-button-icon:active {
	opacity: 1;
	background: none;
	outline-width: 1px;
	outline-color: -webkit-focus-ring-color;
	outline-style: auto;
	text-decoration: none;
}

.fl-accordion-button-label:hover,
.fl-accordion-button-icon:hover {
	text-decoration: none;
}

.fl-accordion-button-icon {
	display: block;
	line-height: inherit;
}

.fl-accordion-button-icon-left {
	margin-inline-end: 10px;
}

.fl-accordion-button-icon-right {
	margin-inline-start: 10px;
}

.fl-accordion-button-icon-left, .fl-accordion-button-icon-right {
	opacity: .5;
}

.fl-accordion-content {
	display: none;
}
.fl-accordion-item {
	overflow: hidden;
}

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

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

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

.rtl .fl-accordion-item .fl-accordion-button-label,
.rtl .fl-accordion-item .fl-accordion-content * {
	text-align: right;
}
.fl-node-cjrexymza4ki .fl-accordion-item:not(:last-child) {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.fl-node-cjrexymza4ki .fl-accordion-item:not(:first-child) {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.fl-node-cjrexymza4ki .fl-accordion-item {
	margin-bottom: 0px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #000000;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.fl-node-cjrexymza4ki .fl-accordion-button .fl-accordion-button-label, .fl-node-cjrexymza4ki .fl-accordion-button-label:hover, .fl-node-cjrexymza4ki .fl-accordion-button .fl-accordion-button-icon {
	color: #000000;
}
.fl-node-cjrexymza4ki .fl-accordion-button-icon {
	color: #000000;
}
.fl-node-cjrexymza4ki .fl-accordion-button, .fl-node-cjrexymza4ki .fl-accordion-button-label {
	font-weight: 700;
	font-size: 1rem;
}
.fl-node-cjrexymza4ki .fl-accordion-content {
	padding-left: 42px;
}
 .fl-node-cjrexymza4ki > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 768px ) {
 .fl-node-cjrexymza4ki.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
.fl-node-z17o542lqsab .fl-accordion-item:not(:last-child) {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.fl-node-z17o542lqsab .fl-accordion-item:not(:first-child) {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.fl-node-z17o542lqsab .fl-accordion-item {
	margin-bottom: 0px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #000000;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
.fl-node-z17o542lqsab .fl-accordion-button .fl-accordion-button-label, .fl-node-z17o542lqsab .fl-accordion-button-label:hover, .fl-node-z17o542lqsab .fl-accordion-button .fl-accordion-button-icon {
	color: #000000;
}
.fl-node-z17o542lqsab .fl-accordion-button-icon {
	color: #000000;
}
.fl-node-z17o542lqsab .fl-accordion-button, .fl-node-z17o542lqsab .fl-accordion-button-label {
	font-weight: 700;
	font-size: 1rem;
}
.fl-node-z17o542lqsab .fl-accordion-content {
	padding-left: 42px;
}
 .fl-node-z17o542lqsab > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 768px ) {
 .fl-node-z17o542lqsab.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}








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


 .fl-node-uvc09jsedzn5 > .fl-module-content {
	margin-top:20px;
}








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


 .fl-node-2xtnf693qpjh > .fl-module-content {
	margin-top:20px;
}








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






.fl-node-71pxeb28tdkn .fl-icon i, .fl-node-71pxeb28tdkn .fl-icon i:before {
	font-size: 2rem;
}
.fl-node-71pxeb28tdkn .fl-icon-wrap .fl-icon-text {
	height: 3.5rem;
}
.fl-node-71pxeb28tdkn.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-71pxeb28tdkn .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-71pxeb28tdkn .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-71pxeb28tdkn .fl-icon-wrap .fl-icon-text {
		height: 3.5rem;
	}
}
 .fl-node-71pxeb28tdkn > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 768px ) {
 .fl-node-71pxeb28tdkn.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:12px;
}
}
 .fl-node-6u2nrdik4hm7 > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-6u2nrdik4hm7 > .fl-module-content { margin-bottom:20px; } }.fl-node-7nadebfc1o9z, .fl-node-7nadebfc1o9z .fl-photo {
	text-align: center;
}
@media(max-width: 768px) {
	.fl-node-7nadebfc1o9z .fl-photo-content, .fl-node-7nadebfc1o9z .fl-photo-img {
		width: 250px;
	}
}
 .fl-node-7nadebfc1o9z > .fl-module-content {
	margin-top:40px;
}
@media (max-width: 768px) { .fl-node-7nadebfc1o9z > .fl-module-content { margin-top:20px; } }/* Title
---------------------------------------------------*/

body a.fl-callout-title-link {
	text-decoration: none;
}
body h1.fl-callout-title,
body h2.fl-callout-title,
body h3.fl-callout-title,
body h4.fl-callout-title,
body h5.fl-callout-title,
body h6.fl-callout-title {
	margin: 0;
	padding: 0 0 10px 0;
}

/* Text
---------------------------------------------------*/

.fl-callout-text p {
	margin: 0 !important;
	padding: 0 0 10px 0 !important;
}

/* Button
---------------------------------------------------*/

.fl-callout-button {
	padding: 10px 0 0 0;
}

/* CTA Link
---------------------------------------------------*/

.fl-callout-cta-link {
	display: block;
}

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

/* Above/Below Title */
.fl-callout-icon-above-title .fl-icon {
	display: block;
	margin-bottom: 20px;
}
.fl-callout-icon-below-title .fl-icon {
	display: block;
	margin: 10px 0 15px;
}
.fl-callout-icon-above-title .fl-icon i,
.fl-callout-icon-below-title .fl-icon i {
	display: inline-block;
	float: none;
}

/* Left/Right of Title */
.fl-callout-icon-left-title .fl-callout-title,
.fl-callout-icon-right-title .fl-callout-title {
	display: inline-block;
}
.fl-callout-icon-left-title .fl-callout-title span,
.fl-callout-icon-right-title .fl-callout-title span {
	display: table-cell;
	vertical-align: middle;
}
.fl-callout-icon-left-title .fl-icon {
	padding-right: 15px;
}
.fl-callout-icon-right-title .fl-icon {
	padding-left: 15px;
}

/* Left/Right */
.fl-callout-icon-left,
.fl-callout-icon-right {
	display: table;
}
.fl-callout-icon-left .fl-icon,
.fl-callout-icon-left-text .fl-icon {
	display: table-cell;
	vertical-align: top;
	padding-right: 15px;
}
.fl-callout-icon-right .fl-icon,
.fl-callout-icon-right-text .fl-icon {
	display: table-cell;
	vertical-align: top;
	padding-left: 15px;
}

.fl-callout-icon-left .fl-callout-content,
.fl-callout-icon-right .fl-callout-content,
.fl-callout-icon-left-text .fl-callout-text-wrap,
.fl-callout-icon-right-text .fl-callout-text-wrap {
	display: table-cell;
}

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

/* Above Title */
.fl-callout-photo-above-title .fl-photo {
	margin-bottom: 15px;
}

/* Below Title */
.fl-callout-photo-below-title .fl-photo {
	margin-bottom: 15px;
	margin-top: 5px;
}

/* Left */
.fl-callout-photo-left {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.fl-callout-photo-left .fl-callout-photo,
.fl-callout-photo-left-text .fl-callout-photo {
	display: table-cell;
	padding-right: 30px;
	width: 50%;
	vertical-align: top;
}
.fl-callout-photo-left .fl-callout-content,
.fl-callout-photo-left-text .fl-callout-text-wrap {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

/* Right */
.fl-callout-photo-right {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.fl-callout-photo-right .fl-callout-photo,
.fl-callout-photo-right-text .fl-callout-photo {
	display: table-cell;
	padding-left: 30px;
	width: 50%;
	vertical-align: top;
}
.fl-callout-photo-right .fl-callout-content,
.fl-callout-photo-right-text .fl-callout-text-wrap {
	display: table-cell;
	width: 50%;
	vertical-align: middle;
}

.fl-module-callout .fl-module-content {
	overflow: hidden;
}
@media (max-width: 768px) { .fl-callout-photo-left,
.fl-callout-photo-right {
	display: block;
}
.fl-callout-photo-left .fl-callout-photo,
.fl-callout-photo-left-text .fl-callout-photo {
	display: block;
	margin-bottom: 15px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}
.fl-callout-photo-right .fl-callout-photo,
.fl-callout-photo-right-text .fl-callout-photo {
	display: block;
	margin-top: 25px;
	padding-left: 0;
	padding-right: 0;
	width: auto;
}
.fl-callout-photo-left .fl-callout-content,
.fl-callout-photo-left-text .fl-callout-content,
.fl-callout-photo-right .fl-callout-content,
.fl-callout-photo-right-text .fl-callout-content {
	display: block;
	width: auto;
} }.fl-node-64ozwrq2135i .fl-callout {
	text-align: left;
}
.fl-node-64ozwrq2135i .fl-callout-icon-left, .fl-node-64ozwrq2135i .fl-callout-icon-right {
	float: none;
}
.fl-node-64ozwrq2135i .fl-module-content {
	background-color: #00411f;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
.fl-builder-content .fl-node-64ozwrq2135i .fl-callout-content .fl-callout-title, .fl-builder-content .fl-node-64ozwrq2135i .fl-callout-content .fl-callout-title-text, .fl-builder-content .fl-node-64ozwrq2135i .fl-callout-content .fl-callout-title-text:hover {
	color: #ffffff;
}
.fl-node-64ozwrq2135i .fl-callout-title {
	font-family: "TT Firs Neue", Verdana, Arial, sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	text-transform: none;
}
.fl-builder-content .fl-node-64ozwrq2135i .fl-callout-content .fl-callout-text *, .fl-builder-content .fl-node-64ozwrq2135i .fl-callout-content .fl-callout-cta-link {
	color: #ffffff;
}
@media(max-width: 1200px) {
	.fl-node-64ozwrq2135i .fl-callout-title {
		font-size: 18px;
	}
}
@media(max-width: 992px) {
	.fl-node-64ozwrq2135i .fl-callout-icon-left, .fl-node-64ozwrq2135i .fl-callout-icon-right {
		float: none;
	}
	.fl-node-64ozwrq2135i .fl-callout-title {
		font-size: 16px;
	}
}
@media(max-width: 768px) {
	.fl-node-64ozwrq2135i .fl-callout-icon-left, .fl-node-64ozwrq2135i .fl-callout-icon-right {
		float: none;
	}
	.fl-node-64ozwrq2135i .fl-callout-title {
		font-size: 17px;
	}
}
.fl-node-wq921gah8yeu .fl-callout {
	text-align: left;
}
.fl-node-wq921gah8yeu .fl-callout-icon-left, .fl-node-wq921gah8yeu .fl-callout-icon-right {
	float: none;
}
.fl-node-wq921gah8yeu .fl-module-content {
	background-color: #00411f;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
.fl-builder-content .fl-node-wq921gah8yeu .fl-callout-content .fl-callout-title, .fl-builder-content .fl-node-wq921gah8yeu .fl-callout-content .fl-callout-title-text, .fl-builder-content .fl-node-wq921gah8yeu .fl-callout-content .fl-callout-title-text:hover {
	color: #ffffff;
}
.fl-node-wq921gah8yeu .fl-callout-title {
	font-family: "TT Firs Neue", Verdana, Arial, sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	text-transform: none;
}
.fl-builder-content .fl-node-wq921gah8yeu .fl-callout-content .fl-callout-text *, .fl-builder-content .fl-node-wq921gah8yeu .fl-callout-content .fl-callout-cta-link {
	color: #ffffff;
}
@media(max-width: 1200px) {
	.fl-node-wq921gah8yeu .fl-callout-title {
		font-size: 18px;
	}
}
@media(max-width: 992px) {
	.fl-node-wq921gah8yeu .fl-callout-icon-left, .fl-node-wq921gah8yeu .fl-callout-icon-right {
		float: none;
	}
}
@media(max-width: 768px) {
	.fl-node-wq921gah8yeu .fl-callout-icon-left, .fl-node-wq921gah8yeu .fl-callout-icon-right {
		float: none;
	}
}
.fl-builder-content .fl-node-eymwia83gshd .fl-rich-text, .fl-builder-content .fl-node-eymwia83gshd .fl-rich-text *:not(b, strong) {
	font-family: "TT Firs Neue", Verdana, Arial, sans-serif;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1em;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-eymwia83gshd > .fl-module-content {
	margin-top:0px;
	margin-bottom:21px;
}
@media ( max-width: 768px ) {
 .fl-node-eymwia83gshd.fl-module > .fl-module-content {
	margin-bottom:12px;
}
}
.fl-node-y3wvuchg0qt1.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-y3wvuchg0qt1 > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 768px ) {
 .fl-node-y3wvuchg0qt1.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
.fl-node-t5iqmp3lv0gk.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-t5iqmp3lv0gk > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 768px ) {
 .fl-node-t5iqmp3lv0gk.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
.fl-node-a34l82iygdfn, .fl-node-a34l82iygdfn .fl-photo {
	text-align: center;
}
.fl-node-a34l82iygdfn .fl-photo-content, .fl-node-a34l82iygdfn .fl-photo-img {
	width: 580px;
}
 .fl-node-a34l82iygdfn > .fl-module-content {
	margin-top:0px;
	margin-bottom:69px;
}
@media ( max-width: 768px ) {
 .fl-node-a34l82iygdfn.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-d6kum4y19pot .fl-rich-text, .fl-builder-content .fl-node-d6kum4y19pot .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
@media ( max-width: 768px ) {
 .fl-node-d6kum4y19pot.fl-module > .fl-module-content {
	margin-bottom:21px;
}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-x1t35p02wl9s .fl-rich-text, .fl-builder-content .fl-node-x1t35p02wl9s .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
@media ( max-width: 768px ) {
 .fl-node-x1t35p02wl9s.fl-module > .fl-module-content {
	margin-bottom:21px;
}
}
.fl-node-ghtr8ws9cbnx.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-ghtr8ws9cbnx > .fl-module-content {
	margin-top:0px;
	margin-bottom:21px;
}
@media ( max-width: 768px ) {
 .fl-node-ghtr8ws9cbnx.fl-module > .fl-module-content {
	margin-bottom:15px;
}
}
.fl-node-gceuy1lk2na3, .fl-node-gceuy1lk2na3 .fl-photo {
	text-align: center;
}
 .fl-node-gceuy1lk2na3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 992px ) {
 .fl-node-gceuy1lk2na3.fl-module > .fl-module-content {
	margin-top:55px;
	margin-bottom:55px;
}
}
@media (max-width: 768px) { .fl-node-gceuy1lk2na3 > .fl-module-content { margin-top:20px;margin-bottom:20px; } } .fl-node-bw0e497kmfhj > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-gij3vqp6f0bh .fl-rich-text, .fl-builder-content .fl-node-gij3vqp6f0bh .fl-rich-text *:not(b, strong) {
	font-weight: 700;
	font-size: 0.77rem;
	line-height: 1.2em;
	text-align: center;
}
 .fl-node-gij3vqp6f0bh > .fl-module-content {
	margin-top:5px;
}
 .fl-node-6ztdarvo15wl > .fl-module-content {
	margin-top:5px;
}
.fl-builder-content .fl-node-7e6tlb3qoxvr .fl-rich-text, .fl-builder-content .fl-node-7e6tlb3qoxvr .fl-rich-text *:not(b, strong) {
	font-weight: 700;
	font-size: 0.77rem;
	line-height: 1.2em;
	text-align: center;
}
 .fl-node-7e6tlb3qoxvr > .fl-module-content {
	margin-top:5px;
}
.fl-builder-content .fl-node-2oevzy6grhtq .fl-rich-text, .fl-builder-content .fl-node-2oevzy6grhtq .fl-rich-text *:not(b, strong) {
	font-family: "TT Firs Neue", Verdana, Arial, sans-serif;
	font-weight: 700;
	font-size: 1rem;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-2oevzy6grhtq > .fl-module-content {
	margin-top:0px;
	margin-bottom:21px;
}
@media ( max-width: 768px ) {
 .fl-node-2oevzy6grhtq.fl-module > .fl-module-content {
	margin-bottom:12px;
}
}
.fl-node-6ck1579nst2x.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-6ck1579nst2x > .fl-module-content {
	margin-top:0px;
	margin-bottom:40px;
}
@media ( max-width: 768px ) {
 .fl-node-6ck1579nst2x.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
 .fl-node-23mfigeyrz1q > .fl-module-content {
	margin-top:0px;
	margin-bottom:55px;
}
@media ( max-width: 768px ) {
 .fl-node-23mfigeyrz1q.fl-module > .fl-module-content {
	margin-bottom:45px;
}
}
.fl-node-gt2yl49acj1k, .fl-node-gt2yl49acj1k .fl-photo {
	text-align: center;
}
 .fl-node-gt2yl49acj1k > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-gt2yl49acj1k.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-builder-content .fl-node-xq81uit9ogwy .fl-rich-text, .fl-builder-content .fl-node-xq81uit9ogwy .fl-rich-text *:not(b, strong) {
	font-family: "Archeron Pro", Verdana, Arial, sans-serif;
	font-weight: 700;
	text-align: left;
	text-transform: none;
}
 .fl-node-xq81uit9ogwy > .fl-module-content {
	margin-top:0px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-xq81uit9ogwy.fl-module > .fl-module-content {
	margin-bottom:65px;
}
}
.fl-node-1bo6rw2qz8jv .fl-callout {
	text-align: left;
}
.fl-node-1bo6rw2qz8jv .fl-callout-icon-left, .fl-node-1bo6rw2qz8jv .fl-callout-icon-right {
	float: none;
}
@media(max-width: 992px) {
	.fl-node-1bo6rw2qz8jv .fl-callout-icon-left, .fl-node-1bo6rw2qz8jv .fl-callout-icon-right {
		float: none;
	}
}
@media(max-width: 768px) {
	.fl-node-1bo6rw2qz8jv .fl-callout {
		text-align: center;
	}
	.fl-node-1bo6rw2qz8jv .fl-callout-icon-left, .fl-node-1bo6rw2qz8jv .fl-callout-icon-right {
		float: none;
	}
	.fl-node-1bo6rw2qz8jv, .fl-node-1bo6rw2qz8jv .fl-photo {
		text-align: center;
	}
	.fl-node-1bo6rw2qz8jv .fl-photo-content, .fl-node-1bo6rw2qz8jv .fl-photo-img {
		width: 200px;
	}
}
.fl-node-1bo6rw2qz8jv .fl-module-content {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
 .fl-node-1bo6rw2qz8jv > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 768px ) {
 .fl-node-1bo6rw2qz8jv.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
.fl-node-e5zql8htkxp1 .fl-callout {
	text-align: left;
}
.fl-node-e5zql8htkxp1 .fl-callout-icon-left, .fl-node-e5zql8htkxp1 .fl-callout-icon-right {
	float: none;
}
@media(max-width: 992px) {
	.fl-node-e5zql8htkxp1 .fl-callout-icon-left, .fl-node-e5zql8htkxp1 .fl-callout-icon-right {
		float: none;
	}
}
@media(max-width: 768px) {
	.fl-node-e5zql8htkxp1 .fl-callout {
		text-align: center;
	}
	.fl-node-e5zql8htkxp1 .fl-callout-icon-left, .fl-node-e5zql8htkxp1 .fl-callout-icon-right {
		float: none;
	}
	.fl-node-e5zql8htkxp1, .fl-node-e5zql8htkxp1 .fl-photo {
		text-align: center;
	}
	.fl-node-e5zql8htkxp1 .fl-photo-content, .fl-node-e5zql8htkxp1 .fl-photo-img {
		width: 200px;
	}
}
.fl-node-e5zql8htkxp1 .fl-module-content {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
 .fl-node-e5zql8htkxp1 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 768px ) {
 .fl-node-e5zql8htkxp1.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
.fl-node-9j0n2ykphr5l .fl-callout {
	text-align: left;
}
.fl-node-9j0n2ykphr5l .fl-callout-icon-left, .fl-node-9j0n2ykphr5l .fl-callout-icon-right {
	float: none;
}
.fl-node-9j0n2ykphr5l, .fl-node-9j0n2ykphr5l .fl-photo {
	text-align: left;
}
@media(max-width: 992px) {
	.fl-node-9j0n2ykphr5l .fl-callout-icon-left, .fl-node-9j0n2ykphr5l .fl-callout-icon-right {
		float: none;
	}
}
@media(max-width: 768px) {
	.fl-node-9j0n2ykphr5l .fl-callout {
		text-align: center;
	}
	.fl-node-9j0n2ykphr5l .fl-callout-icon-left, .fl-node-9j0n2ykphr5l .fl-callout-icon-right {
		float: none;
	}
	.fl-node-9j0n2ykphr5l, .fl-node-9j0n2ykphr5l .fl-photo {
		text-align: center;
	}
	.fl-node-9j0n2ykphr5l .fl-photo-content, .fl-node-9j0n2ykphr5l .fl-photo-img {
		width: 170px;
	}
}
.fl-node-9j0n2ykphr5l .fl-module-content {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
 .fl-node-9j0n2ykphr5l > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
@media ( max-width: 768px ) {
 .fl-node-9j0n2ykphr5l.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
 .fl-node-nb4mlf0we63u > .fl-module-content {
	margin-top:20px;
}
@media ( max-width: 768px ) {
 .fl-node-nb4mlf0we63u.fl-module > .fl-module-content {
	margin-bottom:45px;
}
}
 .fl-node-w0341ci27unx > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-w0341ci27unx.fl-module > .fl-module-content {
	margin-bottom:45px;
}
}
.fl-node-fb9ki1jcngl5.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-fb9ki1jcngl5 > .fl-module-content {
	margin-top:0px;
	margin-bottom:33px;
}
@media ( max-width: 768px ) {
 .fl-node-fb9ki1jcngl5.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
 .fl-node-gfur7vlo062t > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-gfur7vlo062t.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}
.fl-builder-content .fl-node-tfoj13zrabuy .fl-rich-text, .fl-builder-content .fl-node-tfoj13zrabuy .fl-rich-text *:not(b, strong) {
	text-align: center;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-tfoj13zrabuy .fl-rich-text, .fl-builder-content .fl-node-tfoj13zrabuy .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-tfoj13zrabuy > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:55px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-tfoj13zrabuy.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
@media(max-width: 768px) {
	.fl-node-rlq4mjs78p9c.fl-module-heading .fl-heading {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-ej5fnprchuts.fl-module-heading .fl-heading {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-nwkg7dpyrl9h .fl-rich-text, .fl-builder-content .fl-node-nwkg7dpyrl9h .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-nwkg7dpyrl9h > .fl-module-content {
	margin-bottom:55px;
}
@media ( max-width: 768px ) {
 .fl-node-nwkg7dpyrl9h.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
.fl-node-xf3wjqe5pzt6.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-xf3wjqe5pzt6 > .fl-module-content {
	margin-top:0px;
	margin-bottom:46px;
}
@media ( max-width: 768px ) {
 .fl-node-xf3wjqe5pzt6.fl-module > .fl-module-content {
	margin-bottom:10px;
}
}
.fl-builder-content .fl-node-yirtmhx73cdp .fl-rich-text, .fl-builder-content .fl-node-yirtmhx73cdp .fl-rich-text *:not(b, strong) {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-zl2q41rsdpyn .fl-rich-text, .fl-builder-content .fl-node-zl2q41rsdpyn .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-m0wzobn2ya4g .fl-rich-text, .fl-builder-content .fl-node-m0wzobn2ya4g .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
@media ( max-width: 768px ) {
 .fl-node-m0wzobn2ya4g.fl-module > .fl-module-content {
	margin-bottom:21px;
}
}
 .fl-node-xdhru7mityaf > .fl-module-content {
	margin-bottom:20px;
}
 .fl-node-vnqi09a6tu7r > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-vnqi09a6tu7r.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}




.fl-node-1ibmq2kn7e95 .fl-icon i, .fl-node-1ibmq2kn7e95 .fl-icon i:before {
	font-size: 2rem;
}
.fl-node-1ibmq2kn7e95 .fl-icon-wrap .fl-icon-text {
	height: 3.5rem;
}
.fl-node-1ibmq2kn7e95.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-1ibmq2kn7e95 .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-1ibmq2kn7e95 .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-1ibmq2kn7e95 .fl-icon-wrap .fl-icon-text {
		height: 3.5px;
	}
}
 .fl-node-1ibmq2kn7e95 > .fl-module-content {
	margin-top:45px;
	margin-bottom:21px;
}
@media ( max-width: 768px ) {
 .fl-node-1ibmq2kn7e95.fl-module > .fl-module-content {
	margin-bottom:12px;
}
}
@media (max-width: 768px) { .fl-node-1ibmq2kn7e95 > .fl-module-content { margin-top:20px; } }.fl-node-i6mu7r2j0zdo.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-i6mu7r2j0zdo > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
@media (max-width: 768px) { .fl-node-i6mu7r2j0zdo > .fl-module-content { margin-bottom:20px; } }
.fl-node-dpkz95xcvqbf .fl-post-grid {
	margin-left: -18px;
	margin-right: -18px;
}
.fl-node-dpkz95xcvqbf .fl-post-column {
	padding-bottom: 36px;
	padding-left: 18px;
	padding-right: 18px;
	width: 33.333333333333%;
}
.fl-node-dpkz95xcvqbf .fl-post-column:nth-child(3n + 1) {
	clear: both;
}
		@media screen and (max-width: 1200px) {
		.fl-node-dpkz95xcvqbf .fl-post-column {
			width: 33.333333333333%;
		}
		.fl-node-dpkz95xcvqbf .fl-post-column:nth-child(3n + 1) {
			clear: none;
		}
		.fl-node-dpkz95xcvqbf .fl-post-column:nth-child(3n + 1) {
			clear: both;
		}
	}
			@media screen and (max-width: 992px) {
		.fl-node-dpkz95xcvqbf .fl-post-column {
			width: 50%;
		}
		.fl-node-dpkz95xcvqbf .fl-post-column:nth-child(3n + 1) {
			clear: none;
		}
		.fl-node-dpkz95xcvqbf .fl-post-column:nth-child(2n + 1) {
			clear: both;
		}
	}
			@media screen and (max-width: 768px) {
		.fl-node-dpkz95xcvqbf .fl-post-column {
			width: 100%;
		}
		.fl-node-dpkz95xcvqbf .fl-post-column:nth-child(2n + 1) {
			clear: none;
		}
		.fl-node-dpkz95xcvqbf .fl-post-column:nth-child(1n + 1) {
			clear: both;
		}
	}
	 .fl-node-dpkz95xcvqbf > .fl-module-content {
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-dpkz95xcvqbf.fl-module > .fl-module-content {
	margin-top:46px;
}
}
 .fl-node-tmdaxkh2g4b6 > .fl-module-content {
	margin-top:43px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-tmdaxkh2g4b6 > .fl-module-content { margin-top:20px; } }
/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

.fl-post-grid-post {<br />    font-size: 14px;<br />}<br />.fl-post-text {<br />    padding: 20px;<br />}<br />.fl-post-title {<br />    font-size: 20px;<br />	line-height: 26px;<br />	margin: 0;<br />	padding: 0 0 5px;<br />}<br />.fl-post-meta {<br />    padding: 0 0 15px;<br />}.fl-post-grid-post {<br />    font-size: 14px;<br />}<br />.fl-post-text {<br />    padding: 20px;<br />}<br />.fl-post-title {<br />    font-size: 20px;<br />	line-height: 26px;<br />	margin: 0;<br />	padding: 0 0 5px;<br />}<br />.fl-post-meta {<br />    padding: 0 0 15px;<br />}/* Generic */
.fl-post-module-woo-ordering {
	padding-bottom: 40px;
}

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

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

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

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

 

 





/* Add To Cart Button Styles */





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

 

 





/* Add To Cart Button Styles */





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