/**
 * 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;
}
.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;
}
.fl-row-fixed-width {
	max-width: 1350px;
}
.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;
}
.fl-node-tomcjl9107e4 {
	color: #ffffff;
}
.fl-builder-content .fl-node-tomcjl9107e4 *: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-tomcjl9107e4 a {
	color: #ffffff;
}

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

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


.fl-node-tomcjl9107e4 > .fl-row-content-wrap {
	background-color: #098844;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-tomcjl9107e4 > .fl-row-content-wrap {
	margin-top:-2px;
	margin-bottom:-2px;
}
 .fl-node-tomcjl9107e4 > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}





.fl-node-i4h3b2j6x5zd > .fl-row-content-wrap {
	background-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-i4h3b2j6x5zd > .fl-row-content-wrap {
	margin-bottom:0px;
}
 .fl-node-i4h3b2j6x5zd > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}




.fl-node-vbrpuxnhfqaj {
	width: 35%;
}
.fl-node-vbrpuxnhfqaj > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-vbrpuxnhfqaj {
		width: 30% !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-vbrpuxnhfqaj {
		width: 80% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-rki23vba5ln6 {
	width: 50%;
}
.fl-node-rki23vba5ln6 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-zs1lye96taw7 {
	width: 65%;
}
.fl-node-zs1lye96taw7 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-zs1lye96taw7 {
		width: 20% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-9f43jgax15cd {
	width: 50%;
}
.fl-node-9f43jgax15cd > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
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-kjb7y1rml690, .fl-node-kjb7y1rml690 .fl-photo {
	text-align: left;
}
.fl-node-kjb7y1rml690 .fl-photo-content, .fl-node-kjb7y1rml690 .fl-photo-img {
	width: 258px;
}
 .fl-node-kjb7y1rml690 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
 .fl-node-tziy4aou5wbm > .fl-module-content {
	margin-top:9px;
	margin-bottom:8px;
}
@media ( max-width: 768px ) {
 .fl-node-tziy4aou5wbm.fl-module > .fl-module-content {
	margin-top:-3px;
	margin-bottom:0px;
}
}
 .fl-node-hy3b4soa1e6r > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
/**
 * CSS applied to all Search Form module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all Search Form module instances at the responsive breakpoint.
 */
 } .fl-node-w76vz4oq1ghy > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
/**
 * Horizontal Layout
 */
.fl-button-group-layout-horizontal .fl-button-group-buttons,
.fl-button-group-layout-horizontal.fl-button-group-buttons {
    display: flex;
    flex-wrap: wrap;
}

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

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

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

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




	#fl-button-group-button-qjhf5v7u9ykd-0 a.fl-button {
									background: #ffffff;
			border: 1px solid #f3f3f3;		
			}

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

		.fl-builder-content .fl-node-qjhf5v7u9ykd .fl-button,
	.fl-builder-content .fl-node-qjhf5v7u9ykd .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-qjhf5v7u9ykd .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: right;
}
.fl-node-qjhf5v7u9ykd .fl-button-group-layout-horizontal .fl-button-group-buttons {
	justify-content: flex-end;
}
.fl-builder-content .fl-node-qjhf5v7u9ykd .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-builder-content .fl-node-qjhf5v7u9ykd .fl-button-group .fl-button-group-buttons .fl-button-group-button a.fl-button {
	padding-top: 12px;
	padding-bottom: 10px;
}
#fl-button-group-button-qjhf5v7u9ykd-0 a.fl-button {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-qjhf5v7u9ykd > .fl-module-content {
	margin-top:4px;
	margin-bottom:4px;
}
@media ( max-width: 768px ) {
 .fl-node-qjhf5v7u9ykd.fl-module > .fl-module-content {
	margin-top:-2px;
	margin-bottom:0px;
}
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

/* Sticky */
.fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
	position: fixed;
	width: 100%;
	z-index: 100;
}

/* Sticky - fix flyout menu  */
.fl-theme-builder-flyout-menu-push-left .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
	left: auto !important;
	transition: left 0.2s !important;
}
.fl-theme-builder-flyout-menu-push-right .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
	right: auto !important;
	transition: right 0.2s !important;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-sticky .fl-menu .fl-menu-mobile-opacity {
	height: 100vh;
	width: 100vw;
}
.fl-builder-content[data-type="header"]:not([data-overlay="1"]).fl-theme-builder-header-sticky .fl-menu-mobile-flyout {
	top: 0px;
}
.fl-theme-builder-flyout-menu-active body {
	margin-left: 0px !important;
	margin-right: 0px !important;
}
.fl-theme-builder-has-flyout-menu, .fl-theme-builder-has-flyout-menu body {
	overflow-x: hidden;
}
.fl-theme-builder-flyout-menu-push-right {
	right: 0px;
	transition: right 0.2s ease-in-out;
}
.fl-theme-builder-flyout-menu-push-left {
	left: 0px;
	transition: left 0.2s ease-in-out;
}
.fl-theme-builder-flyout-menu-active .fl-theme-builder-flyout-menu-push-right {
	position: relative;
	right: 250px;
}
.fl-theme-builder-flyout-menu-active .fl-theme-builder-flyout-menu-push-left {
	position: relative;
	left: 250px;
}
.fl-theme-builder-flyout-menu-active .fl-builder-content[data-type="header"] .fl-menu-disable-transition {
	transition: none;
}

/* Shrink */
.fl-builder-content[data-shrink="1"] .fl-row-content-wrap,
.fl-builder-content[data-shrink="1"] .fl-col-content,
.fl-builder-content[data-shrink="1"] .fl-module-content,
.fl-builder-content[data-shrink="1"] img {
	-webkit-transition: all 0.4s ease-in-out, background-position 1ms;
	-moz-transition: all 0.4s ease-in-out, background-position 1ms;
	transition: all 0.4s ease-in-out, background-position 1ms;
}
.fl-builder-content[data-shrink="1"] img {
	width: auto;
}
.fl-builder-content[data-shrink="1"] img.fl-photo-img {
	width: auto;
	height: auto;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink .fl-row-content-wrap {
	margin-bottom: 0;
	margin-top: 0;
}
.fl-theme-builder-header-shrink-row-bottom.fl-row-content-wrap {
	padding-bottom: 5px;
}
.fl-theme-builder-header-shrink-row-top.fl-row-content-wrap {
	padding-top: 5px;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink .fl-col-content {
	margin-bottom: 0;
	margin-top: 0;
	padding-bottom: 0;
	padding-top: 0;
}
.fl-theme-builder-header-shrink-module-bottom.fl-module-content {
	margin-bottom: 5px;
}
.fl-theme-builder-header-shrink-module-top.fl-module-content {
	margin-top: 5px;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink img {
	-webkit-transition: all 0.4s ease-in-out, background-position 1ms;
	-moz-transition: all 0.4s ease-in-out, background-position 1ms;
	transition: all 0.4s ease-in-out, background-position 1ms;
}

/* Overlay */
.fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-sticky):not(.fl-builder-content-editing) {
	position: absolute;
	width: 100%;
	z-index: 100;
}
.fl-builder-edit body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"] {
	display: none;
}
body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-row-content-wrap,
body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-col-content {
	background: transparent;
}

                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
        			.fl-node-tomcjl9107e4 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-i4h3b2j6x5zd .fl-row-content {
				min-width: 0px;
			}
		





.fl-node-uh485qomlr9c > .fl-row-content-wrap {
	background-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-uh485qomlr9c > .fl-row-content-wrap {
	padding-bottom:0px;
}




.fl-node-mvs9blhg76wy {
	width: 53%;
}
.fl-node-mvs9blhg76wy > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-mvs9blhg76wy {
		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-mvs9blhg76wy {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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




.fl-node-4jydxukmt3r2 {
	width: 60%;
}




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




.fl-node-6tj7sx1nvmfd {
	width: 21%;
}
.fl-node-6tj7sx1nvmfd > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}




.fl-node-lmr87o9k14ug {
	width: 39%;
}




.fl-node-3dubr8fe9ag0 {
	width: 26%;
}
.fl-node-3dubr8fe9ag0 > .fl-col-content {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
@media ( max-width: 992px ) {
 .fl-node-3dubr8fe9ag0.fl-col > .fl-col-content {
	margin-left:-20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-3dubr8fe9ag0.fl-col > .fl-col-content {
	margin-left:0px;
}
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }.fl-node-iz2qy01jnhgf .fl-icon i,
.fl-node-iz2qy01jnhgf .fl-icon i:before {
	color: #9b9b9b;
}



.fl-node-iz2qy01jnhgf .fl-icon i:hover,
.fl-node-iz2qy01jnhgf .fl-icon i:hover:before,
.fl-node-iz2qy01jnhgf .fl-icon a:hover i,
.fl-node-iz2qy01jnhgf .fl-icon a:hover i:before {
	color: #7f7f7f;
}

.fl-node-iz2qy01jnhgf .fl-icon i, .fl-node-iz2qy01jnhgf .fl-icon i:before {
	font-size: 16px;
}
.fl-node-iz2qy01jnhgf .fl-icon-wrap .fl-icon-text {
	height: 28px;
}
.fl-node-iz2qy01jnhgf.fl-module-icon {
	text-align: left;
}
@media(max-width: 1200px) {
	.fl-node-iz2qy01jnhgf .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 992px) {
	.fl-node-iz2qy01jnhgf .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 768px) {
	.fl-node-iz2qy01jnhgf .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
 .fl-node-iz2qy01jnhgf > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
	margin-left:5px;
}
.fl-node-pqe9dw8zu0ix .fl-icon i,
.fl-node-pqe9dw8zu0ix .fl-icon i:before {
	color: #9b9b9b;
}




.fl-node-pqe9dw8zu0ix .fl-icon i, .fl-node-pqe9dw8zu0ix .fl-icon i:before {
	font-size: 16px;
}
.fl-node-pqe9dw8zu0ix .fl-icon-wrap .fl-icon-text {
	height: 28px;
}
.fl-node-pqe9dw8zu0ix.fl-module-icon {
	text-align: left;
}
@media(max-width: 1200px) {
	.fl-node-pqe9dw8zu0ix .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 992px) {
	.fl-node-pqe9dw8zu0ix .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 768px) {
	.fl-node-pqe9dw8zu0ix .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
 .fl-node-pqe9dw8zu0ix > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:3px;
}
.fl-builder-content .fl-node-ol2ufxcrbh3t .fl-rich-text, .fl-builder-content .fl-node-ol2ufxcrbh3t .fl-rich-text *:not(b, strong) {
	font-size: 18px;
	line-height: 2.5;
}
 .fl-node-ol2ufxcrbh3t > .fl-module-content {
	margin-top:69px;
	margin-left:72px;
}
@media ( max-width: 992px ) {
 .fl-node-ol2ufxcrbh3t.fl-module > .fl-module-content {
	margin-left:10px;
}
}
@media (max-width: 768px) { .fl-node-ol2ufxcrbh3t > .fl-module-content { margin-top:20px; } }.fl-node-po26rgiasfdc .fl-icon i,
.fl-node-po26rgiasfdc .fl-icon i:before {
	color: #9b9b9b;
}



.fl-node-po26rgiasfdc .fl-icon i:hover,
.fl-node-po26rgiasfdc .fl-icon i:hover:before,
.fl-node-po26rgiasfdc .fl-icon a:hover i,
.fl-node-po26rgiasfdc .fl-icon a:hover i:before {
	color: #7f7f7f;
}

.fl-node-po26rgiasfdc .fl-icon i, .fl-node-po26rgiasfdc .fl-icon i:before {
	font-size: 16px;
}
.fl-node-po26rgiasfdc .fl-icon-wrap .fl-icon-text {
	height: 28px;
}
.fl-node-po26rgiasfdc.fl-module-icon {
	text-align: left;
}
@media(max-width: 1200px) {
	.fl-node-po26rgiasfdc .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 992px) {
	.fl-node-po26rgiasfdc .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 768px) {
	.fl-node-po26rgiasfdc .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
 .fl-node-po26rgiasfdc > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
	margin-left:5px;
}
.fl-node-f5rim2sx8odt .fl-icon i,
.fl-node-f5rim2sx8odt .fl-icon i:before {
	color: #9b9b9b;
}




.fl-node-f5rim2sx8odt .fl-icon i, .fl-node-f5rim2sx8odt .fl-icon i:before {
	font-size: 16px;
}
.fl-node-f5rim2sx8odt .fl-icon-wrap .fl-icon-text {
	height: 28px;
}
.fl-node-f5rim2sx8odt.fl-module-icon {
	text-align: left;
}
@media(max-width: 1200px) {
	.fl-node-f5rim2sx8odt .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 992px) {
	.fl-node-f5rim2sx8odt .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
@media(max-width: 768px) {
	.fl-node-f5rim2sx8odt .fl-icon-wrap .fl-icon-text {
		height: 28px;
	}
}
 .fl-node-f5rim2sx8odt > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:3px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-mg6czu4dwofn h5.fl-heading a,
.fl-row .fl-col .fl-node-mg6czu4dwofn h5.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-mg6czu4dwofn h5.fl-heading .fl-heading-text *,
.fl-node-mg6czu4dwofn h5.fl-heading .fl-heading-text {
	color: #098844;
}
.fl-node-mg6czu4dwofn.fl-module-heading .fl-heading {
	text-align: left;
}
 .fl-node-mg6czu4dwofn > .fl-module-content {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-mg6czu4dwofn > .fl-module-content { margin-top:20px; } }.fl-node-2zukte13vr5h, .fl-node-2zukte13vr5h .fl-photo {
	text-align: left;
}
.fl-node-2zukte13vr5h .fl-photo-content, .fl-node-2zukte13vr5h .fl-photo-img {
	width: 322px;
}
 .fl-node-2zukte13vr5h > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-z2lrnh786dsj {
	min-height: 0;
}

.fl-node-z2lrnh786dsj .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #e5e5e5;
	max-width: 100%;
	margin: auto;
}

			 .fl-node-z2lrnh786dsj > .fl-module-content {
	margin-bottom:20px;
}
.fl-builder-content .fl-node-pzjvx1w7lrbi .fl-rich-text, .fl-builder-content .fl-node-pzjvx1w7lrbi .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 14px;
}
 .fl-node-pzjvx1w7lrbi > .fl-module-content {
	margin-top:0px;
}
.fl-builder-content .fl-node-5mta83nei2cf .fl-rich-text, .fl-builder-content .fl-node-5mta83nei2cf .fl-rich-text *:not(b, strong) {
	font-size: 14px;
	text-align: right;
}
 .fl-node-5mta83nei2cf > .fl-module-content {
	margin-top:0px;
}
.fl-node-xjzi7dcw0r65 {
	min-height: 0;
}

.fl-node-xjzi7dcw0r65 .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #E5E5E5;
	max-width: 100%;
	margin: auto;
}

			.fl-builder-content .fl-node-gcs0r74uovk5 .fl-rich-text, .fl-builder-content .fl-node-gcs0r74uovk5 .fl-rich-text *:not(b, strong) {
	font-weight: 700;
	font-size: 15.5px;
}
 .fl-node-gcs0r74uovk5 > .fl-module-content {
	margin-top:10px;
	margin-bottom:-10px;
}
@media (max-width: 768px) { .fl-node-gcs0r74uovk5 > .fl-module-content { margin-bottom:20px; } }.fl-builder-content .fl-node-x6eyu70dojrz .fl-rich-text, .fl-builder-content .fl-node-x6eyu70dojrz .fl-rich-text *:not(b, strong) {
	font-weight: 400;
	font-size: 15.5px;
}
 .fl-node-x6eyu70dojrz > .fl-module-content {
	margin-bottom:0px;
}
 .fl-node-kifo8djm4pwx > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
/**
 * CSS applied to all EveryAction Forms module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all EveryAction Forms module instances at the responsive breakpoint.
 */
 } .fl-node-u4k50hnqp87o > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
/**
 * CSS applied to all social-icons module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all social-icons module instances at the responsive breakpoint.
 */
 }.fl-node-qo53w2c9ugif .social-icons .icon {
	color: #000000;
	background-color: #fdb400;
}
.fl-node-qo53w2c9ugif .social-icons .icon:hover {
	color: #000000;
	background-color: #fdc333;
}

/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */


                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
		
        
		
        
        			.fl-node-uh485qomlr9c .fl-row-content {
				min-width: 0px;
			}
		





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





.fl-node-dxzygowa2r5b {
	color: #ffffff;
}
.fl-builder-content .fl-node-dxzygowa2r5b *: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-dxzygowa2r5b a {
	color: #ffffff;
}

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

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


.fl-node-dxzygowa2r5b > .fl-row-content-wrap:after {
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0,0,0,0.95) 100%);
}
.fl-node-dxzygowa2r5b > .fl-row-content-wrap {
	background-image: url(https://actionfund.sandyhookpromise.org/wp-content/uploads/2024/02/New-Jersey-1024x576.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
 .fl-node-dxzygowa2r5b > .fl-row-content-wrap {
	margin-bottom:75px;
}
 .fl-node-dxzygowa2r5b > .fl-row-content-wrap {
	padding-top:100px;
	padding-bottom:100px;
}

























.fl-node-4euv72wf6rma > .fl-row-content-wrap {
	background-color: #098844;
}
.fl-node-4euv72wf6rma .fl-row-content {
	max-width: 1310px;
}
 .fl-node-4euv72wf6rma > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
@media ( max-width: 768px ) {
 .fl-node-4euv72wf6rma.fl-row > .fl-row-content-wrap {
	padding-right:20px;
	padding-left:20px;
}
}





.fl-node-u2hrcvzyj4og .fl-row-content {
	max-width: 1346px;
}





.fl-node-dvmwurzl9kg1 {
	color: #ffffff;
}
.fl-builder-content .fl-node-dvmwurzl9kg1 *: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-dvmwurzl9kg1 a {
	color: #ffffff;
}

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

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


.fl-node-dvmwurzl9kg1 > .fl-row-content-wrap {
	background-repeat: no-repeat;
	background-position: right center;
	background-attachment: scroll;
	background-size: contain;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
.fl-node-dvmwurzl9kg1.fl-row-fixed-width, .fl-node-dvmwurzl9kg1 .fl-row-fixed-width {
	max-width: 1310px;
}





.fl-node-7r0ez4ia8dm9 {
	color: #000000;
}
.fl-builder-content .fl-node-7r0ez4ia8dm9 *: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-7r0ez4ia8dm9 a {
	color: #000000;
}

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

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


.fl-node-7r0ez4ia8dm9 > .fl-row-content-wrap:after {
	background-color: rgba(228,248,216,0.92);
}
.fl-node-7r0ez4ia8dm9 > .fl-row-content-wrap {
	background-image: url(https://actionfund.sandyhookpromise.org/wp-content/uploads/2024/02/shf-favicon.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: auto;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
.fl-node-7r0ez4ia8dm9.fl-row-fixed-width, .fl-node-7r0ez4ia8dm9 .fl-row-fixed-width {
	max-width: 1310px;
}
@media(max-width: 1200px) {
	.fl-node-7r0ez4ia8dm9 > .fl-row-content-wrap {
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}










.fl-node-35mdp7f1ls9k {
	color: #ffffff;
}
.fl-builder-content .fl-node-35mdp7f1ls9k *: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-35mdp7f1ls9k a {
	color: #ffffff;
}

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

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


.fl-node-35mdp7f1ls9k > .fl-row-content-wrap {
	background-image: url(https://actionfund.sandyhookpromise.org/wp-content/uploads/2024/02/shf-favicon.png);
	background-repeat: no-repeat;
	background-position: 105% 0%;
	background-attachment: scroll;
	background-size: contain;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
.fl-node-35mdp7f1ls9k.fl-row-fixed-width, .fl-node-35mdp7f1ls9k .fl-row-fixed-width {
	max-width: 1310px;
}
@media(max-width: 1200px) {
	.fl-node-35mdp7f1ls9k > .fl-row-content-wrap {
		background-position: 120% 0%;
	}
}
 .fl-node-35mdp7f1ls9k > .fl-row-content-wrap {
	margin-right:40px;
}





.fl-node-mrynfpw2jhxq > .fl-row-content-wrap {
	background-color: #F2F2F2;
}
 .fl-node-mrynfpw2jhxq > .fl-row-content-wrap {
	margin-top:40px;
}




.fl-node-47kleqfv1d5w {
	width: 100%;
}




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




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




.fl-node-ft4cmvoley0s {
	width: 65%;
}




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




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




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




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




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




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




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




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




.fl-node-8lzp6ndfqr7t {
	width: 100%;
}
.fl-node-8lzp6ndfqr7t > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}




.fl-node-tub4qzejs3y2 {
	width: 51.11%;
}




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




.fl-node-bjsnctw7k4p9 {
	width: 60%;
}




.fl-node-6srnqfu14heo {
	width: 100%;
}




.fl-node-275b63vf8kx4 {
	width: 37%;
}




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




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




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




.fl-node-p3ayh52w4zqc {
	width: 34%;
}




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




.fl-node-1a8w3m2juvkx {
	width: 40%;
}




.fl-node-egro92mty3p6 {
	width: 40%;
}




.fl-node-mp8ch7q6wrfv {
	width: 48.89%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-mp8ch7q6wrfv {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-mp8ch7q6wrfv > .fl-col-content {
	padding-right:50px;
	padding-left:25px;
}




.fl-node-yoltv0bu3x6k {
	width: 39%;
}
.fl-node-yoltv0bu3x6k > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}
 .fl-node-yoltv0bu3x6k > .fl-col-content {
	margin-top:20px;
	margin-right:-20px;
	margin-bottom:20px;
	margin-left:75px;
}




.fl-node-9jz8pyxd2rwt {
	width: 62%;
}




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




.fl-node-bresq5oti3z9 {
	width: 100%;
}
.fl-row .fl-col .fl-node-pem593jtfw1l h2.fl-heading a,
.fl-row .fl-col .fl-node-pem593jtfw1l h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-pem593jtfw1l h2.fl-heading .fl-heading-text *,
.fl-node-pem593jtfw1l h2.fl-heading .fl-heading-text {
	color: #098844;
}
.fl-node-pem593jtfw1l.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-pem593jtfw1l > .fl-module-content {
	margin-top:4px;
	margin-bottom:0px;
}
/**
 * CSS applied to all USStatesMapCurrentState module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all USStatesMapCurrentState module instances at the responsive breakpoint.
 */
 }/**
 * CSS applied to all Social Share module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all Social Share module instances at the responsive breakpoint.
 */
 }/**
 * CSS applied to all Breadcrumbs module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all Breadcrumbs module instances at the responsive breakpoint.
 */
 } .fl-node-vl0f3rsu9at5 > .fl-module-content {
	margin-top:0px;
	margin-bottom:5px;
}
	.fl-builder-content .fl-node-2xmfoyc3r1pa .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-2xmfoyc3r1pa .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-2xmfoyc3r1pa .fl-rich-text, .fl-builder-content .fl-node-2xmfoyc3r1pa .fl-rich-text *:not(b, strong) {
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 4px;
	text-transform: uppercase;
}
 .fl-node-2xmfoyc3r1pa > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-wybsqz4kaf6o .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-wybsqz4kaf6o .fl-module-content .fl-rich-text * {
		color: #098844;
	}
	.fl-builder-content .fl-node-wybsqz4kaf6o .fl-rich-text, .fl-builder-content .fl-node-wybsqz4kaf6o .fl-rich-text *:not(b, strong) {
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 4px;
	text-transform: uppercase;
}
 .fl-node-wybsqz4kaf6o > .fl-module-content {
	margin-top:47px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-wybsqz4kaf6o > .fl-module-content { margin-top:20px; } }/**
 * CSS applied to all Statistics module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all Statistics module instances at the responsive breakpoint.
 */
 }.fl-node-qt7639kwyhzb.fl-module-heading .fl-heading {
	line-height: 1.4;
	text-align: center;
}
 .fl-node-qt7639kwyhzb > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-orezkbfug86x.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-orezkbfug86x > .fl-module-content {
	margin-top:40px;
}
@media (max-width: 768px) { .fl-node-orezkbfug86x > .fl-module-content { margin-top:20px; } }/**
 * CSS applied to all Media module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all Media module instances at the responsive breakpoint.
 */
 } .fl-node-csrwplefn2my > .fl-module-content {
	margin-right:50px;
}
@media (max-width: 768px) { .fl-node-csrwplefn2my > .fl-module-content { margin-right:20px; } } .fl-node-89t6p2mk3h5j > .fl-module-content {
	margin-top:20px;
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-18hcs0nw6fav .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-18hcs0nw6fav .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-18hcs0nw6fav .fl-rich-text, .fl-builder-content .fl-node-18hcs0nw6fav .fl-rich-text *:not(b, strong) {
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 4px;
	text-align: left;
	text-transform: uppercase;
}
 .fl-node-18hcs0nw6fav > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-xb825i6fwlsu .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-xb825i6fwlsu .fl-module-content .fl-rich-text * {
		color: #098844;
	}
	.fl-builder-content .fl-node-xb825i6fwlsu .fl-rich-text, .fl-builder-content .fl-node-xb825i6fwlsu .fl-rich-text *:not(b, strong) {
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 4px;
	text-transform: uppercase;
}
 .fl-node-xb825i6fwlsu > .fl-module-content {
	margin-top:47px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-xb825i6fwlsu > .fl-module-content { margin-top:20px; } }/**
 * CSS applied to all Sources module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all Sources module instances at the responsive breakpoint.
 */
 } .fl-node-4vhz3li215uf > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-v3jkm4cl7rsx > .fl-module-content {
	margin-top:20px;
	margin-bottom:0px;
}
.pp-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    z-index: -1;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.pp-modal-wrap.pp-modal-active {
	z-index: 99999;
	visibility: visible;
	opacity: 1;
}
.pp-modal-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
}
.pp-modal-button .sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
}

.pp-modal {
    display: block;
    position: relative;
    margin: auto auto;
    opacity: 1;
	outline: 0;
}
.pp-modal-container {
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: auto;
    opacity: 0;
	z-index: 1;
}
.pp-modal.layout-fullscreen {
    max-width: 100%;
    height: auto;
    min-height: 100%;
    margin: 0;
}
/* .pp-modal.layout-standard:not(.position-auto) {
	top: 50%;
	transform: translateY(-50%);
} */
.pp-modal .pp-modal-content {
	height: inherit;
	overflow-y: auto;
	position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
}
/* .pp-modal.layout-standard .pp-modal-content {
	max-height: 90vh;
} */
.pp-modal .pp-modal-body {
    overflow: hidden;
	height: inherit;
}
.pp-modal .pp-modal-header {
    display: table;
    width: 100%;
}
.pp-modal .pp-modal-title {
    margin: 0;
    display: table-cell;
    vertical-align: middle;
}

.pp-modal .pp-modal-frame iframe {
	width: 100%;
}

.pp-modal .pp-modal-video-embed {
	position: relative;
	padding-top: 56.25%;
	height: inherit;
}
.pp-modal .pp-modal-video-embed iframe,
.pp-modal .pp-modal-video-embed .wp-video,
.pp-modal .pp-modal-video-embed > video {
	height: 100%;
	width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.pp-modal .pp-modal-content.pp-modal-frame:before {
	background-position: 50%;
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3D(-50%, -50%, 0);
}

.pp-modal .pp-modal-content-inner {
	position: relative;
    height: 100%;
}

.pp-modal-trigger {
    display: inline-block;
    text-decoration: none;
    text-shadow: none;
}
.pp-modal-trigger .pp-button-icon {
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
    width: auto;
}
.pp-modal-trigger .pp-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.pp-modal-trigger .pp-modal-trigger-text {
    vertical-align: middle;
}
.pp-modal-close {
    position: relative;
    right: 10px;
    line-height: 0;
    cursor: pointer;
    display: table-cell;
    vertical-align: middle;
    top: 0;
    padding: 5px;
	-webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.pp-modal-close.box-top-right-out {
    position: absolute;
    right: -40px;
}
.pp-modal .pp-modal-close.box-top-left-out {
    position: absolute;
    left: -40px;
    right: 0;
}
.pp-modal-close.win-top-right {
    position: fixed;
}
.pp-modal-close.win-top-left {
    position: fixed;
    right: 0;
}
.pp-modal-close .bar-wrap {
    display: inline-block;
    position: relative;
}
.pp-modal-close .bar-wrap span {
    position: absolute;
    border-radius: 0;
    width: 100%;
    top: 49.5%;
    left: 0px;
}
.pp-modal-close .bar-wrap .bar-1 {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
}
.pp-modal-close .bar-wrap .bar-2 {
    -webkit-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    transform: rotate(-225deg);
}
.pp-modal-wrap .modal-visible {
    opacity: 1;
}
.pp-modal .pp-modal-content .fl-row-content-wrap,
.pp-modal .pp-modal-content .fl-builder-module-template {
    padding: 0;
}
.fl-module-pp-modal-box {
    z-index: 2 !important;
}

.pp-modal-wrap .pp-flexbox {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.pp-modal-wrap .pp-flexbox.layout-vertical {
	flex-direction: column;
}
.pp-modal-wrap .pp-flexbox .pp-flexbox-item {
	align-self: stretch;
}
.pp-modal-wrap .pp-flexbox .pp-flexbox-item.object-fit-cover img {
	height: 100%;
	object-fit: cover;
}

@media only screen and (max-width: 768px) {
	.pp-modal-wrap .pp-flexbox {
		flex-direction: column;
	}
	.pp-modal-wrap .pp-flexbox .pp-flexbox-item {
		width: 100%;
	}
}@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }body:not(.fl-builder-edit) .fl-node-y68zchua5qft > .fl-module-content {
	margin: 0;
}

.fl-node-y68zchua5qft .pp-modal-button {
	text-align: left;
}
.fl-node-y68zchua5qft .pp-modal-trigger,
.fl-node-y68zchua5qft .pp-modal-button .pp-modal-trigger,
.fl-node-y68zchua5qft .pp-modal-button .pp-modal-trigger .pp-modal-trigger-icon {
		color: #ffffff;
			background-color: #428bca;
					text-align: center;
	text-decoration: none;
}


.fl-node-y68zchua5qft .pp-modal-trigger .pp-button-icon {
	}

.fl-builder-content .fl-node-y68zchua5qft .pp-modal-trigger:hover,
.fl-node-y68zchua5qft .pp-modal-trigger:hover {
        color: #f7f7f7;
			background-color: #444444;
	        border-color: #222222;
}


.fl-node-y68zchua5qft .pp-modal-height-auto,
#modal-y68zchua5qft.pp-modal-height-auto {
    display: block !important;
    position: absolute;
    top: -99999px;
    width: 500px;
    visibility: hidden;
}

.fl-node-y68zchua5qft .pp-modal-height-auto .pp-modal-overlay,
#modal-y68zchua5qft.pp-modal-height-auto .pp-modal-overlay {
    display: none !important;
}

.fl-node-y68zchua5qft .pp-modal,
#modal-y68zchua5qft .pp-modal {
	    background-image: url();
    background-size: cover;
    background-repeat: no-repeat;
    }




.fl-node-y68zchua5qft .pp-modal.layout-standard,
#modal-y68zchua5qft .pp-modal.layout-standard {
    width: 500px;
    		height: auto;
	    max-width: 90%;
}

.fl-node-y68zchua5qft .pp-modal .pp-modal-header,
#modal-y68zchua5qft .pp-modal .pp-modal-header {
			background-color: #ffffff;
	    border-bottom: 1px solid #eeeeee;
}

	.fl-node-y68zchua5qft .pp-modal .pp-modal-header,
	#modal-y68zchua5qft .pp-modal .pp-modal-header {
					border-top-left-radius: 0px;
						border-top-right-radius: 0px;
				}
	
.fl-node-y68zchua5qft .pp-modal .pp-modal-title,
#modal-y68zchua5qft .pp-modal .pp-modal-title {
    padding: 10px 15px;
    color: #444444;
}
.fl-node-y68zchua5qft .pp-modal .pp-modal-content,
#modal-y68zchua5qft .pp-modal .pp-modal-content {
        padding: 0px;
}
.fl-node-y68zchua5qft .pp-modal .pp-modal-content.pp-modal-frame:before,
#modal-y68zchua5qft .pp-modal .pp-modal-content.pp-modal-frame:before {
    background: url(https://actionfund.sandyhookpromise.org/wp-content/plugins/bbpowerpack/modules/pp-modal-box/loader.gif) no-repeat;
}
.fl-node-y68zchua5qft .pp-modal .pp-modal-content-inner,
#modal-y68zchua5qft .pp-modal .pp-modal-content-inner {
        overflow: hidden;
        padding: px;
}

.fl-node-y68zchua5qft .pp-modal-close,
#modal-y68zchua5qft .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 5;
}
.fl-node-y68zchua5qft .pp-modal-close:hover,
#modal-y68zchua5qft .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-y68zchua5qft .pp-modal-close.box-top-right,
#modal-y68zchua5qft .pp-modal-close.box-top-right {
    top: 10px;
    right: 5px;
}
.fl-node-y68zchua5qft .pp-modal-close.box-top-left,
#modal-y68zchua5qft .pp-modal-close.box-top-left {
    top: 10px;
    left: -10px;
}
.fl-node-y68zchua5qft .pp-modal-close.win-top-right,
#modal-y68zchua5qft .pp-modal-close.win-top-right {
    top: 10px;
    right: 5px;
}
.fl-node-y68zchua5qft .pp-modal-close.win-top-left,
#modal-y68zchua5qft .pp-modal-close.win-top-left {
    top: 10px;
    left: -10px;
}
.fl-node-y68zchua5qft .pp-modal-close .bar-wrap,
#modal-y68zchua5qft .pp-modal-close .bar-wrap {
    width: 100%;
    height: 100%;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-y68zchua5qft .pp-modal-close .bar-wrap span,
#modal-y68zchua5qft .pp-modal-close .bar-wrap span {
    background: #ffffff;
    height: 2px;
    margin-top: -1px;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-y68zchua5qft .pp-modal-close:hover .bar-wrap span,
#modal-y68zchua5qft .pp-modal-close:hover .bar-wrap span {
    background: #dddddd;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-y68zchua5qft .pp-modal-container.fadeIn.animated,
#modal-y68zchua5qft .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}
.fl-node-y68zchua5qft .pp-modal-container.fadeOut.animated,
#modal-y68zchua5qft .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-y68zchua5qft .has-overlay-animation .pp-modal-container,
#modal-y68zchua5qft.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

.fl-node-y68zchua5qft .pp-modal-wrap:not(.has-overlay-animation) .pp-modal-overlay,
#modal-y68zchua5qft:not(.has-overlay-animation) .pp-modal-overlay {
    		background-color: rgba(0,0,0,0.3);
		}

@media only screen and (max-width: 0px) {
    .fl-node-y68zchua5qft .pp-modal.layout-fullscreen,
    #modal-y68zchua5qft .pp-modal.layout-fullscreen {
        top: 0 !important;
        margin: 10px !important;
    }
    .fl-node-y68zchua5qft .pp-modal.layout-standard,
    #modal-y68zchua5qft .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .fl-node-y68zchua5qft .pp-modal.layout-standard,
    #modal-y68zchua5qft .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-y68zchua5qft .pp-modal-button {
	text-align: left;
}
.fl-node-y68zchua5qft .pp-modal-trigger, .fl-node-y68zchua5qft .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-y68zchua5qft .pp-modal, #modal-y68zchua5qft .pp-modal {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.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-builder-content .fl-node-4fginhu83cb1 .fl-rich-text, .fl-builder-content .fl-node-4fginhu83cb1 .fl-rich-text *:not(b, strong) {
	text-align: center;
}
 .fl-node-ropi4y8fm50q > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
 .fl-node-1rlxcpk850td > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-dg7byv3l0z1p .fl-rich-text, .fl-builder-content .fl-node-dg7byv3l0z1p .fl-rich-text *:not(b, strong) {
	text-align: center;
}
 .fl-node-dg7byv3l0z1p > .fl-module-content {
	margin-right:200px;
	margin-left:200px;
}
@media (max-width: 768px) { .fl-node-dg7byv3l0z1p > .fl-module-content { margin-left:20px;margin-right:20px; } }/**
 * CSS applied to all State Laws module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all State Laws module instances at the responsive breakpoint.
 */
 }
.fl-node-n630qbeo9528 {
    /* background-color: #''; */
}
 .fl-node-n630qbeo9528 > .fl-module-content {
	margin-bottom:40px;
}
@media (max-width: 768px) { .fl-node-n630qbeo9528 > .fl-module-content { margin-bottom:20px; } } .fl-node-byqcaen9h3z5 > .fl-module-content {
	margin-top:12px;
	margin-bottom:-10px;
}
@media ( max-width: 992px ) {
 .fl-node-byqcaen9h3z5.fl-module > .fl-module-content {
	margin-bottom:-1px;
}
}
@media ( max-width: 768px ) {
 .fl-node-byqcaen9h3z5.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
 .fl-node-lbs7r48n0cxp > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
/**
 * CSS applied to all Quotes module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all Quotes module instances at the responsive breakpoint.
 */
 } .fl-node-xeqkjhd9r4fs > .fl-module-content {
	margin-top:12px;
	margin-bottom:-10px;
}
@media ( max-width: 992px ) {
 .fl-node-xeqkjhd9r4fs.fl-module > .fl-module-content {
	margin-bottom:-1px;
}
}
@media ( max-width: 768px ) {
 .fl-node-xeqkjhd9r4fs.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
 .fl-node-zastxvneh5jk > .fl-module-content {
	margin-right:50px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-zastxvneh5jk > .fl-module-content { margin-right:20px; } }/**
 * CSS applied to all Content Cards module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all Content Cards module instances at the responsive breakpoint.
 */
 } .fl-node-p8kylnt0arqb > .fl-module-content {
	margin-bottom:0px;
}
/**
 * CSS applied to all CTA Buttons module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all CTA Buttons module instances at the responsive breakpoint.
 */
 }
.fl-node-kw5nyapg3lv9 .cta-buttons {
    display: flex;
    align-content: ;
    justify-content: ;
}

@media ( max-width: 992px ) {
 .fl-node-kw5nyapg3lv9.fl-module > .fl-module-content {
	margin-bottom:50px;
}
}
@media (max-width: 768px) { .fl-node-kw5nyapg3lv9 > .fl-module-content { margin-bottom:20px; } } .fl-node-q7zlhbdx1fn5 > .fl-module-content {
	margin-top:10px;
}

.fl-node-ujhx50anwl31 .cta-buttons {
    display: flex;
    align-content: ;
    justify-content: ;
}

@media ( max-width: 992px ) {
 .fl-node-ujhx50anwl31.fl-module > .fl-module-content {
	margin-bottom:50px;
}
}
@media (max-width: 768px) { .fl-node-ujhx50anwl31 > .fl-module-content { margin-bottom:20px; } }
.fl-node-fep4rhd8tbvl .cta-buttons {
    display: flex;
    align-content: ;
    justify-content: ;
}

 .fl-node-fep4rhd8tbvl > .fl-module-content {
	margin-top:1px;
}

.fl-node-ufeagzpqym14 .cta-buttons {
    display: flex;
    align-content: left;
    justify-content: left;
}

.fl-node-eozwr9cnuk7f, .fl-node-eozwr9cnuk7f .fl-photo {
	text-align: center;
}
.fl-node-fxdn2rj943es.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-fxdn2rj943es > .fl-module-content {
	margin-bottom:0px;
}
/**
 * CSS applied to all Blog module instances.
 */
@media (max-width: 768px) { /**
 * CSS applied to all Blog module instances at the responsive breakpoint.
 */
 }
/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */


                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-kz0mp3ntuiq8 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-lst0256jb9ga .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-dxzygowa2r5b .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-gn6lsco91jqz .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-c5tbgok4760s .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-375cztwehol9 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-wdq6m3u5sx9a .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-4euv72wf6rma .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-u2hrcvzyj4og .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-je4d0blwovha .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-dvmwurzl9kg1 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-4eizy9mx6jdb .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-7r0ez4ia8dm9 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-dham9p6ujqcz .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-n4h3ko6eyz8v .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-35mdp7f1ls9k .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-mrynfpw2jhxq .fl-row-content {
				min-width: 0px;
			}
		
