/**
 * 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 .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;
}
.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: 991px) { /* Columns
------------------------------------------------------ */

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1500px;
}
.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;
}






.fl-node-270ct1i9kgor > .fl-row-content-wrap {
	background-color: #f3f5f7;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-270ct1i9kgor .fl-builder-top-edge-layer > * {
	width: 22%;
	left: auto;
	right: 0;
	height: 130%;
	top: 0;
	bottom: auto;
	transform: scaleX(1) scaleY(1);
}
.fl-node-270ct1i9kgor .fl-builder-top-edge-layer .fl-shape-content .fl-shape {
	fill: #0c3b5d;
}
 .fl-node-270ct1i9kgor > .fl-row-content-wrap {
	padding-top:3%;
	padding-right:5%;
	padding-bottom:3%;
	padding-left:5%;
}
@media ( max-width: 991px ) {
 .fl-node-270ct1i9kgor.fl-row > .fl-row-content-wrap {
	padding-top:50px;
	padding-bottom:50px;
}
}
@media ( max-width: 767px ) {
 .fl-node-270ct1i9kgor.fl-row > .fl-row-content-wrap {
	padding-top:35px;
	padding-bottom:35px;
}
}






 .fl-node-5d313755ac1ae > .fl-row-content-wrap {
	padding-right:5%;
	padding-left:5%;
}




.fl-node-5d313755b23f7 {
	width: 100%;
}




.fl-node-02ozd1twsb6f {
	width: 100%;
}
/* Bar */
.fl-module-fl-the-events-calendar-archive-view #tribe-events-bar {
	margin-bottom: 10px;
}
.fl-module-fl-the-events-calendar-archive-view #tribe-events-bar input:focus {
	outline: none;
}
.fl-module-fl-the-events-calendar-archive-view #tribe-events-bar input.tribe-events-button:focus {
	border: none;
}

/* Views List */
.fl-module-fl-the-events-calendar-archive-view .tribe-bar-views-list a span {
	background: none;
	padding-left: 0;
}
.tribe-bar-views-list a span:before {
	display: inline-block;
  margin-right: 5px;
	display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
	font-weight: 900;
}
.tribe-bar-views-list a span.tribe-icon-list:before {
	content: "\f0ca";
}
.tribe-bar-views-list a span.tribe-icon-month:before {
	content: "\f073";
}
.tribe-bar-views-list a span.tribe-icon-week:before {
	content: "\f073";
}
.tribe-bar-views-list a span.tribe-icon-day:before {
	content: "\f073";
}
.tribe-bar-views-list a span.tribe-icon-map:before {
	content: "\f041";
}
.tribe-bar-views-list a span.tribe-icon-photo:before {
	content: "\f03e";
}

/* Advanced Filters */
.tribe-events-filters-content {
	border: none;
}
#tribe_events_filters_wrapper select {
	color: #333;
}
.tribe-events-filters-horizontal .tribe-events-filter-group li:hover {
	background: transparent !important;
}

@media only screen and (min-width: 767px) {

	#tribe-events #tribe_events_filters_wrapper.tribe-events-filters-horizontal,
	#tribe-events .tribe-filters-closed #tribe_events_filters_wrapper.tribe-events-filters-horizontal {
	    margin: -10px 0 0 0;
		padding: 0;
	}
	#tribe-events .tribe-events-filters-horizontal #tribe_events_filters_toggle {
		margin: 0;
		padding: 10px 0;
	}
	.tribe-events-filters-horizontal .tribe-events-filters-content {
		border: none;
		padding: 10px;
	}
	#tribe-events .tribe-events-filters-horizontal #tribe_events_filter_control .tribe_events_filters_close_filters,
	#tribe-events .tribe-events-filters-horizontal #tribe_events_filter_control #tribe_events_filters_reset {
		border: none;
	}
	.tribe-events-filters-horizontal .tribe-events-filters-group-heading:hover {
		background: transparent !important;
	}
	#tribe-events .tribe-events-filters-horizontal .tribe-events-filter-group {
		border: none;
	    box-shadow: 0 0 15px rgba( 0, 0, 0, 0.3 );
	}
	#tribe-events .tribe-events-filters-horizontal .tribe-events-filter-group:before,
	#tribe-events .tribe-events-filters-horizontal .tribe-events-filter-group:after,
	#tribe-events .tribe-events-filters-horizontal .tribe-events-filter-group:before {
		border: none;
	}
}

/* Views Misc */
#tribe-events-header {
	display: none;
}
.tribe-events-calendar .tribe-events-tooltip,
.tribe-events-week .tribe-events-tooltip {
	padding: 10px;
}
.tribe-events-loop .tribe-event-featured .tribe-events-event-meta {
	background: transparent;
}

/* Week View */
.tribe-week-grid-hours [class*=time-row-] {
    padding: 0 3px;
}
.tribe-grid-allday .type-tribe_events {
	margin-bottom: 5px;
}
.tribe-grid-allday .type-tribe_events:last-child {
	margin-bottom: 0;
}

/* List View */
input#tribeHideRecurrence {
	margin-right: 5px;
}
.tribe-events-list .type-tribe_events {
	margin-bottom: 50px;
}
.tribe-events-list .type-tribe_events h2 {
	margin-top: 0;
}
.tribe-event-schedule-details {
	margin-bottom: 5px;
}
.tribe-events-list .tribe-events-venue-details {
	line-height: 1.4;
}
.tribe-events-list .tribe-events-event-image {
	width: 30%;
}
.recurringinfo .event-is-recurring .tribe-events-divider {
	margin: 0 5px;
}

@media only screen and (max-width: 768px) {

	.tribe-events-list .tribe-event-schedule-details {
		padding: 0 12px;
	}
	.tribe-events-list .tribe-events-event-image {
		float: none;
		margin: 0 0 10px;
		width: 100%;
	}
	.tribe-events-list .tribe-events-event-image img {
		width: 100%;
	}
}

/* Photo View */
.type-tribe_events.tribe-events-photo-event .tribe-events-photo-event-wrap {
	background: #fff;
	border: 1px solid #eee;
}
.tribe-events-photo-event-wrap .tribe-events-event-image,
.tribe-events-photo-event-wrap .tribe-events-event-image img {
	width: 100%;
}
.tribe-events-list .tribe-events-loop .tribe-events-photo-event .tribe-events-event-meta .recurringinfo {
	margin: 5px 0 10px;
}



.fl-node-5d313755abfbb .tribe-bar-views-list a span:before {
	font-family: "Font Awesome 5 Free";
}
.bb-heading-input.input-small {
	width: 46px !important;
}

.pp-heading-content {
	overflow: hidden;
}

.pp-heading-content .pp-heading-link {
	text-decoration: none;
}
.pp-heading-content span.heading-title {
	display: block;
}
.pp-heading-content .pp-heading.pp-separator-inline .heading-title {
	display: inline-block;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span {
	position: relative;
	display: inline-block;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before,
.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	border-width: 0;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
	right: 100%;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
	left: 100%;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-left .heading-title span {
	padding-left: 0 !important;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-right .heading-title span {
	padding-right: 0 !important;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-left .heading-title span:before {
	display: none;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-right .heading-title span:after {
	display: none;
}

.pp-heading-content .pp-heading.pp-separator--inline {
	display: flex;
	align-items: center;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator {
	flex: 1;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator span {
	display: block;
}
.pp-heading-content .pp-heading.pp-separator--inline.pp-left > .pp-heading-separator:first-of-type,
.pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:last-of-type {
	display: none;
}
.rtl .pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:last-of-type {
    display: block;
}
.rtl .pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:first-of-type {
    display: none;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type span {
	margin: 0 0 0 auto;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type span {
	margin: 0 auto 0 0;
}

.pp-heading-content .pp-heading-separator {
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.pp-heading-content .pp-heading-separator.line_with_icon:before {
	right: 50%;
	left: auto;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-left:before {
	display: none;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-right:after {
	display: none;
}

.pp-heading-content .pp-heading-separator.line_with_icon:after {
	left: 50%;
	right: auto;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

.pp-heading-content .pp-heading-separator.line_with_icon:before,
.pp-heading-content .pp-heading-separator.line_with_icon:after {
	content: "";
	position: absolute;
	bottom: 50%;
	border-width: 0;
	top: 50%;
}

.pp-heading-content .pp-heading-separator .heading-icon-image {
	vertical-align: middle;
	box-shadow: none !important;
	max-width: 100%;
}

.pp-heading-content .pp-heading-separator .pp-separator-line {
	max-width: 100%;
	display: block;
}

.pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
}

.pp-heading-content .pp-heading-separator.icon_only span {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-left .heading-title span {
		padding-left: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-right .heading-title span {
		padding-right: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-left .heading-title span:before {
		display: none;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-right .heading-title span:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-right:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-left:after {
		left: 2%;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-right:before {
		right: 2%;
	}
}

@media only screen and (max-width: 480px) {
	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-left .heading-title span {
		padding-left: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-right .heading-title span {
		padding-right: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-left .heading-title span:before {
		display: none;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-right .heading-title span:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-right:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:after {
		left: 2%;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-right:before {
		right: 2%;
	}
}@media (max-width: 767px) { /**
 * 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.
 */ }
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-f72ktrguzecj .pp-heading-content {
	text-align: left;
}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading {
		}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
									display: inline;
	}
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-f72ktrguzecj .pp-heading-content .pp-sub-heading,
div.fl-node-f72ktrguzecj .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 991px) {
	div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-f72ktrguzecj .pp-heading-content {
				text-align: ;
			}
	div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 767px) {
	div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-f72ktrguzecj .pp-heading-content {
				text-align: ;
			}
	div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-f72ktrguzecj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-f72ktrguzecj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-f72ktrguzecj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-f72ktrguzecj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-f72ktrguzecj .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

/* Start Global CSS */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
}
a, .fl-button-wrap a {
    font-weight: bold;
}
h3 {
	font-weight: 500;
}
h6 {
	color: #e0601f !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    line-height: 1.7 !important;
    text-transform: uppercase !important;
}
button:hover {
	border: none !important;
}
:focus, .menu li:first-child:focus, .menu li li:focus {
	outline: 1px solid #2d3349 !important;
}
.fl-module-content p {
	margin-bottom: 25px;
}
a.fl-button:focus, .pp-photo-container a:focus, a.pp-button:focus {
	outline: 2px solid #2d3349 !important;
}
.pp-photo-container a:focus, .pp-hover-card-container a.pp-more-link-container:focus, a.pp-post-link:focus  {
	border: 2px solid #2d3349 !important;
}
#trp-floater-ls {
	left: 90% !important;
}
#gdpr-lightbox {
    position:fixed;
    width:100%;
    bottom:0;
    left:0;
}
#menu-column .fl-col-content {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.wp-block-quote {
    border-color: #fdb515;
}
	.wp-block-quote p {
    margin-bottom: 10px;
    font-size: 21px;
}
header .menu .sub-menu a:hover, header .menu .sub-menu li:focus a {
	text-decoration: underline;
}
header.fl-theme-builder-header-shrink {
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
}
header.fl-theme-builder-header-shrink img {
    width: auto !important;
}
header.fl-theme-builder-header-shrink .menu a {
	padding-top: 20px !important;
}
header.fl-theme-builder-header-shrink .menu .sub-menu a {
	padding-top: 10px !important;
}
header.fl-theme-builder-header-shrink #logo .fl-module-content {
	margin-top: 8px;
}
header.fl-theme-builder-header-shrink #donate-button .fl-module-content, header.fl-theme-builder-header-shrink #search .fl-module-content {
	margin-top: 15px;
}
header.fl-theme-builder-header-shrink #search .fl-module-content {
	margin-top: 17px !important;
}
#logo img {
	width: auto !important;
	height: 100% !important;
	max-height: 100% !important;
}
header.fl-theme-builder-header-shrink #logo img {
	max-height: 52px !important;
	max-width: 200px !important;
}
header .menu .pp-has-submenu .pp-has-submenu .sub-menu {
	top: -20px;
    left: 100%;
    background: #F2F5F7;
    box-shadow: none;
	border: none;
}
header .menu .sub-menu .sub-menu {
	display: none !important;
}
.pp-advanced-menu .pp-toggle-arrows .pp-has-submenu-container:hover .pp-menu-toggle::before, .pp-advanced-menu .pp-toggle-arrows .pp-has-submenu-container.focus .pp-menu-toggle::before, .pp-advanced-menu .pp-toggle-arrows li.current-menu-item > .pp-has-submenu-container .pp-menu-toggle::before, .pp-advanced-menu .pp-toggle-none .pp-has-submenu-container:hover .pp-menu-toggle::before,  .pp-advanced-menu .pp-toggle-none .pp-has-submenu-container.focus .pp-menu-toggle::before, .pp-advanced-menu .pp-toggle-none li.current-menu-item > .pp-has-submenu-container .pp-menu-toggle::before,  .pp-advanced-menu .pp-toggle-arrows li a:hover .pp-menu-toggle:before,  .pp-advanced-menu .pp-toggle-none li a:hover .pp-menu-toggle:before {
	color: #fff !important;
	border-color: #fff !important;
}
.give {
	margin-left: 20px !important;
}
header .menu .give a {
	color: #e0601f !important;
	letter-spacing: 1px !important;
	font-weight: 800 !important;
	border-bottom: 1px solid #e0601f !important;
	text-transform: uppercase !important;
	padding-bottom: 4px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
	margin-bottom: 15px;
}
header .menu .give .sub-menu a {
    color: #2d2d2d !important;
    font-weight: 500 !important;
    border: none !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
}
header .menu .give .sub-menu a:hover {
	color: #003f72 !important;
}
header .menu .give .sub-menu li:first-of-type a {
    color: #e0601f !important;
    font-weight: 600 !important;
}
.off-canvas .give a {
	color: #fff !important;
}
.give i {
	padding-left: 6px;
}
.give .sub-menu a {
	color: #2d2d2d !important;
	font-weight: 500 !important;
	border: none !important;
	text-transform: none !important;
	letter-spacing: 0px !important;
}
.give .sub-menu a:hover {
	color: #003f72 !important;
}
.give .sub-menu li:first-of-type a {
	color: #e0601f !important;
	font-weight: 600 !important;
}
.give .sub-menu .sub-menu li:first-of-type a {
	color: #2d2d2d !important;
}
.home-buttons a {
	text-align: left !important;
}
.home-circles {
	position: relative;
   
}
.home-circles .fl-col-content {
	    box-shadow: 0px 5px 30px 0px rgb(0 0 0 / 20%);
  width: 400px;
  height: 400px;
  border-radius: 100%;
  overflow: hidden;
  margin: 0 auto;
	

}
.home-number {
	background: rgba(0, 63, 114, .9);
	padding-bottom: 40px;
	position: relative;
	width: 100%;
	bottom: 148px;
}
.fl-builder-edit .home-circles .fl-col-content {
	overflow: visible;
}

#get-involved .pp-hover-card-title {
	background: #F2F5F7;
	padding: 35px 0 20px 0;
}
#get-involved .pp-card-image {
	position: relative;
	top: 46px;
}
#get-involved .powerpack-title-image-wrapper {
	position: relative;
	top: 10px;
}
#get-involved .icon {
	padding: 17px;
    background: #e0601f;
    border-radius: 100%;
    color: #fff;
	width: 80px;
	height: 80px;
	box-shadow: 0 0 15px rgb(0 0 0 / 15%);
	font-size: 40px;
}
#get-involved .pp-card-image {
	position: relative;
	top: 46px;
}
#get-involved .card-inner-wrap {
	vertical-align: bottom;
}
#get-involved .pp-hover-card-container {
	background-size: 100%;
}
#get-involved .pp-hover-card-container:hover .pp-hover-card-title {
	background: transparent;
}
#get-involved .pp-hover-card-container:hover .card-inner-wrap {
	vertical-align: middle;
	padding: 20px;
}
#get-involved.style-2 .pp-hover-card-title {
	background: #003f72;
}
#get-involved.style-2 .pp-hover-card-container {
	background-size: auto 350px;
}
.bbi-nav a {
	color: #003f72;
}
.widgettitle {
	font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 15px;
}
footer img {
	width: auto;
}

.blue-button a.fl-button:hover i, .blue-button a.pp-button:hover i, .blue-button a.pp-modal-trigger:hover i {
   position: relative;
	left: 5px;
	transition: all .25s;
}
.pp-content-grid-post {
	transition: .25s all;

}
.pp-content-grid-post:hover {
	transform: scale(1.01);
	transition: .25s all;
	box-shadow: 0 5px 20px rgba(0,0,0,.2);
}
.fl-builder-shape-layer {
	overflow: visible;
}
.custom-tabs .pp-tabs-label {
	padding: 30px 20px !important;
}
.custom-tabs .pp-tabs-label:after {
	background: #003f72 !important;
	width: 2px;
}
.pp-tabs-panel-label .pp-toggle-icon {
	opacity: 1 !important;
}
.tribe-common-l-container {
	padding: 0px !important;
	margin: 0px !important;
	max-width: 100% !important;
}
.tribe-events .tribe-events-calendar-month__calendar-event-datetime {
	font-size: 13px !important;
}
.tribe-events .tribe-events-calendar-month__calendar-event-title-link, .tribe-events .tribe-events-calendar-month__calendar-event-tooltip-title-link {
	font-weight: 500 !important;
}
.tribe-events .tribe-events-calendar-month__calendar-event:first-child {
	margin-bottom: 15px !important;
}
.tribe-events-meta-group .tribe-events-single-section-title {
	color: #003f72 !important;
	font-size: 24px !important;
}
.tribe-events-meta-group {
	width: 100% !important;
	padding: 0px !important;
}
.tribe-events-c-subscribe-dropdown__container {
	width: auto !important;
}
.single-tribe_events .tribe-events-c-subscribe-dropdown__button, .tribe-block__events-link .tribe-events-c-subscribe-dropdown__button {
	width: auto !important;
}
.tribe-filter-bar .tribe-filter-bar-c-filter__container {
	visibility: visible !important;
}
.tribe-filter-bar-c-filter__toggle, .tribe-filter-bar-c-filter__toggle:focus {
	border: none;
}
.tribe-filter-bar-c-filter__toggle:hover .tribe-filter-bar-c-filter__toggle-label, .tribe-filter-bar-c-filter__toggle:hover .tribe-filter-bar-c-filter__toggle-icon tribe-filter-bar-c-filter__toggle-icon--plus {
	color: #e0601f !important;
}
/*Remove this once fixed!!*/
.temp-fix {
	min-height: 680px;
}
.temp-fix .pp-content-post:first-of-type {
	position: absolute;
	left: 0;
	top: 0;
	height: 630px;
}
.temp-fix .pp-content-post:nth-of-type(2) {
	position: absolute;
	left: 34.2341%;
	top: 0;
	height: 630px;
}
.temp-fix .pp-content-post:nth-of-type(3) {
	position: absolute;
	left: 68.5369%;
	top: 0;
	height: 630px;
}
.tribe-events-widget-events-list__event-date-tag-month {
	background: #e0601f;
    color: #fff !important;
    padding-top: 5px !important;
}
.tribe-events-widget-events-list__event-date-tag-daynum {
	background: #e0601f;
    color: #fff !important;
}
.tribe-events-widget-events-list__event-wrapper {
	padding-left: 20px !important;
}
.tribe-events-widget-events-list__header-title {
	display: none;
}
.tribe-events-widget-events-list__view-more-link {
	background: #e0601f !important;
	padding: 15px !important;
	color: #fff !important;
	text-transform: uppercase !important;
	font-weight: 600;
	display: inline-block;
	margin-top: 10px !important;
}
.tribe-events-widget-events-list__event-row {
	margin-bottom: 25px !important;
}
.tribe-events-widget-events-list__view-more {
	display: none;
}
.pp-infobox-description p a p {
	color: #333;
}
.pp-testimonials .layout-3 .pp-testimonials-image {
	width: 35% !important;
}
.pp-testimonials .pp-testimonial.layout-3 .pp-content-wrapper {
	width: 60% !important;
}

.pp-testimonials-content:before {
	content: "“";
		display: block;
	font-family: Georgia;
	font-size: 150px;
	color: #e0601f;
	position: absolute;
	top: -10px;
	line-height: 1;
	left: 0px;
}
.circle-infobox .pp-infobox-wrap {
    width: 250px;
    height: 250px;
    border-radius: 100%;
    margin: 0 auto;
    overflow: hidden;
}
.circle-infobox .pp-infobox {
    height: 100%;
    padding-top: 35px;
}
.pp-member-image img {
	width: 100% !important;
}
.custom-icon-button .pp-infoxbox-image {
	margin: 0px;
}
.custom-icon-button .pp-heading-wrapper {
	margin: 0px;
}
.custom-icon-button .pp-infobox-title {
	margin-left: 18px;
}
.event-button span {
	padding: 20px;
	background: #e0601f;
}
.event-button a:hover span {
	background: #d22630;
}
h3.fl-post-feed-title:hover a, h3.fl-post-feed-title a:hover{
	color: #e0601f;
}
/*****/
@media (max-width: 1500px) {
	header .menu a {
		padding-right: 18px !important;
		padding-left: 18px !important;
	}
	header .menu .give a {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	#donate-button .fl-module-content {
		margin-right: 10px !important;
		margin-left: 0px !important;
		margin-top: 34px !important;
	}
	#donate-button .fl-button-text {
		font-size: 15px !important;
	}
	#search .fl-module-content {
		margin-right: 0px !important;
	}
	#get-involved .pp-hover-card-container {
		height: 370px !important;
	}
	#get-involved .pp-hover-card-container:hover .card-inner-wrap {
	vertical-align: top;
	}
	footer .bbi-nav-social ul li a {
		font-size: 23px !important;
	}
	footer p {
		font-size: 16px !important;
	}
	footer .menu a {
		font-size: 14px !important;
	}
	header.fl-theme-builder-header-shrink #donate-button .fl-module-content, header.fl-theme-builder-header-shrink #search .fl-module-content {
		margin-top: 15px;
	}
	
}
@media (max-width: 1400px) {
	header .fl-row-content-wrap {
		padding-right: 2% !important;
		padding-left: 2% !important;
	}
	header .menu a {
		font-size: 16px !important;
		padding-top: 32px !important;
	padding-bottom: 28px !important;
	}
	header .menu .sub-menu a {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}
	#get-involved .pp-hover-card-container:hover .powerpack-title-image-wrapper {
		top: -25px;
		height: 155px;
	}
	#get-involved .pp-hover-card-container:hover .pp-hover-card-title {
		padding-bottom: 0px;
	}
	footer .fl-row-content-wrap {
		padding-right: 2% !important;
		padding-left: 2% !important;
	}
	.social-menu .fl-module-content {
		margin-right: 0px !important;
	}
	.home-circles .fl-col-content {
		width: 375px !important;
		height: 375px;
	}
	#get-involved .pp-hover-card-container p {
		font-size: 15px !important;
	}
	#search .fl-module-content {
		margin-top: 27px !important;
	}
	
}
@media (max-width: 1300px) {
	body {
		font-size: 18px !important;
	}
header .menu a {
  padding-right: 15px !important;
  padding-left: 14px !important;
	
}

	header .menu .give a {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	#search .fl-module-content {
		margin-left: 15px !important;
	}
	#donate-button .fl-button-text {
  font-size: 14px !important;
}
	#donate-button .fl-button i {
		font-size: 1em;
	}

	#get-involved .pp-hover-card-container {
  height: 295px !important;
}
	#get-involved h3 {
		font-size: 34px !important;
	}
	footer .bbi-nav-social ul li a {
  font-size: 22px !important;
}
	.home-circles  .fl-col-content {
		width: 345px !important;
		height: 345px;
	}
	.home-number .fl-module-content {
		margin: 0 65px !important;
	}
	.home-circles .fl-col-content {
  width: 340px !important;
  height: 340px;
}
	#get-involved .icon {
		width: 65px;
		height: 65px;
		font-size: 30px;
	}
}
@media (max-width: 1200px) {
	body {
		line-height: 1.5 !important;
	}
	#logo img {
		max-height: 100% !important;
	}
	#donate-button {
		display: block !important;
	}
	#menu-column .fl-col-content {
		flex-direction: row-reverse;
		justify-content: flex-start;
	}
	.pp-off-canvas-menu .sub-menu {
		background-color: #003f72 !important;
	}
	.give .sub-menu a {
		color: #fff !important;
	}
	.give .sub-menu li:first-of-type a {
		color: #fff !important;
	}
	.give .sub-menu .sub-menu li:first-of-type a {
		color: #fff !important;
	}
	#search .fl-module-content {
		margin-right: 20px !important;
	}
	#donate-button .fl-module-content {
		margin-top: 31px !important;
		margin-left: 10px !important;
	}
	header.fl-theme-builder-header-shrink #donate-button .fl-module-content {
		margin-top: 11px !important;
	}
	header.fl-theme-builder-header-shrink .fl-module-content {
		margin-top: 14px !important;
	}
	
	#menu-column {
		width: 25% !important;
	}
	#logo-column {
		width: 75% !important;
	}
	#logo img {
		width: 150px !important;
	}
	header.fl-theme-builder-header-shrink #logo img {
		max-height: 52px !important;
		max-width: 144px !important;
	}
	
	
	
	.home-circles .fl-col-content {
  width: 290px !important;
  height: 290px;
}
	.home-number {
		bottom: 130px;
	}
	footer img {
		max-height: 70px;
		height: auto !important;
	}
	.custom-tabs .pp-tabs-label {
  padding: 20px 10px !important;
		width: 25%;
}
	.custom-tabs .pp-tabs-label .pp-tab-label-inner {
		white-space: normal;
	}
	.custom-tabs .pp-tab-icon {
		margin-right: 0px !important;
		display: block !important;
		padding-bottom: 6px !important;
	}
	.custom-tabs .pp-tab-label-flex {
		display: block;
	}
	#home .fl-builder-shape-rect svg {
		width: 27% !important;
	}
	#get-involved .pp-hover-card-container {
  height: 380px !important;
}
	#get-involved .pp-hover-card-container {
		width: 49% !important;
	}
	#get-involved .pp-hover-card-container:nth-of-type(3n+1) {
		clear: none;
	}
	#get-involved .pp-hover-card-container:nth-of-type(3n) {
		margin-right: 1% !important;
	}
	.fl-node-ud4pam3gbwck.fl-col > .fl-col-content {
  padding-left: 0 !important;
}
	#headline .fl-col-content {
		margin-right: 0px !important;
	}
	#headline .fl-module-content {
		margin-right: 20px !important;
	}
	#search .fl-module-content {
		margin-top: 35px !important;
	}
	footer img {
		width: auto !important;
	}
}
@media (max-width: 992px) {
	#logo-column {
  width: 67% !important;
}
	#menu-column {
  width: 33% !important;
}
	
.home-number {
		padding-bottom: 10px;
	}
	
	#get-involved .pp-hover-card-container {
  height: 300px !important;
}
	#get-involved p {
		font-size: 15px !important;
	}
	#home .fl-builder-shape-layer > * {
		width: 30% !important;
	}
	#donate-button .fl-module-content {
		margin-top: 20px !important;
	}
	.custom-tabs .pp-tab-label-inner {
		white-space: normal !important;
	}
	.pp-testimonials .layout-3 .pp-testimonials-image {
		width: 100% !important;
		float: none !important;
		margin: 0px auto !important;
	}
	.pp-testimonials .pp-testimonial.layout-3 .pp-content-wrapper {
  width: 100% !important;
  margin-top: 25px;
}
	.circle-infobox .pp-infobox-wrap {
		    width: 225px;
    height: 225px;
	}
	#map .pp-icon-wrapper {
		width: 100%;
	}
	.home-circles .fl-col-content {
  width: 230px !important;
  height: 230px;
}
	.home-number .fl-module-content {
  margin: 0 35px !important;
}
	#headline .fl-col-content {
		margin-right: 200px !important;
	}
	#search .fl-module-content {
		margin-top: 25px !important;
	}
	 #get-involved h3 {
    font-size: 28px !important;
  }
}
@media (max-width: 767px) {
	.fl-builder-shape-layer {
		display: none;
	}
	.fl-node-czkvr8wlfase.fl-col > .fl-col-content {
    margin-right: 0px;
  }
	#menu-column {
  width: 39% !important;
}
	#logo-column {
  width: 61% !important;
}
	#logo .pp-photo-align-left {
		text-align: left !important;
	}

	.home-buttons a, .home-buttons i, .home-buttons span {
		color: #e0601f !important;
		background: transparent !important;
	}
	.home-buttons a:hover, .home-buttons a:hover i, .home-buttons a:hover span {
		color: #fff !important;
	}
	.home-circles .fl-col-content {
		margin: 0 auto !important;
	}
	.fl-col-small:not(.fl-col-small-full-width) {
		max-width: 600px;
	}
	.home-buttons a {
  text-align: center !important;
}
	.custom-tabs .pp-tabs-label {
		width: 100%;
	}
	.custom-tabs .pp-tab-icon {
		margin-right: 10px !important;
	}
	#headline .fl-col-content {
  margin-right: 0px !important;
}
	.home-circles .fl-col-content {
  width: 300px !important;
  height: 300px;
	}

		#get-involved .pp-hover-card-container {
  height: 400px !important;
}
	footer .bbi-nav-social-left {
		text-align: center !important;
	}
	#get-involved .pp-hover-card-container {
		width: 100% !important;
	}
	#main-menu .fl-module-content {
		margin-top: 23px !important;
	}
		.pp-tab-label-inner {
		width: 100%;
}
	.pp-tab-icon {
		float: left;
	}
	
}
@media (max-width: 600px) {
#menu-column {
  width: 52% !important;
}
	#logo-column {
  width: 48% !important;
}
	#donate-button .fl-module-content {
		margin-right: 6px !important;
		margin-left: 6px !important;
	}
	#get-involved .pp-hover-card-container {
  height: 370px !important;
}
	
}
@media (max-width: 480px) {
	#search .fl-module-content {
  margin-right: 7px !important;
  margin-top: 16px !important;
}
	#menu-column {
  width: 55% !important;
}
	#logo-column {
  width: 45% !important;
}
	header #logo .fl-module-content {
		margin-left: 20px !important;
		margin-top: 10px !important;
		margin-right: 0px !important;
	}
	header .fl-row-content-wrap {
  padding-right: 0% !important;
  padding-left: 0% !important;
}
	#donate-button .fl-module-content {
  margin-top: 12px !important;
		margin-right: 0px !important;
}
	#main-menu .fl-module-content {
		margin-top: 16px !important;
	}
	#get-involved .pp-hover-card-container {
  height: 295px !important;
}
	#main-menu .fl-module-content {
		margin-top: 15px !important;
		margin-right: 10px !important;
	}
}

/*Chapter specific */
@media (max-width: 1200px) {
#trp-floater-ls {
    width: 110px !important;
    left: 85% !important;
}
}
@media (max-width: 767px) {
#trp-floater-ls {
    left: 80% !important;
}
}
@media (max-width: 600px) {
#trp-floater-ls {
    left: 77% !important;
    width: 101px !important;
}
a.trp-floater-ls-disabled-language {
    font-size: 14px !important;
}
}
@media (max-width: 480px) {
#trp-floater-ls {
    left: 72% !important;
}
}

/*Chapter Specific */
#question-container-1283-cons-title {
	display: none;
}
.form__row--1280-cons-first_name, .form__row--1280-cons-email {
	float: left;
	margin-right: 20px;
}
.form__row--1280-cons-phone, .form__row--1280-cons-last_name {
	float: left;
}
.form__input-container {
	width: 44%;
	margin-bottom: 20px;
}
.form__label {
	width: 100%;
}
.form__row--buttons button {
	    border-radius: 0px;
    padding: 20px;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 10px;
}

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */


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