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

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:before,
.fl-module:after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Modules
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}

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

.fl-builder-module-template {
	margin: 0 auto;
	max-width: 1100px;
	padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1! important;
    -ms-filter: "alpha(opacity=100)";
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
    margin-left: -10px;
}

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

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

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

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

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-row-fixed-width {
	max-width: 1400px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.fl-module-content, :where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
:root {
	--lh-global--coed-blue: #006cb8;
	--lh-global--coed-red: #dc1e35;
	--lh-global--coed-red-hover: #e34b5d;
	--lh-global--coed-grey: #bcbdc0;
	--lh-global--coed-grey-hover: #c9cacd;
	--lh-global--coed-black: #040707;
	--lh-global--girls-blue: #00468b;
	--lh-global--girls-blue-hover: #0054a7;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





 .fl-node-9vlc0xywo8fq > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-9vlc0xywo8fq > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






.fl-node-dmle608rguk4 > .fl-row-content-wrap {
	background-color: rgba(188,189,192,0.1);
}
.fl-node-dmle608rguk4 .fl-row-content {
	max-width: 1368px;
}
 .fl-node-dmle608rguk4 > .fl-row-content-wrap {
	padding-top:16px;
	padding-right:16px;
	padding-bottom:16px;
	padding-left:16px;
}






.fl-node-w0lx6vu8zgoc .fl-row-content {
	max-width: 1400px;
}
.fl-node-n2bg4f1s5m8z {
	color: #ffffff;
}
.fl-builder-content .fl-node-n2bg4f1s5m8z *: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-n2bg4f1s5m8z a {
	color: #ffffff;
}

.fl-builder-content .fl-node-n2bg4f1s5m8z a:hover {
	color: #bcbdc0;
}

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



.fl-node-n2bg4f1s5m8z > .fl-row-content-wrap {
	background-color: #00468b;
}
.fl-node-n2bg4f1s5m8z .fl-row-content {
	max-width: 1400px;
}
 .fl-node-n2bg4f1s5m8z > .fl-row-content-wrap {
	padding-top:10px;
	padding-bottom:10px;
}




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




.fl-node-x6f243zeuons {
	width: 25%;
}




.fl-node-s6b7n3jq5c8e {
	width: 66.66%;
}




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




.fl-node-4joqlgm2arvz {
	width: 100%;
}




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




.fl-node-3jo8uz62agve {
	width: 33.33%;
}




.fl-node-42t1epolms6h {
	width: 25%;
}




.fl-node-fksbuxi0hcdt {
	width: 25%;
}




.fl-node-keu4w6mrfiy0 {
	width: 19%;
}




.fl-node-x310du6mtsh7 {
	width: 49%;
}




.fl-node-d1zock4n2iwa {
	width: 30%;
}




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




.fl-node-suf3pn0oevc7 {
	width: 25%;
}
.pp-member-wrapper {
    overflow: hidden;
}

.pp-member-wrapper a,
.pp-member-wrapper a:hover {
    text-decoration: none;
}

.pp-member-wrapper .pp-member-image.pp-image-crop-circle img {
    -webkit-border-radius: 100% !important;
    -moz-border-radius: 100% !important;
    border-radius: 100% !important;
}


.pp-member-social-profiles ul li {
    display:  inline-block;
    position: relative;
    margin-right:15px;
    margin-bottom: 5px;
}

.pp-member-social-profiles ul {
    padding-left: 0;
    margin-left: 0;
}

.pp-member-social-profiles ul li:last-child {
    margin-right: 0;
}

.pp-member-social-profiles li a {
    display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
@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.
 */ }.fl-node-hx82u7sq4n0l .pp-member-wrapper {
	    opacity: 1;
	text-align: center;
}

.fl-node-hx82u7sq4n0l .pp-member-wrapper:hover {
    }


.fl-node-hx82u7sq4n0l .pp-member-wrapper .pp-member-image img {
        overflow: hidden;
}


.fl-node-hx82u7sq4n0l .pp-member-wrapper .pp-member-content {
	background-color: ;
}


.fl-node-hx82u7sq4n0l .pp-member-wrapper .pp-member-name {
			color: #000000;
		margin-top: 30px;
	margin-bottom: 5px;
}


.fl-node-hx82u7sq4n0l .pp-member-wrapper .pp-member-designation {
			color: #666666;
		margin-top: 0px;
	margin-bottom: 15px;
}


.fl-node-hx82u7sq4n0l .pp-member-wrapper .pp-member-description {
			color: #444444;
		margin-top: 5px;
	margin-bottom: 20px;
}


.fl-node-hx82u7sq4n0l .pp-member-wrapper .pp-member-separator {
    width: 60px;
    height: 2px;
    background-color: #000000;
    display: inline-block;
}

.fl-node-hx82u7sq4n0l .pp-member-social-profiles li {
    margin-right: 10px;
}


.fl-node-hx82u7sq4n0l .pp-member-social-profiles li a {
        	color: rgb(0, 108, 184);
		    font-size: 20px;
    width: 44px;
    height: 44px;
	}


.fl-node-hx82u7sq4n0l .pp-member-social-profiles li a:hover {
        	color: rgb(0, 84, 167);
	     border-color: #333333; }


.fl-node-hx82u7sq4n0l .pp-member-wrapper {
	border-color: rgb(0, 70, 139);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-hx82u7sq4n0l .pp-member-wrapper .pp-member-image img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(0, 108, 184);
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-hx82u7sq4n0l .pp-member-wrapper .pp-member-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-hx82u7sq4n0l .pp-member-social-profiles li {
	margin-right: 10px;
}
.fl-node-hx82u7sq4n0l .pp-member-social-profiles li a {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-node-e5mkulgqcx9v .pp-member-wrapper {
	    opacity: 1;
	text-align: center;
}

.fl-node-e5mkulgqcx9v .pp-member-wrapper:hover {
    }


.fl-node-e5mkulgqcx9v .pp-member-wrapper .pp-member-image img {
        overflow: hidden;
}


.fl-node-e5mkulgqcx9v .pp-member-wrapper .pp-member-content {
	background-color: ;
}


.fl-node-e5mkulgqcx9v .pp-member-wrapper .pp-member-name {
			color: #000000;
		margin-top: 30px;
	margin-bottom: 5px;
}


.fl-node-e5mkulgqcx9v .pp-member-wrapper .pp-member-designation {
			color: #666666;
		margin-top: 0px;
	margin-bottom: 15px;
}


.fl-node-e5mkulgqcx9v .pp-member-wrapper .pp-member-description {
			color: #444444;
		margin-top: 5px;
	margin-bottom: 20px;
}


.fl-node-e5mkulgqcx9v .pp-member-wrapper .pp-member-separator {
    width: 60px;
    height: 2px;
    background-color: #000000;
    display: inline-block;
}

.fl-node-e5mkulgqcx9v .pp-member-social-profiles li {
    margin-right: 10px;
}


.fl-node-e5mkulgqcx9v .pp-member-social-profiles li a {
        	color: rgb(0, 108, 184);
		    font-size: 20px;
    width: 44px;
    height: 44px;
	}


.fl-node-e5mkulgqcx9v .pp-member-social-profiles li a:hover {
        	color: rgb(0, 84, 167);
	     border-color: #333333; }


.fl-node-e5mkulgqcx9v .pp-member-wrapper {
	border-color: rgb(0, 70, 139);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-e5mkulgqcx9v .pp-member-wrapper .pp-member-image img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(0, 108, 184);
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-e5mkulgqcx9v .pp-member-wrapper .pp-member-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-e5mkulgqcx9v .pp-member-social-profiles li {
	margin-right: 10px;
}
.fl-node-e5mkulgqcx9v .pp-member-social-profiles li a {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-node-gvewfju86hxi .pp-member-wrapper {
	    opacity: 1;
	text-align: center;
}

.fl-node-gvewfju86hxi .pp-member-wrapper:hover {
    }


.fl-node-gvewfju86hxi .pp-member-wrapper .pp-member-image img {
        overflow: hidden;
}


.fl-node-gvewfju86hxi .pp-member-wrapper .pp-member-content {
	background-color: ;
}


.fl-node-gvewfju86hxi .pp-member-wrapper .pp-member-name {
			color: #000000;
		margin-top: 30px;
	margin-bottom: 5px;
}


.fl-node-gvewfju86hxi .pp-member-wrapper .pp-member-designation {
			color: #666666;
		margin-top: 0px;
	margin-bottom: 15px;
}


.fl-node-gvewfju86hxi .pp-member-wrapper .pp-member-description {
			color: #444444;
		margin-top: 5px;
	margin-bottom: 20px;
}


.fl-node-gvewfju86hxi .pp-member-wrapper .pp-member-separator {
    width: 60px;
    height: 2px;
    background-color: #000000;
    display: inline-block;
}

.fl-node-gvewfju86hxi .pp-member-social-profiles li {
    margin-right: 10px;
}


.fl-node-gvewfju86hxi .pp-member-social-profiles li a {
        	color: rgb(0, 108, 184);
		    font-size: 20px;
    width: 44px;
    height: 44px;
	}


.fl-node-gvewfju86hxi .pp-member-social-profiles li a:hover {
        	color: rgb(0, 84, 167);
	     border-color: #333333; }


.fl-node-gvewfju86hxi .pp-member-wrapper {
	border-color: rgb(0, 70, 139);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-gvewfju86hxi .pp-member-wrapper .pp-member-image img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(0, 108, 184);
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-gvewfju86hxi .pp-member-wrapper .pp-member-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-gvewfju86hxi .pp-member-social-profiles li {
	margin-right: 10px;
}
.fl-node-gvewfju86hxi .pp-member-social-profiles li a {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-node-vjf7rl6z4c5o .pp-member-wrapper {
	    opacity: 1;
	text-align: center;
}

.fl-node-vjf7rl6z4c5o .pp-member-wrapper:hover {
    }


.fl-node-vjf7rl6z4c5o .pp-member-wrapper .pp-member-image img {
        overflow: hidden;
}


.fl-node-vjf7rl6z4c5o .pp-member-wrapper .pp-member-content {
	background-color: ;
}


.fl-node-vjf7rl6z4c5o .pp-member-wrapper .pp-member-name {
			color: #000000;
		margin-top: 30px;
	margin-bottom: 5px;
}


.fl-node-vjf7rl6z4c5o .pp-member-wrapper .pp-member-designation {
			color: #666666;
		margin-top: 0px;
	margin-bottom: 15px;
}


.fl-node-vjf7rl6z4c5o .pp-member-wrapper .pp-member-description {
			color: #444444;
		margin-top: 5px;
	margin-bottom: 20px;
}


.fl-node-vjf7rl6z4c5o .pp-member-wrapper .pp-member-separator {
    width: 60px;
    height: 2px;
    background-color: #000000;
    display: inline-block;
}

.fl-node-vjf7rl6z4c5o .pp-member-social-profiles li {
    margin-right: 10px;
}


.fl-node-vjf7rl6z4c5o .pp-member-social-profiles li a {
        	color: rgb(0, 108, 184);
		    font-size: 20px;
    width: 44px;
    height: 44px;
	}


.fl-node-vjf7rl6z4c5o .pp-member-social-profiles li a:hover {
        	color: rgb(0, 84, 167);
	     border-color: rgb(0, 108, 184); }


.fl-node-vjf7rl6z4c5o .pp-member-wrapper {
	border-color: rgb(0, 70, 139);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-vjf7rl6z4c5o .pp-member-wrapper .pp-member-image img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(0, 108, 184);
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-vjf7rl6z4c5o .pp-member-wrapper .pp-member-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-vjf7rl6z4c5o .pp-member-social-profiles li {
	margin-right: 10px;
}
.fl-node-vjf7rl6z4c5o .pp-member-social-profiles li a {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-node-rcxlfmdjzv8p .pp-member-wrapper {
	    opacity: 1;
	text-align: center;
}

.fl-node-rcxlfmdjzv8p .pp-member-wrapper:hover {
    }


.fl-node-rcxlfmdjzv8p .pp-member-wrapper .pp-member-image img {
        overflow: hidden;
}


.fl-node-rcxlfmdjzv8p .pp-member-wrapper .pp-member-content {
	background-color: ;
}


.fl-node-rcxlfmdjzv8p .pp-member-wrapper .pp-member-name {
			color: #000000;
		margin-top: 30px;
	margin-bottom: 5px;
}


.fl-node-rcxlfmdjzv8p .pp-member-wrapper .pp-member-designation {
			color: #666666;
		margin-top: 0px;
	margin-bottom: 15px;
}


.fl-node-rcxlfmdjzv8p .pp-member-wrapper .pp-member-description {
			color: #444444;
		margin-top: 5px;
	margin-bottom: 20px;
}


.fl-node-rcxlfmdjzv8p .pp-member-wrapper .pp-member-separator {
    width: 60px;
    height: 2px;
    background-color: #000000;
    display: inline-block;
}

.fl-node-rcxlfmdjzv8p .pp-member-social-profiles li {
    margin-right: 10px;
}


.fl-node-rcxlfmdjzv8p .pp-member-social-profiles li a {
        	color: rgb(0, 108, 184);
		    font-size: 20px;
    width: 44px;
    height: 44px;
	}


.fl-node-rcxlfmdjzv8p .pp-member-social-profiles li a:hover {
        	color: rgb(0, 84, 167);
	     border-color: #333333; }


.fl-node-rcxlfmdjzv8p .pp-member-wrapper {
	border-color: rgb(0, 70, 139);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-rcxlfmdjzv8p .pp-member-wrapper .pp-member-image img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(0, 108, 184);
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-rcxlfmdjzv8p .pp-member-wrapper .pp-member-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-rcxlfmdjzv8p .pp-member-social-profiles li {
	margin-right: 10px;
}
.fl-node-rcxlfmdjzv8p .pp-member-social-profiles li a {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
@media ( max-width: 1200px ) {
 .fl-node-rcxlfmdjzv8p.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-f1wjzotqnpxa h1.fl-heading a,
.fl-row .fl-col .fl-node-f1wjzotqnpxa h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-f1wjzotqnpxa h1.fl-heading .fl-heading-text *,
.fl-node-f1wjzotqnpxa h1.fl-heading .fl-heading-text {
	color: rgb(0, 70, 139);
}
.fl-node-f1wjzotqnpxa.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-f1wjzotqnpxa > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row-fixed-width {
	min-width: 1px;
}
.fl-col-group.fl-col-group-responsive-reversed,
.fl-col-group.fl-col-group-responsive-reversed .fl-col,
.fl-col-group.fl-col-group-responsive-reversed .fl-col-content,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	min-width: 0px;
}
.fl-module-box > .fl-module-pp-image-carousel {
    width: 100%;
    overflow: hidden;
}

.fl-module-box .pp-image-carousel.swiper-fade .swiper-slide {
    width: 100% !important;
}

.compat-field-pp-custom-link .alignleft {
    margin: 0;
}

.pp-image-carousel-wrapper {
	position: relative;
}

.pp-image-carousel,
.pp-image-carousel.swiper-cube {
    position: relative;
    text-align: center;
	overflow: hidden;
	height: 250px;
}

.pp-slides-auto .pp-image-carousel-item {
    width: auto;
}
.pp-slides-auto .pp-image-carousel-item figure.use-as-background .swiper-slide-image {
    width: auto !important;
}
.pp-slides-overflow .pp-image-carousel {
    overflow: visible;
}

.pp-image-carousel-item {
    float: left;
	text-align: center;
	overflow: hidden;
}

.pp-image-carousel-content {
    position: relative;
    text-align: center;
	overflow: hidden;
}

.pp-image-carousel.slider-type-slideshow {
	height: 450px;
}
.pp-image-carousel.slider-type-slideshow .swiper-wrapper {
	align-items: center;
}

.pp-image-carousel.swiper,
.pp-image-carousel.swiper-container {
	width: 100%;
}

/* Overlay */
.pp-image-overlay {
	position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #fff;
    background-color: hsla(206,7%,54%,.8);
    -webkit-transition: opacity .5s,-webkit-transform .5s;
    transition: opacity .5s,-webkit-transform .5s;
    -o-transition: transform .5s,opacity .5s;
    transition: transform .5s,opacity .5s;
    transition: transform .5s,opacity .5s,-webkit-transform .5s;
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-bottom {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.framed {
    opacity: 0;
}

.pp-image-carousel-item .pp-image-overlay.fade {
    opacity: 0;
}

.pp-image-carousel-item:hover .pp-image-overlay.fade,
.pp-image-carousel-item:focus .pp-image-overlay.fade {
    opacity: 1;
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.zoom-in {
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    opacity: 0;
}

.pp-image-carousel .pp-carousel-image-container,
.pp-image-carousel-thumbs .pp-image-carousel-thumb {
	background: no-repeat 50%;
    background-size: cover;
    height: 100%;
    position: relative;
}

.pp-carousel-image-container figure.use-as-background {
	display: inline-flex;
	height: 100%;
	justify-content: center;
	position: relative;
}
.pp-carousel-image-container figure.use-as-background .swiper-slide-image {
	object-fit: cover;
}
/* some image optimization plugins wrap image in <picture> tag */
.pp-carousel-image-container figure.use-as-background picture.swiper-slide-image {
	width: 100%;
}

/* Pagination **/
.pp-image-carousel-wrapper .swiper-pagination-bullets {
    cursor: default;
}
.pp-image-carousel-wrapper .swiper-pagination-bullet {
	top: 0;
	border: none;
}
.pp-image-carousel-wrapper.pp-nav-outside .swiper-pagination {
    bottom: 0;
}

.pp-image-carousel-wrapper .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.pp-image-carousel.swiper-horizontal>.swiper-pagination-progressbar,
.pp-image-carousel.swiper-container-horizontal>.swiper-pagination-progressbar {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.25);
    position: absolute;
}

.pp-image-carousel .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.pp-image-carousel-wrapper .pp-swiper-button {
	background-image: none;
	width: auto;
	height: auto;
	line-height: 1;
	position: absolute;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
	justify-content: center;
    z-index: 1;
    cursor: pointer;
    font-size: 25px;
    top: 50%;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.pp-image-carousel-wrapper .pp-swiper-button:after {
    content: none;
    display: none;
}
.pp-image-carousel-wrapper .pp-swiper-button span {
	display: inline-flex;
}
.pp-image-carousel-wrapper .pp-swiper-button svg {
	height: 25px;
}

.pp-image-carousel-wrapper.pp-nav-outside .pp-swiper-button {
	top: calc(50% - 30px / 2);
}
.pp-image-carousel-wrapper .swiper-button-prev {
	left: 10px;
}
.pp-image-carousel-wrapper .swiper-button-next {
	right: 10px;
}

.pp-thumbnails-swiper .pp-image-carousel-thumb {
	background: no-repeat center;
    background-size: cover;
    height: 100%;
	position: relative;
	cursor: pointer;
}

.pp-thumbs-ratio-11 .pp-image-carousel-thumb {
	padding-bottom: 100%;
}

.pp-thumbs-ratio-43 .pp-image-carousel-thumb {
    padding-bottom: 75%;
}

.pp-thumbs-ratio-169 .pp-image-carousel-thumb {
    padding-bottom: 56.35%;
}

.pp-thumbs-ratio-219 .pp-image-carousel-thumb {
    padding-bottom: 42.8571%
}

.pp-image-overlay .pp-overlay-icon {
    display: inline-block;
}

.pp-image-overlay .pp-overlay-icon span {
    display: block;
    line-height: 1;
}

.pp-image-carousel .swiper-lazy-preloader {
    display: none;
}

.pp-image-carousel .pp-slides-count {
    display: none;
}

.caption-bottom .pp-carousel-image-container {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    background-color: var(--fl-global-body, #fff);
}
.caption-bottom .pp-image-carousel-item .swiper-slide-inner {
    overflow: hidden;
    margin-bottom: 10px;
}
.caption-bottom .pp-image-carousel-item .swiper-slide-inner img {
    overflow: hidden;
}
.caption-bottom.with-slide-count .pp-image-carousel .pp-caption {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    pointer-events: none;
    text-align: left;
}
.caption-bottom.with-slide-count .pp-image-carousel .pp-slides-count {
    display: inline;
    min-width: 50px;
    text-align: right;
}
.caption-bottom.with-slide-count .pp-image-carousel .swiper-pagination-fraction {
    display: none;
}
.caption-bottom.with-slide-count .pp-image-carousel-wrapper.pp-nav-outside .pp-image-carousel {
    padding-bottom: 0;
}

.fl-node-5ldz97ibgxwt .pp-image-carousel.slider-type-slideshow {
			margin-bottom: 10px;
		}

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

.fl-node-5ldz97ibgxwt .pp-image-carousel .pp-carousel-image-container {
	background-size: contain;
}
.fl-node-5ldz97ibgxwt .pp-image-carousel .pp-carousel-image-container figure.use-as-background {
	}
.fl-node-5ldz97ibgxwt .pp-image-carousel .pp-carousel-image-container figure.use-as-background .swiper-slide-image {
	object-fit: contain;
			object-position: center;
		}
.fl-node-5ldz97ibgxwt .pp-carousel-image-container figure.use-as-background picture.swiper-slide-image img {
	}

.fl-node-5ldz97ibgxwt .pp-image-carousel .swiper-pagination-bullet {
	opacity: 1;
			background-color: #ffffff !important;
	        width: 20px;
            height: 20px;
            border-radius: 100px !important;
    	box-shadow: none !important;
	}

.fl-node-5ldz97ibgxwt .pp-image-carousel.swiper-horizontal>.swiper-pagination-progressbar,
.fl-node-5ldz97ibgxwt .pp-image-carousel.swiper-container-horizontal>.swiper-pagination-progressbar {
			background-color: #ffffff !important;
	}

.fl-node-5ldz97ibgxwt .pp-image-carousel .swiper-pagination-bullet:hover,
.fl-node-5ldz97ibgxwt .pp-image-carousel .swiper-pagination-bullet:focus,
.fl-node-5ldz97ibgxwt .pp-image-carousel .swiper-pagination-bullet-active,
.fl-node-5ldz97ibgxwt .pp-image-carousel .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
			background-color: #ED2124 !important;
		opacity: 1;
    box-shadow: none !important;
}


.fl-node-5ldz97ibgxwt .pp-image-carousel-wrapper .pp-swiper-button {
		height: 34px;
	width: 34px;
			color: #ffffff !important;
    			background-color: rgb(0, 70, 139) !important;
	        padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 13px;
            padding-right: 13px;
    }
.fl-node-5ldz97ibgxwt .pp-image-carousel-wrapper .pp-swiper-button svg {
	height: 24px;
}
.fl-node-5ldz97ibgxwt .pp-image-carousel-wrapper .pp-swiper-button svg path {
		fill: #ffffff !important;
    }

.fl-node-5ldz97ibgxwt .pp-image-carousel-wrapper .pp-swiper-button:hover,
.fl-node-5ldz97ibgxwt .pp-image-carousel-wrapper .pp-swiper-button:focus {
        color: var(--lh-global--coed-grey-hover) !important;
    			background-color: rgb(0, 84, 167) !important;
	    }

.fl-node-5ldz97ibgxwt .pp-image-carousel-wrapper .pp-swiper-button:hover svg path,
.fl-node-5ldz97ibgxwt .pp-image-carousel-wrapper .pp-swiper-button:focus svg path {
	    fill: var(--lh-global--coed-grey-hover) !important;
    }




.fl-node-5ldz97ibgxwt .pp-image-overlay {
			background: rgba(0,0,0,.5);
	
		-webkit-transition: opacity 0.3s,-webkit-transform 0.3s;
    transition: opacity 0.3s,-webkit-transform 0.3s;
    -o-transition: transform 0.3s,opacity 0.3s;
    transition: transform 0.3s,opacity 0.3s;
    transition: transform 0.3s,opacity 0.3s,-webkit-transform 0.3s;
}

.fl-node-5ldz97ibgxwt .pp-image-overlay .pp-overlay-icon {
			width: 30px;
	height: 30px;
}

.fl-node-5ldz97ibgxwt .pp-image-overlay .pp-overlay-icon span {
	color: ;
	font-size: 30px;
			}

.fl-node-5ldz97ibgxwt .pp-image-overlay .pp-caption  {
	color: rgb(0, 70, 139);
}


.fl-node-5ldz97ibgxwt:not(.caption-bottom) .pp-image-carousel-item {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-5ldz97ibgxwt.caption-bottom .pp-image-carousel-item img {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-5ldz97ibgxwt .pp-image-carousel-wrapper .pp-swiper-button {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-5ldz97ibgxwt > .fl-module-content {
	margin-top:-20px;
	margin-right:0px;
	margin-bottom:-20px;
	margin-left:0px;
}
@media (max-width: 768px) { .fl-node-5ldz97ibgxwt > .fl-module-content { margin-top:20px;margin-bottom:20px; } }.pp-photo-container .pp-photo-align-left {
    text-align: left;
}
.pp-photo-container .pp-photo-align-center {
    text-align: center;
}
.pp-photo-container .pp-photo-align-right {
    text-align: right;
}

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

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

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


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

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

.fl-node-w6btlo3scnr4 .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-w6btlo3scnr4 .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
        			border-color: rgb(0, 108, 184);
		        			border-width: 2px;
				border-style: solid;
					border-top-left-radius: 10px;
			border-top-right-radius: 10px;
			border-bottom-left-radius: 10px;
			border-bottom-right-radius: 10px;
		    }

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


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

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

@media only screen and (max-width: 768px) {
	.fl-node-w6btlo3scnr4 .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-w6btlo3scnr4 .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-w6btlo3scnr4 .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-w6btlo3scnr4 .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-w6btlo3scnr4 .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	border-color: rgb(0, 70, 139);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-w6btlo3scnr4 .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */@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.
 */ }


.fl-node-7griex26skhd .pp-spacer-module {
    height: 0px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-7griex26skhd .pp-spacer-module {
        height: 0px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-7griex26skhd .pp-spacer-module {
        height: 0px;
    }
}
 .fl-node-7griex26skhd > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
 .fl-node-mo6jv7scbkuh > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.pp-social-icons {
	display: flex;
}
.pp-social-icons-vertical {
	flex-direction: column;
}
.pp-social-icons-vertical .pp-social-icon:last-of-type {
	margin-bottom: 0 !important;
}
.pp-social-icons-horizontal .pp-social-icon:last-of-type {
	margin-right: 0 !important;
}
.pp-social-icons-horizontal .pp-social-icon:first-child {
	margin-left: 0 !important;
}

.pp-social-icons .pp-social-icon {
	display: inline-block;
	line-height: 0;
}
.pp-social-icons a {
	font-family: "Helvetica",Verdana,Arial,sans-serif;
}
.pp-social-icons .pp-x-icon {
	font-weight: bold;
}
.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon a,
.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon a:hover {
	text-decoration: none;
}

.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon a {
	display: inline-flex;
	float: left;
	text-align: center;
	justify-content: center;
	align-items: center;
			color: rgb(0, 70, 139);
					border-radius: 100px;
				border: 0px solid ;
	}

.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon svg {
	fill: currentColor;
			width: 30px;
		height: 30px;
	}

.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon a:hover {
			color: rgb(0, 84, 167);
					border-color: ;
	}



			.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon:nth-child(1) a {
							border: 0px solid ;
					}
		.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon:nth-child(1) a:hover {
					}
				.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon:nth-child(1) a {
								}
				.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon:nth-child(1) i:hover,
		.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon:nth-child(1) a:hover i {
								}
	.fl-node-87zo4csjibrm .pp-social-icons-vertical .pp-social-icon {
	margin-bottom: 40px;
}
.fl-node-87zo4csjibrm .pp-social-icons-horizontal .pp-social-icon {
	margin-right: 40px;
}
.fl-node-87zo4csjibrm .pp-social-icons {
	justify-content: center;
}
.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon a {
	font-size: 30px;
	width: 20px;
	height: 20px;
	line-height: 20px;
}
.fl-node-87zo4csjibrm .fl-module-content .pp-social-icon .pp-x-icon {
	font-size: calc(30px + 20%);
}
 .fl-node-87zo4csjibrm > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:60px;
}
@media (max-width: 768px) { .fl-node-87zo4csjibrm > .fl-module-content { margin-left:20px; } }.fl-animated.fl-slide-in-up {
  	animation: fl-slide-in-up 1s ease;
  	-webkit-animation: fl-slide-in-up 1s ease;
}
@-webkit-keyframes fl-slide-in-up {
  from {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-slide-in-up {
  from {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
 .fl-node-r3bn0ymo1il7 > .fl-module-content {
	margin-top:0px;
	margin-bottom:-10px;
}
@media ( max-width: 1200px ) {
 .fl-node-r3bn0ymo1il7.fl-module > .fl-module-content {
	margin-bottom:-20px;
}
}
@media ( max-width: 992px ) {
 .fl-node-r3bn0ymo1il7.fl-module > .fl-module-content {
	margin-bottom:-20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-r3bn0ymo1il7.fl-module > .fl-module-content {
	margin-bottom:-20px;
}
}
/**
 * Horizontal Layout
 */

.fl-button-group-layout-horizontal .fl-button-group-buttons {
    display: flex;
    flex-wrap: wrap;
}

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

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

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

.fl-node-8wukrg2j3bsp .fl-button-group-layout-vertical .fl-button-group-buttons a.fl-button,
.fl-node-8wukrg2j3bsp .fl-button-group-layout-horizontal .fl-button-group-buttons a.fl-button {
	width: 90%;
}

.fl-node-8wukrg2j3bsp .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: center}



.fl-builder-content .fl-node-8wukrg2j3bsp .fl-button-group-buttons a.fl-button {
	background: #00468b;
	border: 1px solid #003a7f;		background: linear-gradient(to bottom,  #1e64a9 0%, #00468b 100%);
	}
	.fl-builder-content .fl-node-8wukrg2j3bsp .fl-button-group-buttons a.fl-button:hover,
.fl-builder-content .fl-node-8wukrg2j3bsp .fl-button-group-buttons a.fl-button:focus {

	background: #0054a7;

		background: linear-gradient(to bottom,  #1e72c5 0%, #0054a7 100%);
	}
	
	#fl-button-group-button-8wukrg2j3bsp-0 a.fl-button {
		
			}

	.fl-node-8wukrg2j3bsp .fl-button-group-layout-vertical .fl-button-group-button .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-8wukrg2j3bsp .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
}
.fl-builder-content .fl-node-8wukrg2j3bsp .fl-button-group .fl-button-group-buttons .fl-button-group-button a.fl-button {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-node-8wukrg2j3bsp .fl-button-group-buttons a.fl-button, .fl-node-8wukrg2j3bsp .fl-button-group-buttons a.fl-button:visited {
	border: 1px solid #003a7f;
}
 .fl-node-8wukrg2j3bsp > .fl-module-content {
	margin-top:30px;
}
@media (max-width: 768px) { .fl-node-8wukrg2j3bsp > .fl-module-content { margin-top:20px; } }.fl-animated.fl-fade-up {
	animation: fl-fade-up 1s ease;
	-webkit-animation: fl-fade-up 1s ease;
}
@-webkit-keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-up {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
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-uiry3pshe7nt .fl-photo {
	text-align: right;
}
.fl-menu ul,
.fl-menu li{
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-menu .menu:before,
.fl-menu .menu:after{
	content: '';
	display: table;
	clear: both;
}

/* Horizontal menus */
.fl-menu-horizontal {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
}
.fl-menu li{
	position: relative;
}
.fl-menu a{
	display: block;
	padding: 10px;
	text-decoration: none;
}
.fl-menu a:hover{
	text-decoration: none;
}
.fl-menu .sub-menu{
	min-width: 220px;
}

/* Expanded menus */
.fl-module[data-node] .fl-menu .fl-menu-expanded .sub-menu {
	background-color: transparent;
	-webkit-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
}

/* Submenus */
.fl-menu .fl-has-submenu:focus,
.fl-menu .fl-has-submenu .sub-menu:focus,
.fl-menu .fl-has-submenu-container:focus {
	outline: 0;
}
.fl-menu .fl-has-submenu-container{ position: relative; }

/* Submenu - accordion, expanded */
.fl-menu .fl-menu-accordion .fl-has-submenu > .sub-menu{
	display: none;
}
.fl-menu .fl-menu-accordion .fl-has-submenu.fl-active .hide-heading > .sub-menu {
	box-shadow: none;
	display: block !important;
}

/* Toggle - General */
.fl-menu .fl-menu-toggle{
	position: absolute;
	top: 50%;
	right: 0;
	cursor: pointer;
}
.fl-menu .fl-toggle-arrows .fl-menu-toggle:before,
.fl-menu .fl-toggle-none .fl-menu-toggle:before{
	border-color: #333;
}
.fl-menu .fl-menu-expanded .fl-menu-toggle{
	display: none;
}

/* Mobile menu - hamburger icon */
.fl-menu .fl-menu-mobile-toggle {
	position: relative;
	padding: 8px;
	background-color: transparent;
	border: none;
	color: #333;
	border-radius: 0;
}
.fl-menu .fl-menu-mobile-toggle.text{
	width: 100%;
	text-align: center;
}
.fl-menu .fl-menu-mobile-toggle.hamburger .fl-menu-mobile-toggle-label,
.fl-menu .fl-menu-mobile-toggle.hamburger-label .fl-menu-mobile-toggle-label{
	display: inline-block;
	margin-left: 10px;
	vertical-align: middle;
}
.fl-menu .fl-menu-mobile-toggle.hamburger .svg-container,
.fl-menu .fl-menu-mobile-toggle.hamburger-label .svg-container{
	display: inline-block;
	position: relative;
	width: 1.4em;
	height: 1.4em;
	vertical-align: middle;
}
.fl-menu .fl-menu-mobile-toggle.hamburger .hamburger-menu,
.fl-menu .fl-menu-mobile-toggle.hamburger-label .hamburger-menu{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.fl-menu .fl-menu-mobile-toggle.hamburger .hamburger-menu rect,
.fl-menu .fl-menu-mobile-toggle.hamburger-label .hamburger-menu rect{
	fill: currentColor;
}

/* Mega menu general */
li.mega-menu .hide-heading > a,
li.mega-menu .hide-heading > .fl-has-submenu-container,
li.mega-menu-disabled .hide-heading > a,
li.mega-menu-disabled .hide-heading > .fl-has-submenu-container {
	display: none;
}

/* Mega menu for horizontal menus */
ul.fl-menu-horizontal li.mega-menu {
	position: static;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu {
	top: inherit !important;
	left: 0 !important;
	right: 0 !important;
	width: 100%;
}
ul.fl-menu-horizontal li.mega-menu.fl-has-submenu:hover > ul.sub-menu,
ul.fl-menu-horizontal li.mega-menu.fl-has-submenu.focus > ul.sub-menu {
	display: flex !important;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu li {
	border-color: transparent;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu > li {
	width: 100%;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu > li > .fl-has-submenu-container a {
	font-weight: bold;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu > li > .fl-has-submenu-container a:hover {
	background: transparent;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu .fl-menu-toggle {
	display: none;
}
ul.fl-menu-horizontal li.mega-menu > ul.sub-menu ul.sub-menu {
	background: transparent;
	-webkit-box-shadow: none;
	-ms-box-shadow: none;
	box-shadow: none;
	display: block;
	min-width: 0;
	opacity: 1;
	padding: 0;
	position: static;
	visibility: visible;
}

/* Mobile menu - below row clone */
.fl-menu-mobile-clone {
	clear: both;
}
.fl-menu-mobile-clone .fl-menu .menu {
	float: none !important;
}

/* Mobile menu - Flyout */
.fl-menu-mobile-close {
	display: none;
}
.fl-menu-mobile-close,
.fl-menu-mobile-close:hover,
.fl-menu-mobile-close:focus {
	background: none;
	border: 0 none;
	color: inherit;
	font-size: 18px;
	padding: 10px 6px 10px 14px;
}
.fl-node-j6devug104yz .fl-menu .menu {
	}

.fl-builder-content .fl-node-j6devug104yz .menu > li > a,
.fl-builder-content .fl-node-j6devug104yz .menu > li > .fl-has-submenu-container > a,
.fl-builder-content .fl-node-j6devug104yz .sub-menu > li > a,
.fl-builder-content .fl-node-j6devug104yz .sub-menu > li > .fl-has-submenu-container > a{
	color: #ffffff;
	}

	
				.fl-node-j6devug104yz .fl-menu .fl-toggle-arrows .fl-menu-toggle:before,
		.fl-node-j6devug104yz .fl-menu .fl-toggle-none .fl-menu-toggle:before {
			border-color: #ffffff;
		}
		
	.fl-node-j6devug104yz .menu > li > a:hover,
.fl-node-j6devug104yz .menu > li > a:focus,
.fl-node-j6devug104yz .menu > li > .fl-has-submenu-container:hover > a,
.fl-node-j6devug104yz .menu > li > .fl-has-submenu-container.focus > a,
.fl-node-j6devug104yz .menu > li.current-menu-item > a,
.fl-node-j6devug104yz .menu > li.current-menu-item > .fl-has-submenu-container > a,
.fl-node-j6devug104yz .sub-menu > li > a:hover,
.fl-node-j6devug104yz .sub-menu > li > a:focus,
.fl-node-j6devug104yz .sub-menu > li > .fl-has-submenu-container:hover > a,
.fl-node-j6devug104yz .sub-menu > li > .fl-has-submenu-container.focus > a,
.fl-node-j6devug104yz .sub-menu > li.current-menu-item > a,
.fl-node-j6devug104yz .sub-menu > li.current-menu-item > .fl-has-submenu-container > a{
	color: #bcbdc0;}

				.fl-node-j6devug104yz .fl-menu .fl-toggle-arrows .fl-has-submenu-container:hover > .fl-menu-toggle:before,
		.fl-node-j6devug104yz .fl-menu .fl-toggle-arrows .fl-has-submenu-container.focus > .fl-menu-toggle:before,
		.fl-node-j6devug104yz .fl-menu .fl-toggle-arrows li.current-menu-item >.fl-has-submenu-container > .fl-menu-toggle:before,
		.fl-node-j6devug104yz .fl-menu .fl-toggle-none .fl-has-submenu-container:hover > .fl-menu-toggle:before,
		.fl-node-j6devug104yz .fl-menu .fl-toggle-none .fl-has-submenu-container.focus > .fl-menu-toggle:before,
		.fl-node-j6devug104yz .fl-menu .fl-toggle-none li.current-menu-item >.fl-has-submenu-container > .fl-menu-toggle:before{
			border-color: #bcbdc0;
		}
	
		.fl-node-j6devug104yz .menu .fl-has-submenu .sub-menu{
		display: none;
	}
	.fl-node-j6devug104yz .fl-menu .sub-menu {
	background-color: #00468b;}
		.fl-node-j6devug104yz .fl-menu-vertical.fl-toggle-arrows .fl-has-submenu-container a{
		padding-right: 28px;
	}
	.fl-node-j6devug104yz .fl-menu-vertical.fl-toggle-arrows .fl-menu-toggle,
	.fl-node-j6devug104yz .fl-menu-vertical.fl-toggle-none .fl-menu-toggle{
		width: 28px;
		height: 28px;
		margin: -14px 0 0;
	}
	.fl-node-j6devug104yz .fl-menu-horizontal.fl-toggle-arrows .fl-menu-toggle,
	.fl-node-j6devug104yz .fl-menu-horizontal.fl-toggle-none .fl-menu-toggle,
	.fl-node-j6devug104yz .fl-menu-vertical.fl-toggle-arrows .fl-menu-toggle,
	.fl-node-j6devug104yz .fl-menu-vertical.fl-toggle-none .fl-menu-toggle{
		width: 28px;
		height: 28px;
		margin: -14px 0 0;
	}
.fl-node-j6devug104yz .fl-menu li{
	border-top: 1px solid transparent;
}
.fl-node-j6devug104yz .fl-menu li:first-child{
	border-top: none;
}
	@media ( max-width: 768px ) {

	
	
		
		
	
			.fl-node-j6devug104yz .fl-menu ul.menu {
			display: none;

					}
	
		.fl-node-j6devug104yz .fl-menu .sub-menu {
		-webkit-box-shadow: none;
		-ms-box-shadow: none;
		box-shadow: none;
	}
		
	.fl-node-j6devug104yz .mega-menu.fl-active .hide-heading > .sub-menu,
	.fl-node-j6devug104yz .mega-menu-disabled.fl-active .hide-heading > .sub-menu {
		display: block !important;
	}

	.fl-node-j6devug104yz .fl-menu-logo,
	.fl-node-j6devug104yz .fl-menu-search-item {
		display: none;
	}

	} 
	
@media ( min-width: 769px ) {

		
		.fl-node-j6devug104yz .menu .fl-has-submenu .sub-menu{
			position: absolute;
			top: 0;
			left: 100%;
			z-index: 10;
			visibility: hidden;
			opacity: 0;
		}

	
		
		.fl-node-j6devug104yz .fl-menu .fl-has-submenu:hover > .sub-menu,
		.fl-node-j6devug104yz .fl-menu .fl-has-submenu.focus > .sub-menu{
			display: block;
			visibility: visible;
			opacity: 1;
		}

		.fl-node-j6devug104yz .menu .fl-has-submenu.fl-menu-submenu-right .sub-menu{
			left: inherit;
			right: 0;
		}

		.fl-node-j6devug104yz .menu .fl-has-submenu .fl-has-submenu.fl-menu-submenu-right .sub-menu{
			top: 0;
			left: inherit;
			right: 100%;
		}

		.fl-node-j6devug104yz .fl-menu .fl-has-submenu.fl-active > .fl-has-submenu-container .fl-menu-toggle{
			-webkit-transform: none;
				-ms-transform: none;
					transform: none;
		}

				
					.fl-node-j6devug104yz .fl-menu .fl-menu-toggle{
				display: none;
			}
		
		.fl-node-j6devug104yz ul.sub-menu {
						padding-top: 0px;
									padding-right: 0px;
									padding-bottom: 0px;
									padding-left: 0px;
					}

		.fl-node-j6devug104yz ul.sub-menu a {
														}

	
			.fl-node-j6devug104yz .fl-menu-mobile-toggle{
			display: none;
		}
	}

	
	.fl-node-j6devug104yz .fl-menu-mobile-toggle {
		color: #ffffff;background-color: #006cb8;		font-size: 16px;
		text-transform: none;
		padding-top: 14px;
		padding-right: 14px;
		padding-bottom: 14px;
		padding-left: 14px;
		border-color: rgba( 0,0,0,0.1 );
	}
	.fl-node-j6devug104yz .fl-menu-mobile-toggle rect{
		fill: #ffffff;	}
	.fl-node-j6devug104yz .fl-menu-mobile-toggle:hover,
	.fl-node-j6devug104yz .fl-menu-mobile-toggle.fl-active{
		color: #00468b;background-color: #bcbdc0;	}

	.fl-node-j6devug104yz .fl-menu-mobile-toggle:hover rect,
	.fl-node-j6devug104yz .fl-menu-mobile-toggle.fl-active rect{
		fill: #00468b;	}
	.fl-node-j6devug104yz ul.fl-menu-horizontal li.mega-menu > ul.sub-menu > li > .fl-has-submenu-container a:hover {
	color: #ffffff;
}
.fl-node-j6devug104yz .fl-menu .menu, .fl-node-j6devug104yz .fl-menu .menu > li {
	font-size: 16px;
	line-height: 1;
}
.fl-node-j6devug104yz .menu a {
	padding-top: 14px;
	padding-right: 14px;
	padding-bottom: 14px;
	padding-left: 14px;
}
.fl-node-j6devug104yz .fl-menu .menu .sub-menu > li {
	font-size: 16px;
	line-height: 1;
}
.fl-node-j6devug104yz .fl-menu-mobile-toggle {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
@media(max-width: 768px) {
	.fl-node-j6devug104yz .menu li.fl-has-submenu ul.sub-menu {
		padding-left: 15px;
	}
	.fl-node-j6devug104yz .fl-menu .sub-menu {
		background-color: transparent;
	}
}
.fl-icon-group .fl-icon {
	display: inline-block;
	margin-bottom: 10px;
	margin-top: 10px;
}
.fl-node-jd3wcanyofzb .fl-icon i,
.fl-node-jd3wcanyofzb .fl-icon i:before {
	color: #bcbdc0;
}



.fl-node-jd3wcanyofzb .fl-icon i:hover,
.fl-node-jd3wcanyofzb .fl-icon i:hover:before,
.fl-node-jd3wcanyofzb .fl-icon a:hover i,
.fl-node-jd3wcanyofzb .fl-icon a:hover i:before {
	color: #c9cacd;
}

.fl-node-jd3wcanyofzb .fl-icon i, .fl-node-jd3wcanyofzb .fl-icon i:before {
	font-size: 30px;
}
.fl-node-jd3wcanyofzb .fl-icon-wrap .fl-icon-text {
	height: 52.5px;
}
@media(max-width: 1200px) {
	.fl-node-jd3wcanyofzb .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-jd3wcanyofzb .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-jd3wcanyofzb .fl-icon-wrap .fl-icon-text {
		height: 52.5px;
	}
}
				
	
	
				
	
	
.fl-node-jd3wcanyofzb .fl-icon-group {
	text-align: center;
}
.fl-node-jd3wcanyofzb .fl-icon + .fl-icon {
	margin-left: 10px;
}

.fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button,
.fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:hover,
.fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:visited,
.fl-page .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button,
.fl-page .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:hover,
.fl-page .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:visited {
	background: linear-gradient(to bottom,  #dadbde 0%, #bcbdc0 100%);
}

.fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button,
.fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:visited,
.fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button *,
.fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:visited *,
.fl-page .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button,
.fl-page .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:visited,
.fl-page .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button *,
.fl-page .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:visited * {
	color: #00468b;
}





.fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:hover,
.fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:focus,
.fl-page .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:hover,
.fl-page .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:focus {

	background: #c9cacd;

		background: linear-gradient(to bottom,  #e7e8eb 0%, #c9cacd 100%);
	}







.fl-node-vbp2q43eyxl7 a.fl-button {
	width: 90%;
}
.fl-node-vbp2q43eyxl7 .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-vbp2q43eyxl7 .fl-button-wrap a.fl-button {
	padding-top: 20px;
	padding-bottom: 20px;
}
.fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button, .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button, .fl-page .fl-builder-content .fl-node-vbp2q43eyxl7 a.fl-button:visited {
	font-weight: 700;
}
/* Clearfix */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.fl-builder-edit .pp-announcement-bar-wrap {
	position: relative;
}
.pp-helper {
	background: rgba(255, 255, 255, .9);
	color: #000;
	padding: 3px;
}

.pp-announcement-bar {
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	transition: all .3s linear;
}

.pp-announcement-bar-wrap {
	display: block;
	left: 0;
	position: fixed;
	right: 0;
	width: 100%;
	z-index: 99998;
}
.pp-announcement-bar-wrap.pp-announcement-bar-top {
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	transition: all .3s linear;
}
.pp-announcement-bar-wrap.pp-announcement-bar-bottom {
	-webkit-transition: opacity .3s linear, visibility .3s linear;
	-moz-transition: opacity .3s linear, visibility .3s linear;
	-o-transition: opacity .3s linear, visibility .3s linear;
	-ms-transition: opacity .3s linear, visibility .3s linear;
	transition: opacity .3s linear, visibility .3s linear;
}
.pp-announcement-bar-wrap .pp-announcement-bar-inner {
	display: table;
	width: 100%;
}

.pp-announcement-bar-content,
.pp-announcement-bar-close-button {
	display: table-cell;
	margin: 0 10px;
	padding: 5px;
	vertical-align: middle;
	width: 100%;
}
.pp-announcement-bar-close-button {
	cursor: pointer;
	padding-right: 10px;
	text-align: right;
	position: relative;
    right: 10px;
}
.pp-announcement-bar-link,
.pp-announcement-bar-icon,
.pp-announcement-bar-content p {
	display: inline-block;
	margin: 0 10px;
}
.pp-announcement-bar-content p {
	margin-bottom: 0;
}
.pp-announcement-bar-content a {
	display: inline-block;
	text-decoration: none;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	-ms-transition: all .3s linear;
	transition: all .3s linear;
}
.pp-announcement-bar-wrap .pp-announcement-bar-icon .dashicons,
.pp-announcement-bar-wrap .pp-announcement-bar-icon .dashicons-before:before {
	font-size: inherit;
	height: auto;
	width: auto;
}
@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.
 */ }.fl-node-vmry08c47i52 .pp-announcement-bar-wrap {
    background: #dc1e35;
            top: 0;
        border-bottom-color: #006cb8;
        border-bottom-style: dashed;
        border-bottom-width: 1px;
            }

    .admin-bar .fl-node-vmry08c47i52 .pp-announcement-bar-wrap {
        top: 32px;
    }

.fl-node-vmry08c47i52 .pp-announcement-bar-wrap.pp-announcement-bar-bottom {
	opacity: 0;
    visibility: hidden;
}
.fl-node-vmry08c47i52 .pp-announcement-bar-wrap.pp-announcement-bar-top {
        margin-top: -180px;
    }
.pp-top-bar {
    margin-top: 80px !important;
}
.pp-top-bar-admin {
    margin-top: 112px !important;
}
.pp-top-bar .fl-node-vmry08c47i52 .pp-announcement-bar-wrap.pp-announcement-bar-top {
	opacity: 1;
    margin-top: 0;
}
.pp-bottom-bar .fl-node-vmry08c47i52 .pp-announcement-bar-wrap.pp-announcement-bar-bottom {
	opacity: 1;
    visibility: visible;
}
.pp-bottom-bar {
    margin-bottom: 80px;
}

.fl-node-vmry08c47i52 .pp-announcement-bar-wrap .pp-announcement-bar-inner {
    height: 80px;
    text-align: center;
}
.fl-node-vmry08c47i52 .pp-announcement-bar-wrap .pp-announcement-bar-icon {
    vertical-align: middle;
}
.fl-node-vmry08c47i52 .pp-announcement-bar-wrap .pp-announcement-bar-icon .pp-icon {
    color: #FFFFFF;
    font-size: 20px;
}
.fl-node-vmry08c47i52 .pp-announcement-bar-wrap .pp-announcement-bar-content p {
    color: #ffffff;
}
.fl-node-vmry08c47i52 .pp-announcement-bar-wrap .pp-announcement-bar-link a {
    			color: #333333;
	}
.fl-node-vmry08c47i52 .pp-announcement-bar-wrap .pp-announcement-bar-link a:hover {
    			color: #dddddd;
	}

.fl-node-vmry08c47i52 .pp-announcement-bar-wrap .pp-announcement-bar-close-button .pp-close-button {
    color: #000;
    font-size: 16px;
}

@media only screen and ( max-width: 782px ) {
	    .logged-in.admin-bar .fl-node-vmry08c47i52 .pp-announcement-bar-wrap.pp-announcement-bar-top {
        top: 46px;
    }
    .pp-announcement-bar-link, .pp-announcement-bar-icon, .pp-announcement-bar-content p {
        display: inline-block;
        padding: 5px;
    }
}
.fl-node-vmry08c47i52 .pp-announcement-bar-wrap .pp-announcement-bar-content p {
	font-weight: 700;
}
 .fl-node-vmry08c47i52 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-vmry08c47i52.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 992px ) {
 .fl-node-vmry08c47i52.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-vmry08c47i52.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
div.fancybox-container {
	z-index: 999992;
}
.pp-photo-gallery {
    position: relative;
	text-align: center;
	text-decoration: none;
	opacity: 0;
}
.pp-photo-gallery:before,
.pp-photo-gallery:after {
	content: " ";
	display: table;
}
.pp-photo-gallery:after {
	clear: both;
}
.pp-photo-gallery .pp-photo-gallery-item {
    float: left;
    text-align: center;
}
.pp-photo-gallery .pp-photo-gallery-content {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.pp-photo-gallery .pp-photo-gallery-content > a {
	display: block;
    padding: unset;
	isolation: isolate;
	overflow: hidden;
	transform: translateZ(0);
}

/* Overlay */
.pp-photo-gallery .pp-gallery-overlay {
	position: absolute;
	overflow: hidden;
	transition: .5s ease;
}

.pp-photo-gallery .pp-gallery-overlay .pp-caption {
	margin-bottom: 10px;
}

.pp-photo-gallery .pp-photo-gallery-content .pp-gallery-img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    will-change: transform;
    width: 100%;
}

.pp-photo-gallery.justified-gallery > a,
.pp-photo-gallery.justified-gallery > div {
	opacity: 0;
	visibility: hidden !important;
}
.pp-photo-gallery.justified-gallery > .entry-visible {
	opacity: 1;
	visibility: visible !important;
}

.pp-photo-gallery.justified-gallery .pp-photo-gallery-content {
	height: 100%;
}

.pp-gallery-pagination .pp-gallery-load-more {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	-webkit-transition: 0.2s all ease-in-out;
	-moz-transition: 0.2s all ease-in-out;
	transition: 0.2s all ease-in-out;
}
.pp-gallery-pagination .pp-gallery-load-more.disabled {
	opacity: 0.5;
	pointer-events: none;
}
.pp-gallery-pagination a,
.pp-gallery-pagination a:visited {
	text-decoration: none;
}

.pp-gallery-fancybox-axis-x.fancybox-show-thumbs .fancybox-inner {
	right: 0;
	bottom: 95px;
}
.pp-gallery-fancybox-axis-x .fancybox-thumbs {
	top: auto;
	width: auto;
	bottom: 0;
	left: 0;
	right : 0;
	height: 95px;
	padding: 10px 10px 5px 10px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.3);
}
.fancybox-t0mkvp8j1s3z button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}






.fl-node-t0mkvp8j1s3z .pp-gallery-overlay .pp-overlay-icon span {
	width: auto;
	height: auto;
	color: ;
	font-size: 30px;
	background-color: ;
					}

.fl-node-t0mkvp8j1s3z .pp-gallery-overlay .pp-overlay-icon span:before {
	font-size: 30px;
	width: auto;
	height: auto;
}

.fl-node-t0mkvp8j1s3z .pp-photo-gallery-caption,
.fl-node-t0mkvp8j1s3z .pp-gallery-overlay .pp-caption {
	}















.fl-node-t0mkvp8j1s3z .pp-gallery-pagination.pagination-scroll {
	display: none;
}
.fl-node-t0mkvp8j1s3z .pp-gallery-pagination .pp-gallery-load-more {
			background-color: #006cb8;
				color: #ffffff;
	}
.fl-node-t0mkvp8j1s3z .pp-gallery-pagination .pp-gallery-load-more:hover {
			}

.fancybox-t0mkvp8j1s3z-overlay {
	background-image: none;
			background-color: rgba(0,0,0,0.5);
	}
.fancybox-is-open .fancybox-t0mkvp8j1s3z-overlay {
	opacity: 1;
}

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

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

@media only screen and ( max-width: 768px ) {
	}
.fl-node-t0mkvp8j1s3z .pp-photo-gallery-caption {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-t0mkvp8j1s3z .pp-gallery-pagination {
	text-align: center;
}
.fl-node-t0mkvp8j1s3z .pp-gallery-pagination .pp-gallery-load-more {
	text-align: center;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding-top: 10px;
	padding-right: 25px;
	padding-bottom: 10px;
	padding-left: 25px;
}
 .fl-node-t0mkvp8j1s3z > .fl-module-content {
	margin-top:-20px;
}
@media ( max-width: 1200px ) {
 .fl-node-t0mkvp8j1s3z.fl-module > .fl-module-content {
	margin-top:-20px;
}
}
@media (max-width: 768px) { .fl-node-t0mkvp8j1s3z > .fl-module-content { margin-top:20px; } }
/* Start Global CSS */
<!-- Include the Google Fonts link tag -->
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<style>
/* Define CSS rules for specific elements */
body {
font-family: 'Lato', sans-serif;
}
p {
font-family: 'Lato', sans-serif;
}
/* Specify the font for header elements */
h1, h2, h3, h4, h5, h6 {
font-family: 'Lato', sans-serif;
color: #006CB8;
}

/* Section Headers */

.combo-season-title {
    width: 100%;
    padding: 10px 70px 10px 20px;
    background-color: #EAEAEA;
    color: #006CB8;
    font-size: 22px;
    text-align: left;
    position: relative;
    border-radius: 10px 10px 0px 10px;
}

.combo-season-title::before {
    content: "";
    position: absolute;
    bottom: -25px;
    right: 0px;
    background-image: url("https://livoniahockey.teamsnapsites.com/wp-content/uploads/sites/727/2024/08/knight-combo-101.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .9;
    width: 190px;
    height: 100px;
}

.coed-season-title {
    width: 100%;
    padding: 10px 70px 10px 20px;
    background-color: #EAEAEA;
    color: #006CB8;
    font-size: 22px;
    text-align: left;
    position: relative;
    border-radius: 10px 10px 0px 10px;
}

.coed-season-title::before {
    content: "";
    position: absolute;
    bottom: -25px;
    right: 0px;
    background-image: url("https://livoniahockey.teamsnapsites.com/wp-content/uploads/sites/727/2024/08/knights-100.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .9;
    width: 100px;
    height: 100px;
}

.coed-section {
    width: 100%;
    padding: 10px;
    background-color: #EAEAEA;
    color:#666666;
    font-size: 22px;
    text-align: center;
    position: relative;
}

.coed-section-knight {
    width: 100%;
    padding: 10px;
    background-color: #EAEAEA;
    color: #666666;
    font-size: 22px;
    text-align: center;
    position: relative;
}

.coed-section-knight::before {
    content: "";
    position: absolute;
    bottom: -25px;
    right: 0px;
    background-image: url("https://livoniahockey.teamsnapsites.com/wp-content/uploads/sites/727/2024/08/lady-knights-helmet-100.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .9;
    width: 100px;
    height: 100px;
}

.coed-season-team {
    width: 100%;
    padding: 10px 70px 10px 20px;
    background-color: #EAEAEA;
    color: #006CB8;
    font-size: 22px;
    text-align: left;
    position: relative;
    border-radius: 10px 10px 0px 10px;
}

.coed-season-team::before {
    content: "";
    position: absolute;
    bottom: -15px;
    right: 10px;
    background-image: url("https://livoniahockey.teamsnapsites.com/wp-content/uploads/sites/727/2024/08/knights-100.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .9;
    width: 80px;
    height: 80px;
}


.coed-emphasis {
    color:#DC1E35;
    font-weight: bold;
}

.coed-subtitle {
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    color: #006CB8;    
    padding: -5px 0 0 0;
}

.coed-image-text p {
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    color: #006CB8;
    text-align: center;
}

.coed-section a {
    text-decoration: none;
    color: #DC1E35;
}

.coed-section a:hover {
    text-decoration: underline;
    color: #006CB8;
}

.coed-section a:visited {
    text-decoration: none;
    color: #006CB8;
}

/* Accordion List */

.accordion li {
    padding: 0px 0px 14px 0;
}

/* Countdown Timer */

.coed-countdownElement h2 {
    background-color: #006CB8 !important;
    color: #EAEAEA !important;
    font-weight: normal !important;
    font-size: 28px !important;
    font-variant: normal !important;
    font-family: 'Lato', sans-serif !important;
    text-transform: none !important;
    padding: 18px 20px 0px 20px !important;
    box-shadow: 2px 0 #EAEAEA, 7px 0 #DC1E35 !important;
}

#coed-countdown_element_149681_20231102000000_days {
    color: #666666 !important;
    font-family: 'Lato', sans-serif !important;
}

#coed-countdown_element_149681_20231102000000_hours,
#coed-countdown_element_149681_20231102000000_minutes,
#coed-countdown_element_149681_20231102000000_seconds {
    color: #006CB8 !important;
    font-family: 'Lato', sans-serif !important;
}

#coed-countdown_element_149681_20231102000000 small { 
    color: #666666 !important;
    text-transform: lowercase !important;
}

.codeElement h2 {
    display: none;
}

.hide-element {
    display: none;
}

/* Default Link */

.linkElement .icon.goToLink {
    font-size: 18px !important;
    font-weight: normal !important;
    text-transform: none !important;
    color: #EAEAEA !important;
}

.linkElement .goToLink {
    background-color: #006CB8 !important;
    color: #EAEAEA !important;
    padding: 15px !important;
    font-family: 'Lato', sans-serif !important;
}

.linkElement .goToLink:hover {
    background-color: #666666 !important;
    transition: background-color 0.3s !important;
}

.linkElement .goToLink:active {
    background-color: #006CB8 !important;
    color: #666666 !important;
}

/* Survey or Registration Link */

.surveyLinkElement small {
    font-size: 18px !important;
    font-weight: normal !important;
    text-transform: none !important;
    color: #EAEAEA !important;
}

.surveyLinkElement a {
    font-size: 18px !important;
    font-weight: normal !important;
    text-transform: none !important;
    font-family: 'Lato', sans-serif !important;
    text-decoration: none !important;
    background-color: #006CB8 !important;
    color: #EAEAEA !important;
    padding: 15px !important;
    display: inline-block !important;
    border: none !important;
}

.surveyLinkElement a:hover {
    background-color: #666666 !important;
    transition: background-color 0.3s !important;
}

.surveyLinkElement a:active {
    background-color: #006CB8 !important;
    color: #666666 !important;
}

/* Contact Card */

.contact-element {
    font-family: 'Lato', sans-serif !important;
}

.contact-element-first-name {
    color:#666666;
}

.contact-element-last-name {
    color:#00287C;
}

.contact-element .title {
    font-weight: bold;
}

/* Default Link */

.linkElement .icon.goToLink {
    font-size: 18px !important;
    font-weight: normal !important;
    text-transform: none !important;
    color: #f2f2f2 !important;
}

.linkElement .goToLink {
    background-color: #00287C !important;
    color: #f2f2f2 !important;
    padding: 15px !important;
    font-family: 'Lato', sans-serif !important;
}

.linkElement .goToLink:hover {
    background-color: #666666 !important;
    transition: background-color 0.3s !important;
}

.linkElement .goToLink:active {
    background-color: #00287C !important;
    color: #666666 !important;
    }

/* Survey or Registration Link */

.surveyLinkElement small {
    font-size: 18px !important;
    font-weight: normal !important;
    text-transform: none !important;
    color: #f2f2f2 !important;
}

.surveyLinkElement a {
    font-size: 18px !important;
    font-weight: normal !important;
    text-transform: none !important;
    font-family: 'Lato', sans-serif !important;
    text-decoration: none !important;
    background-color: #00287C !important;
    color: #f2f2f2 !important;
    padding: 15px !important;
    display: inline-block !important;
    border: none !important;
}

.surveyLinkElement a:hover {
    background-color: #666666 !important;
    transition: background-color 0.3s !important;
}

.surveyLinkElement a:active {
    background-color: #00287C !important;
    color: #666666 !important;
}

/* Sponsor Element */

.sponsorElement {
    font-family: 'Lato', sans-serif !important;
    text-align: center !important;
}

.sponsorElement .imageLink {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.sponsorElement h3 {
    color: #00287C !important;
    margin: 0 0 0 0 !important;
}

.sponsorElement .text {
    color: #666666 !important;
    font-size: 14px !important;
}

.sponsorElement .description {
    color: #666666 !important;
    font-size: 16px !important;
}

.description .goToLink {
    background-color: #00287C !important;
    border: 1px solid #666666 !important;
    color: #f2f2f2 !important;
    padding: 10px 10px 5px 25px !important;
    text-decoration: none !important;
    text-transform: lowercase !important;
    font-weight: normal !important;
}

.description .goToLink a:hover {
    background-color: #666666 !important;
    color: #00287C !important;
    transition: background-color 0.3s !important;
}

.description.goToLink a:active {
    color: #00287C !important;
    color: #666666 !important;
}

.platinum-sponsor p {
    font-style: normal !important;
    font-weight: bold !important;
    color: #757575 !important;
}

.gold-sponsor p {
    font-style: normal !important;
    font-weight: bold !important;
    color: #FFDF00 !important;
}

.silver-sponsor p {
    font-style: normal !important;
    font-weight: bold !important;
    color: #A7AFB8 !important;
}

.bronze-sponsor p {
    font-style: normal !important;
    font-weight: bold !important;
    color: #CD7F32 !important;
}

/* Social buttons */

body .sn-social-media-list {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-decoration: none !important;
}

footer .sn-social-media-list {
    display: block !important;
}
</style>
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
<style>
h1, h2, h3, h4, h5, h6 {
color: #00287C;
}

/* Section Headers */

.girls-season-title {
    width: 100%;
    padding: 10px 75px 10px 20px;
    background-color: #f2f2f2;
    color: #00287C;
    font-size: 22px;
    text-align: left;
    position: relative;
    border-radius: 10px 10px 0px 10px;
}

.girls-season-title::before {
    content: "";
    position: absolute;
    bottom: -14px;
    right: 5px;
    background-image: url("https://livoniahockey.teamsnapsites.com/wp-content/uploads/sites/727/2024/08/lady-knights-helmet-100.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .9;
    width: 90px;
    height: 90px;
}

.girls-section {
    width: 100%;
    padding: 10px;
    background-color: #f2f2f2;
    color:#666666;
    font-size: 22px;
    text-align: center;
    position: relative;
}

.girls-section-knight {
    width: 100%;
    padding: 10px;
    background-color: #f2f2f2;
    color: #666666;
    font-size: 22px;
    text-align: center;
    position: relative;
}

.girls-section-knight::before {
    content: "";
    position: absolute;
    bottom: -14px;
    right: 5px;
    background-image: url("https://livoniahockey.teamsnapsites.com/wp-content/uploads/sites/727/2024/08/lady-knights-helmet-100.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .9;
    width: 90px;
    height: 90px;
}

.girls-fan-title {
    width: 100%;
    margin: 10px 0px -10px 0px;
    padding: 10px 75px 10px 20px;
    background-color: #f2f2f2;
    color: #00287C;
    font-size: 22px;
    text-align: left;
    position: relative;
    border-radius: 10px 10px 0px 10px;
}

.girls-fan-title::before {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 5px;
    background-image: url("https://livoniahockey.org/wp-content/uploads/sites/727/2025/08/girls-fan-store.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .9;
    width: 90px;
    height: 90px;
}

.girls-season-team {
    width: 100%;
    padding: 10px 75px 10px 20px;
    background-color: #f2f2f2;
    color: #00287C;
    font-size: 22px;
    text-align: left;
    position: relative;
    border-radius: 10px 10px 0px 10px;
}

.girls-season-team::before {
    content: "";
    position: absolute;
    bottom: -10px;
    right: 10px;
    background-image: url("https://livoniahockey.teamsnapsites.com/wp-content/uploads/sites/727/2024/08/lady-knights-helmet-100.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .9;
    width: 70px;
    height: 70px;
}

.girls-emphasis {
    color: #00287C;
    font-weight: bold;
}

.girls-subtitle {
    font-size: 12px;
    text-align: center;
    font-weight: bold;
    color: #00287C;    
    padding: -5px 0 0 0;
}

.girls-image-text p {
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    color: #00287C;
    text-align: center;
}

.girls-section a {
    text-decoration: none;
    color: #00287C;
}

.girls-section a:hover {
    text-decoration: underline;
    color: #00287C;
}

.girls-section a:visited {
    text-decoration: none;
    color: #00287C;
}

/* Countdown Timer */

#girls-countdownElement h2 {
    background-color: #00287C !important;
    color: #f2f2f2 !important;
    font-weight: normal !important;
    font-size: 28px !important;
    font-variant: normal !important;
    font-family: 'Lato', sans-serif !important;
    text-transform: none !important;
    padding: 18px 20px 0px 20px !important;
    box-shadow: 2px 0 #f2f2f2, 7px 0 #666666 !important;
}

#girls-countdown_element_149681_20231102000000_days {
    color: #666666 !important;
    font-family: 'Lato', sans-serif !important;
}

#girls-countdown_element_149681_20231102000000_hours,
#girls-countdown_element_149681_20231102000000_minutes,
#girls-countdown_element_149681_20231102000000_seconds {
    color: #00287C !important;
    font-family: 'Lato', sans-serif !important;
}

#girls-countdown_element_149681_20231102000000 small { 
    color: #666666 !important;
    text-transform: lowercase !important;
}

/* Tab Element */

.girls-LayoutContainer .layoutContainer .column {
    background-color: #FFFFFF !important;
}

.girls-LayoutContainer .contentTabs {
    background-color: #F1F1F1 !important;
}

.girls-LayoutContainer .contentTabs li {
    background-color: #666666 !important;
    margin-right: 5px !important;
    border-bottom: 2px solid transparent;
}

.girls-LayoutContainer .contentTabs li a {
    background-color: #f2f2f2 !important;
    color: #00287C !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-transform: none !important;
}

.girls-LayoutContainer .contentTabs li.selected {
    background-color: #666666 !important;
    color: #f2f2f2 !important;
}

.girls-LayoutContainer .contentTabs li.selected a {
    background-color: #00287C !important; 
    color: #f2f2f2 !important;
}

.girls-LayoutContainer .contentTabs li:not(.selected):hover {
    background-color: #666666 !important;
    transition: background-color 0.3s !important;
}

.girls-LayoutContainer .contentTabs li:not(.selected):hover a {
    background-color: #00287C !important;
    color: #ffffff !important;
}
</style>
/* 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-node-9vlc0xywo8fq .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-dmle608rguk4 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-w0lx6vu8zgoc .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-n2bg4f1s5m8z .fl-row-content {
				min-width: 0px;
			}
		