/**
 * 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], .fl-ds-block):before,
.fl-module:not([data-accepts], .fl-ds-block):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], .fl-ds-block):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 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;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
:where(.fl-builder-content, .fl-page) :is(a[href], button, input, select, textarea, [tabindex]:not([tabindex="-1"])):focus {
	outline-style: solid;
	outline-width: 2px;
	outline-offset: 2px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





.fl-node-x8biot1m5eqj.fl-row-default-height > .fl-row-content-wrap, .fl-node-x8biot1m5eqj.fl-row-full-height > .fl-row-content-wrap, .fl-node-x8biot1m5eqj.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
.fl-node-x8biot1m5eqj.fl-row-fixed-width, .fl-node-x8biot1m5eqj .fl-row-fixed-width {
	max-width: 1452px;
}






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

	.fl-builder-edit .fl-node-5fisoh2gv0lj.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-5fisoh2gv0lj.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-5fisoh2gv0lj.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-5fisoh2gv0lj.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-5fisoh2gv0lj > .fl-row-content-wrap {
	background-color: #f4f4f4;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-5fisoh2gv0lj > .fl-row-content-wrap:after {
	background-color: rgb(153, 153, 153);
}
.fl-node-5fisoh2gv0lj.fl-row-default-height > .fl-row-content-wrap, .fl-node-5fisoh2gv0lj.fl-row-full-height > .fl-row-content-wrap, .fl-node-5fisoh2gv0lj.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}






.fl-node-mr2qno4x681w.fl-row-default-height > .fl-row-content-wrap, .fl-node-mr2qno4x681w.fl-row-full-height > .fl-row-content-wrap, .fl-node-mr2qno4x681w.fl-row-custom-height > .fl-row-content-wrap {
	align-items: center;
	justify-content: center;
}
.fl-node-mr2qno4x681w > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-mr2qno4x681w > .fl-row-content-wrap {
	padding-top:30px;
	padding-right:30px;
	padding-bottom:30px;
	padding-left:30px;
}




.fl-node-pbhe5vwuoa6j {
	width: 56%;
}




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




.fl-node-0upl2wnj5xkm {
	width: 100%;
}




.fl-node-1os6bp9di8ht {
	width: 100%;
}




.fl-node-0dm1576yvtj8 {
	width: 100%;
}




.fl-node-s42mfp7x0oug {
	width: 13%;
}




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




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




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




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




.fl-node-6j1aqdfk8voz {
	width: 43%;
}




.fl-node-udw3nbrscyzt {
	width: 86%;
}
/* 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;
} }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;
}

.fl-node-dm8h6jfxupci .fl-callout {
	text-align: left;
}
.fl-node-dm8h6jfxupci .fl-callout-icon-left, .fl-node-dm8h6jfxupci .fl-callout-icon-right {
	float: none;
}
.fl-node-dm8h6jfxupci, .fl-node-dm8h6jfxupci .fl-photo {
	text-align: center;
}
@media(max-width: 992px) {
	.fl-node-dm8h6jfxupci .fl-callout-icon-left, .fl-node-dm8h6jfxupci .fl-callout-icon-right {
		float: none;
	}
}
@media(max-width: 768px) {
	.fl-node-dm8h6jfxupci .fl-callout-icon-left, .fl-node-dm8h6jfxupci .fl-callout-icon-right {
		float: none;
	}
}
 .fl-node-dm8h6jfxupci > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
.fl-animated.fl-fade-up {
	animation: fl-fade-up 1s ease;
	-webkit-animation: fl-fade-up 1s ease;
}
@-webkit-keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col h2.fl-node-uqz8c1l2xh93,
		.fl-row .fl-col h2.fl-node-uqz8c1l2xh93 a,
		h2.fl-node-uqz8c1l2xh93,
		h2.fl-node-uqz8c1l2xh93 a {
	color: #999594;
}
.fl-node-uqz8c1l2xh93.fl-module-heading, .fl-node-uqz8c1l2xh93.fl-module-heading :where(a, q, p, span) {
	font-weight: 400;
	text-align: center;
}
.fl-animated.fl-fade-in {
	animation: fl-fade-in 1s ease;
	-webkit-animation: fl-fade-in 1s ease;
}
@-webkit-keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fl-node-yu1zevdfqmxn .fl-separator {
	border-top-width: 4px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-yu1zevdfqmxn .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-yu1zevdfqmxn.fl-module-separator {
	margin-top:2px;
	margin-bottom:2px;
	margin-left:20px;
}
.fl-row .fl-col h3.fl-node-3jdn2p61mlha,
		.fl-row .fl-col h3.fl-node-3jdn2p61mlha a,
		h3.fl-node-3jdn2p61mlha,
		h3.fl-node-3jdn2p61mlha a {
	color: #ce2c00;
}
.fl-node-3jdn2p61mlha.fl-module-heading, .fl-node-3jdn2p61mlha.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-3jdn2p61mlha.fl-module-heading {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:5px;
	margin-left:5px;
}
.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-qwzd5hnureoy.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-qwzd5hnureoy.fl-module-rich-text.fl-rich-text * {
	color: rgb(5, 5, 5);
}
.fl-builder-content .fl-node-qwzd5hnureoy.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-qwzd5hnureoy.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 17px;
}
 .fl-node-qwzd5hnureoy.fl-module-rich-text {
	margin-top:5px;
	margin-bottom:5px;
}
.fl-node-sw13xm2djkyq .fl-separator {
	border-top-width: 3px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-sw13xm2djkyq .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-sw13xm2djkyq.fl-module-separator {
	margin-top:5px;
	margin-bottom:5px;
}









.fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button) {
	width: 100%;
}
.fl-node-5m7kjde2nu0c.fl-button-wrap, .fl-node-5m7kjde2nu0c .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button), .fl-builder-content .fl-node-5m7kjde2nu0c a.fl-button:visited, .fl-page .fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-5m7kjde2nu0c a.fl-button:visited {
	font-size: 22px;
	border: 1px solid rgb(237,0,0);
	background-color: rgb(249, 6, 6);
	background-image: none;
}
.fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button):hover, .fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button):focus, .fl-page .fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button):focus {
	border: 1px solid rgb(237,0,0);
}
.fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button):hover, .fl-page .fl-page .fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button):hover {
	background-color: rgb(249, 6, 6);
	background-image: none;
}
:where(.fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-5m7kjde2nu0c .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
 .fl-node-5m7kjde2nu0c.fl-module-button {
	margin-top:5px;
	margin-left:5px;
}
.fl-animated.fl-fancy-pulse {
	animation: fl-fancy-pulse 1s ease;
	-webkit-animation: fl-fancy-pulse 1s ease;
}
@-webkit-keyframes fl-fancy-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes fl-fancy-pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.fl-node-mae5gs8ryv7t .fl-separator {
	border-top-width: 3px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-mae5gs8ryv7t .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
.fl-row .fl-col h2.fl-node-yoqkw06cmv2x,
		.fl-row .fl-col h2.fl-node-yoqkw06cmv2x a,
		h2.fl-node-yoqkw06cmv2x,
		h2.fl-node-yoqkw06cmv2x a {
	color: #c82127;
}
.fl-node-yoqkw06cmv2x.fl-module-heading, .fl-node-yoqkw06cmv2x.fl-module-heading :where(a, q, p, span) {
	font-size: 30px;
}
 .fl-node-yoqkw06cmv2x.fl-module-heading {
	margin-top:5px;
	margin-bottom:5px;
}
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-mexojwp5gi8t, .fl-node-mexojwp5gi8t .fl-photo {
	text-align: center;
}
:where(.fl-builder-content .fl-node-tyzek0m72fhx.fl-module-rich-text.fl-rich-text *) {
	color: inherit;
}
 .fl-node-tyzek0m72fhx.fl-module-rich-text {
	margin-top:5px;
	margin-bottom:5px;
}
.fl-builder-content .fl-node-sli3yngz09ed .fl-rich-text, .fl-builder-content .fl-node-sli3yngz09ed .fl-rich-text *:not(b, strong) {
	font-size: 20px;
}
 .fl-node-sli3yngz09ed > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}









.fl-node-luhp95k0e1c4.fl-button-wrap, .fl-node-luhp95k0e1c4 .fl-button-wrap {
	text-align: center;
}
:where(.fl-builder-content .fl-node-luhp95k0e1c4 .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-luhp95k0e1c4 .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
.fl-node-v960u4li8tnf .fl-separator {
	border-top-width: 4px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-v960u4li8tnf .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-v960u4li8tnf.fl-module-separator {
	margin-top:2px;
	margin-bottom:2px;
	margin-left:20px;
}









.fl-node-ewx1hkb70ui5.fl-button-wrap, .fl-node-ewx1hkb70ui5 .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button), .fl-builder-content .fl-node-ewx1hkb70ui5 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-ewx1hkb70ui5 a.fl-button:visited {
	font-family: Helvetica, Verdana, Arial, sans-serif;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	border: 1px solid rgb(229,0,0);
	background-color: rgb(241, 4, 4);
	background-image: none;
}
.fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button):hover, .fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button):focus, .fl-page .fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button):focus {
	border: 1px solid rgb(229,0,0);
}
.fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button):hover, .fl-page .fl-page .fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button):hover {
	background-color: rgb(241, 4, 4);
	background-image: none;
}
.fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button), .fl-builder-content .fl-node-ewx1hkb70ui5 a.fl-button:visited, .fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button) *, .fl-builder-content .fl-node-ewx1hkb70ui5 a.fl-button:visited *, .fl-page .fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-ewx1hkb70ui5 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button) *, .fl-page .fl-builder-content .fl-node-ewx1hkb70ui5 a.fl-button:visited * {
	color: rgb(243, 242, 242);
}
:where(.fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-ewx1hkb70ui5 .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
 .fl-node-ewx1hkb70ui5.fl-module-button {
	margin-top:5px;
	margin-bottom:5px;
}
.fl-node-15haiubgx9j2, .fl-node-15haiubgx9j2 .fl-photo {
	text-align: center;
}
.fl-node-0sv57h6cbuia .fl-separator {
	border-top-width: 4px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-0sv57h6cbuia .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-0sv57h6cbuia.fl-module-separator {
	margin-top:2px;
	margin-bottom:2px;
	margin-left:20px;
}
.fl-row .fl-col h3.fl-node-ka8mz31xpsc7,
		.fl-row .fl-col h3.fl-node-ka8mz31xpsc7 a,
		h3.fl-node-ka8mz31xpsc7,
		h3.fl-node-ka8mz31xpsc7 a {
	color: #ce2c00;
}
.fl-node-ka8mz31xpsc7.fl-module-heading, .fl-node-ka8mz31xpsc7.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-ka8mz31xpsc7.fl-module-heading {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:5px;
	margin-left:5px;
}
.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-lx4gyzmi8fbt .fl-wp-video {
		padding-bottom: 56.25%;
	}








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

	.fl-node-lx4gyzmi8fbt .fl-wp-video .mejs-overlay-loading {
		display: none;
	}

.fl-node-tsz07ley6p4c .fl-separator {
	border-top-width: 4px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-tsz07ley6p4c .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-tsz07ley6p4c.fl-module-separator {
	margin-top:2px;
	margin-bottom:2px;
	margin-left:20px;
}
.fl-row .fl-col h3.fl-node-vbzi9ghdckal,
		.fl-row .fl-col h3.fl-node-vbzi9ghdckal a,
		h3.fl-node-vbzi9ghdckal,
		h3.fl-node-vbzi9ghdckal a {
	color: #ce2c00;
}
.fl-node-vbzi9ghdckal.fl-module-heading, .fl-node-vbzi9ghdckal.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-vbzi9ghdckal.fl-module-heading {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:5px;
	margin-left:5px;
}
:where(.fl-builder-content .fl-node-frmskni1y4hp.fl-module-rich-text.fl-rich-text *) {
	color: inherit;
}
 .fl-node-frmskni1y4hp.fl-module-rich-text {
	margin-top:5px;
	margin-bottom:5px;
}









.fl-node-xwuaivfyh624.fl-button-wrap, .fl-node-xwuaivfyh624 .fl-button-wrap {
	text-align: center;
}
:where(.fl-builder-content .fl-node-xwuaivfyh624 .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-xwuaivfyh624 .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
.fl-node-kw2mbx0a96c7 .fl-separator {
	border-top-width: 4px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-kw2mbx0a96c7 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-kw2mbx0a96c7.fl-module-separator {
	margin-top:2px;
	margin-bottom:2px;
	margin-left:20px;
}
.fl-row .fl-col h3.fl-node-v6hpkeirjocg,
		.fl-row .fl-col h3.fl-node-v6hpkeirjocg a,
		h3.fl-node-v6hpkeirjocg,
		h3.fl-node-v6hpkeirjocg a {
	color: #ce2c00;
}
.fl-node-v6hpkeirjocg.fl-module-heading, .fl-node-v6hpkeirjocg.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-v6hpkeirjocg.fl-module-heading {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:5px;
	margin-left:5px;
}
.fl-node-on1timzfhb0p, .fl-node-on1timzfhb0p .fl-photo {
	text-align: center;
}
 .fl-node-on1timzfhb0p.fl-module-photo {
	margin-top:5px;
	margin-bottom:5px;
}
:where(.fl-builder-content .fl-node-5vhn3ak29fq7.fl-module-rich-text.fl-rich-text *) {
	color: inherit;
}
.fl-builder-content .fl-node-5vhn3ak29fq7.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-5vhn3ak29fq7.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 20px;
}
 .fl-node-5vhn3ak29fq7.fl-module-rich-text {
	margin-top:5px;
	margin-bottom:5px;
}
.fl-builder-content .fl-node-uax4oc2t185n .fl-rich-text, .fl-builder-content .fl-node-uax4oc2t185n .fl-rich-text *:not(b, strong) {
	font-size: 14px;
	letter-spacing: 0px;
	text-decoration: none;
	font-style: normal;
	font-variant: normal;
}
 .fl-node-uax4oc2t185n > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}









.fl-node-9a72hr8twkic.fl-button-wrap, .fl-node-9a72hr8twkic .fl-button-wrap {
	text-align: center;
}
:where(.fl-builder-content .fl-node-9a72hr8twkic .fl-button:is(a, button)), :where(.fl-builder-content .fl-node-9a72hr8twkic .fl-button:is(a, button) *) {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.fl-builder-content {
  --jm-red: #c8102e;
  --jm-silver: #c7c9c7;
  --jm-blue: #6eb6e8;
  --jm-black: #090a0c;
  --jm-white: #ffffff;
  color: #20242a;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.fl-builder-content h1,
.fl-builder-content h2,
.fl-builder-content h3 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.fl-builder-content p {
  font-size: 18px;
  line-height: 1.7;
}
.fl-builder-content a {
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.fl-node-5fisoh2gv0lj .fl-row-content-wrap {
  min-height: 680px;
  position: relative;
  overflow: hidden;
}
.fl-node-5fisoh2gv0lj .fl-row-content-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 20%, rgba(110,182,232,.26), transparent 38%),
    linear-gradient(115deg, rgba(9,10,12,.88), rgba(200,16,46,.56) 56%, rgba(9,10,12,.82));
}
.fl-node-5fisoh2gv0lj .fl-row-content {
  position: relative;
  z-index: 2;
  padding: 90px 28px;
}
.fl-node-5fisoh2gv0lj .fl-row-content::before {
  content: "";
  display: block;
  width: min(520px, 78vw);
  height: 210px;
  margin: 0 auto 30px;
  background: url("https://yesjazzmatters.org/wp-content/uploads/2018/10/jazzmatters.png") center/contain no-repeat;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.55));
}
.fl-node-5fisoh2gv0lj h2 {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--jm-white);
  font-size: clamp(36px, 5vw, 68px);
  text-align: center;
  text-shadow: 0 3px 18px rgba(0,0,0,.75);
}
.fl-node-x8biot1m5eqj .fl-row-content-wrap {
  padding: 72px 28px;
  color: var(--jm-white);
  background-color: var(--jm-black);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(200,16,46,.26) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 64%, rgba(110,182,232,.15) 0 1px, transparent 2px),
    linear-gradient(135deg, rgba(255,255,255,.035) 25%, transparent 25% 50%, rgba(255,255,255,.035) 50% 75%, transparent 75%);
  background-size: 37px 37px, 29px 29px, 18px 18px;
}
.fl-node-x8biot1m5eqj h1,
.fl-node-x8biot1m5eqj h2,
.fl-node-x8biot1m5eqj h3,
.fl-node-x8biot1m5eqj p {
  color: var(--jm-white);
}
.fl-node-x8biot1m5eqj img {
  border: 1px solid rgba(199,201,199,.55);
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
}
.fl-node-x8biot1m5eqj .fl-button {
  border: 0;
  border-radius: 999px;
  background: var(--jm-red);
  color: var(--jm-white);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(200,16,46,.3);
}
.fl-node-x8biot1m5eqj .fl-button:hover {
  background: #ec2447;
  transform: translateY(-2px);
}
.fl-node-mr2qno4x681w .fl-row-content-wrap {
  padding: 90px 28px;
  background-color: #eef1f4;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(9,10,12,.075) 1px, transparent 1.2px),
    linear-gradient(120deg, rgba(110,182,232,.10), transparent 38%, rgba(200,16,46,.055));
  background-size: 18px 18px, 100% 100%;
}
.fl-node-mr2qno4x681w .fl-row-content {
  max-width: 1320px;
}
.fl-node-mr2qno4x681w .fl-row-content > .fl-col-group > .fl-col > .fl-col-content {
  margin: 14px;
  padding: 42px;
  border: 1px solid rgba(9,10,12,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 55px rgba(26,34,43,.10);
}
.fl-node-mr2qno4x681w h2,
.fl-node-mr2qno4x681w h3 {
  color: var(--jm-red);
}
.fl-node-mr2qno4x681w h3 {
  margin-top: 34px;
  padding: 14px 18px;
  border-left: 6px solid var(--jm-red);
  background: linear-gradient(90deg, rgba(200,16,46,.10), rgba(110,182,232,.08));
}
.fl-node-mr2qno4x681w img,
.fl-node-mr2qno4x681w video {
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(9,10,12,.16);
}
.fl-node-mr2qno4x681w .fl-button {
  border: 0;
  border-radius: 999px;
  background: var(--jm-blue);
  color: var(--jm-black);
  font-weight: 700;
  box-shadow: 0 9px 24px rgba(65,140,190,.22);
}
.fl-node-mr2qno4x681w .fl-button:hover {
  background: var(--jm-red);
  color: var(--jm-white);
  transform: translateY(-2px);
}
.fl-node-mr2qno4x681w .fl-separator {
  border-color: rgba(200,16,46,.28);
}
@media (max-width: 768px) {
  .fl-node-5fisoh2gv0lj .fl-row-content-wrap { min-height: 560px; }
  .fl-node-5fisoh2gv0lj .fl-row-content { padding: 70px 22px; }
  .fl-node-5fisoh2gv0lj .fl-row-content::before { height: 150px; }
  .fl-node-x8biot1m5eqj .fl-row-content-wrap,
  .fl-node-mr2qno4x681w .fl-row-content-wrap { padding: 56px 16px; }
  .fl-node-mr2qno4x681w .fl-row-content > .fl-col-group > .fl-col > .fl-col-content {
    margin: 10px 0;
    padding: 26px 20px;
  }
  .fl-builder-content p { font-size: 17px; }
}
.fl-builder-content { display: flex; flex-direction: column; }
.fl-node-5fisoh2gv0lj { order: 1; }
.fl-node-x8biot1m5eqj { order: 2; }
.fl-node-mr2qno4x681w { order: 3; }
.fl-node-5fisoh2gv0lj h2,
.fl-node-5fisoh2gv0lj h2 span { color: #ffffff !important; }
.fl-node-x8biot1m5eqj,
.fl-node-x8biot1m5eqj p,
.fl-node-x8biot1m5eqj span,
.fl-node-x8biot1m5eqj strong,
.fl-node-x8biot1m5eqj em { color: #ffffff !important; }
.fl-node-mr2qno4x681w .fl-row-content > .fl-col-group > .fl-col {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
}

/* Keep the original hero tagline visible even if its old entrance animation is unavailable. */
.fl-node-uqz8c1l2xh93,
.fl-node-uqz8c1l2xh93.fl-animation,
.fl-node-uqz8c1l2xh93 .fl-module-content,
.fl-node-uqz8c1l2xh93 .fl-heading {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
}
.fl-node-uqz8c1l2xh93 .fl-heading {
  color: #ffffff !important;
  text-shadow: 0 3px 18px rgba(0,0,0,.72);
}


/* Archived Holiday and Newsletter content restored as editable cards. */
.jm-preserved-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 38px 0 22px;
}
.jm-preserved-card {
  min-height: 270px;
  padding: 34px;
  border: 1px solid rgba(199,201,199,.42);
  border-radius: 18px;
  background-color: #090a0c;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.055) 1px, transparent 1.2px),
    linear-gradient(135deg, rgba(200,16,46,.25), transparent 55%, rgba(110,182,232,.18));
  background-size: 18px 18px, 100% 100%;
  box-shadow: 0 18px 42px rgba(9,10,12,.18);
  color: #ffffff;
}
.jm-preserved-card h3,
.jm-preserved-card p {
  color: #ffffff !important;
}
.jm-preserved-card h3 {
  margin: 8px 0 16px;
  font-size: clamp(27px, 3vw, 40px);
}
.jm-preserved-card .jm-eyebrow {
  margin: 0;
  color: #6eb6e8 !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.jm-preserved-card .jm-card-link {
  display: inline-block;
  margin-top: 6px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #c8102e;
  color: #ffffff !important;
  font-weight: 800;
  text-decoration: none;
}
.jm-preserved-card .jm-card-link:hover {
  background: #6eb6e8;
  color: #090a0c !important;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .jm-preserved-sections { grid-template-columns: 1fr; gap: 18px; }
  .jm-preserved-card { min-height: 0; padding: 27px 22px; }
}

/* End Layout CSS */

