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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 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: 768px) 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: 767px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1024px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }




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

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

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


.fl-node-5j4lprocw72e > .fl-row-content-wrap {
	background-color: #004563;
}
 .fl-node-5j4lprocw72e > .fl-row-content-wrap {
	padding-top:120px;
	padding-bottom:10px;
}




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




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




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




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




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




.fl-node-wmq9vegx4j1k {
	width: 33.333%;
}




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




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




.fl-node-hqk4ln5r6dtx {
	width: 33.333%;
}




.fl-node-oryaupq0jwzf {
	width: 33.333%;
}
/**
 * This file should contain frontend styles that
 * will be applied to all module instances.
 */

.bb-gf-input.input-small {
    width: 46px !important;
}

.pp-gf-content {
	position: relative;
}

.pp-gf-content:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.pp-gf-content .pp-gf-inner {
	position: relative;
}

.pp-gf-content .form-title,
.pp-gf-content .form-description {
	position: relative;
}

.pp-gf-content .gform_wrapper form {
	position: relative;
}

.pp-gf-content legend {
    border: 0;
}

.pp-gf-content .gform_wrapper .gform_body {
	width: 100% !important;
}

.pp-gf-content .gform_wrapper ul.gform_fields {
    padding: 0;
}

.pp-gf-content .gform_wrapper ul.gform_fields li.gfield {
	padding-right: 0;
}

.pp-gf-content .gform_wrapper ul.gform_fields li.gfield.gf_left_half {
	padding-right: 16px;
}

.pp-gf-content .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
	max-width: 100% !important;
}

.pp-gf-content .gform_wrapper .gfield input[type="checkbox"]:focus, .pp-gf-content .gform_wrapper .gfield input[type="radio"]:focus {
    width: auto;
    text-align: left !important;
}

.gform_wrapper .top_label li.gfield.gf_left_half input.medium,
.gform_wrapper .top_label li.gfield.gf_right_half input.medium,
.gform_wrapper .top_label li.gfield.gf_left_half select.medium,
.gform_wrapper .top_label li.gfield.gf_right_half select.medium {
    width: 100% !important;
}

/* .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.gform_wrapper .gfield input:focus,
.gform_wrapper .gfield select,
.gform_wrapper .gfield textarea {
    height: auto;
} */

.gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]) {
    width: 100% !important;
}

.gform_wrapper.gf_browser_chrome .gfield_checkbox li input,
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox],
.gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
    margin-top: 0 !important;
}

div.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
    margin-bottom: 0;
}

.pp-gf-content .gform_wrapper ul li.gfield {
    margin-top: 0;
}

.pp-gf-content .gform_wrapper ul.gfield_radio li input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']) {
    width: auto !important;
    display: inline-block;
}

.pp-gf-content .gform_wrapper .ginput_complex span.ginput_full:not(.ginput_cardextras) {
    display: block;
}

.pp-gf-content .gform_wrapper .gfield .gfield_description {
    padding-top: 5px;
}

.pp-gf-content .gform_wrapper h2.gsection_title {
	margin-bottom: 0;
}

@media only screen and (max-width: 640px) {
	.pp-gf-content .gform_wrapper ul.gform_fields li.gfield.gf_left_half {
		padding-right: 0;
	}
}
@media (max-width: 767px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper {
	max-width: 100%;
}

.fl-node-98w7szqcg4k3 .pp-gf-content {
	background-color: #ffffff;
			background-size: cover;
			background-repeat: no-repeat;
	}


.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper ul li.gfield {
	list-style-type: none !important;
	}

.fl-builder-content .fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_title,
.fl-builder-content .fl-node-98w7szqcg4k3 .pp-gf-content .form-title {
		display: block;
}

.fl-builder-content .fl-node-98w7szqcg4k3 .pp-gf-content .form-title {
	display: none;
}

.fl-builder-content .fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_title {
	}

.fl-builder-content .fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper span.gform_description,
.fl-builder-content .fl-node-98w7szqcg4k3 .pp-gf-content .form-description {
		display: block;
}

.fl-builder-content .fl-node-98w7szqcg4k3 .pp-gf-content .form-description {
	display: none;
}

.fl-builder-content .fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper span.gform_description {
	}

.fl-builder-content .fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield .gfield_label {
			display: block;
	}


.fl-builder-content .fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield_required {
	}

.fl-builder-content .fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield .ginput_complex.ginput_container label {
	}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .ginput_container label,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper table.gfield_list thead th,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper span.ginput_product_price,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper span.ginput_product_price_label,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper span.ginput_quantity_label,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield_html {
		font-weight: default;}


.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper span.ginput_product_price {
		color: #900900 !important;
	}


.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield .gfield_description {
	}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gsection {
		border-bottom-width: 1px;
			border-bottom-color: #cccccc;
				margin-bottom: 20px;
	}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper h2.gsection_title,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper h3.gsection_title {
		color: #333333;
	}


.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield select,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield textarea {
		background-color: ;
		outline: none;
}


.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield select {
	}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]),
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .ginput_complex select {
	}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .ginput_complex span {
	}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield input::-webkit-input-placeholder {
	color: #eeeeee;
}
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield input:-moz-placeholder {
	color: #eeeeee;
}
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield input::-moz-placeholder {
	color: #eeeeee;
}
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield input:-ms-input-placeholder {
	color: #eeeeee;
}
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield textarea::-webkit-input-placeholder {
	color: #eeeeee;
}
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield textarea:-moz-placeholder {
	color: #eeeeee;
}
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield textarea::-moz-placeholder {
	color: #eeeeee;
}
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield textarea:-ms-input-placeholder {
	color: #eeeeee;
}


.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']):focus,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield select:focus,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield textarea:focus {
	border-color: #719ece;
}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .top_label input.medium,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .top_label select.medium {
	width: 49% !important;
}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper textarea.medium {
	width: ;}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .ginput_complex .ginput_full input[type="text"],
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .ginput_complex  input[type="text"] {
	width: 97.5% !important;
}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .ginput_complex .ginput_right {
	margin-left: 0 !important;
}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .ginput_complex .ginput_right input,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .ginput_complex .ginput_right select {
	width: ;}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_footer {
		text-align: left;
				justify-content: flex-start;
			}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform-button,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_footer .gform_button,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_page_footer .button,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
		width: auto;
			background-color: ;
			white-space: normal;
}


.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_page_footer .button {
	}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform-button:hover,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_footer .gform_button:hover,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_page_footer .button:hover {
		background: ;
}


.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield input[type=file] {
	background-color: transparent;
					border-style: none;
					}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .validation_error,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_validation_errors > h2,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper li.gfield.gfield_error,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
		color: #790000 !important;
		border-color: #790000 !important;
	}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .validation_error,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_validation_errors > h2 {
			display: block !important;
	}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield.gfield_error {
	background-color: #ffdfe0;
	width: 100%;
}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield.gfield_error .gfield_label {
		color: #790000;
		margin-left: 0;
}

.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield_error .validation_message {
		display: block;
			color: #790000;
			border-color: #790000;
	}


.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield_error input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield_error .ginput_container select,
.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gfield_error .ginput_container textarea {
	border-color: #790000;
		border-width: 1px !important;
	}


@media only screen and (max-width: 992px) {
	.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
					}
}

@media only screen and (max-width: 767px) {
	.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-98w7szqcg4k3 .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
					}
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-mif1ptk6owqn.fl-module-heading .fl-heading {
	font-weight: 500;
	letter-spacing: 15px;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-mif1ptk6owqn > .fl-module-content {
	margin-top:0px;
}
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: 767px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-q6skbujfi5xt, .fl-node-q6skbujfi5xt .fl-photo {
	text-align: center;
}
.fl-node-itps8hno5cuq, .fl-node-itps8hno5cuq .fl-photo {
	text-align: center;
}
.fl-node-itps8hno5cuq .fl-photo-content, .fl-node-itps8hno5cuq .fl-photo-img {
	width: 100%;
}
 .fl-node-itps8hno5cuq > .fl-module-content {
	margin-top:30%;
	margin-right:2.5%;
	margin-bottom:5%;
	margin-left:2.5%;
}
@media (max-width: 767px) { .fl-node-itps8hno5cuq > .fl-module-content { margin-top:20px; } } .fl-node-72bruwci1gan > .fl-module-content {
	margin-top:100px;
}
@media (max-width: 767px) { .fl-node-72bruwci1gan > .fl-module-content { margin-top:20px; } }.fl-node-mn40e1ci3osr, .fl-node-mn40e1ci3osr .fl-photo {
	text-align: center;
}

/* Start Global CSS */
/*
===
TYPOGRAPHY
===
*/

/*--- TypeKit Import ---*/
body,
h1, h2, h3, h4, h5, h6,
button, .fl-button{
  font-family: semplicitapro, sans-serif !important;
}

h1,h2,h3{
    text-transform: uppercase !important;
}

@media (max-width: 1120px) and (min-width: 993px){
    h3{
        letter-spacing: 0px !important;
    }
}

a{
    transition: color 0.2s ease;
}

a.fl-button,
.pp-social-icon a i{
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

a.fl-button,
button{
    font-weight: 600 !important;
}

ul{
    padding-left: 20px;
}

ul li span+ul{
    margin-top: 20px;
}

/*
===
NAVBAR
===
*/

div[id^="pp-advanced-menu-off-canvas-"] .pp-advanced-menu.off-canvas li.menu-item a:focus{
    outline: none !important;
}

div[id^="pp-advanced-menu-off-canvas-"] .pp-advanced-menu.off-canvas .pp-has-submenu-container a > span{
    padding-right: 28px !important;
}

/*--- Sticky Navbar (HOME) ---*/
.gwd_navbar_home__wrapper .fl-html{
    cursor: pointer;
}

header.fl-theme-builder-header-sticky .gwd_navbar_home__icon{
    transition: max-height 0.5s ease, max-width 0.5s ease;
}

header.fl-theme-builder-header-sticky.fl-theme-builder-header-shrink .gwd_navbar_home__icon{
    max-width: 30px;
    max-height: 40px;
}

header.fl-theme-builder-header-sticky .gwd_navbar_home__heading{
    transition: -webkit-transform 0.5s ease, -moz-transform 0.5s ease, -ms-transform 0.5s ease, -o-transform 0.5s ease, transform 0.5s ease;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -ms-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

header.fl-theme-builder-header-sticky.fl-theme-builder-header-shrink .gwd_navbar_home__heading{
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
}

/*--- Sticky Navbar (INSIDE) ---*/
header.fl-theme-builder-header-sticky .gwd_navbar__logo a.gwd_navbar__icon img{
    transition: -webkit-transform 0.2s ease, -ms-transform 0.2s ease, transform 0.2s ease, width 0.5s ease, height 0.5s ease;
}

header.fl-theme-builder-header-sticky .gwd_navbar__logo a.gwd_navbar__icon:hover img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

header.fl-theme-builder-header-shrink .gwd_navbar__logo a.gwd_navbar__icon img{
    width: 30px;
}


/*header.fl-theme-builder-header-sticky .gwd_navbar_home__icon{
    max-height: 0;
    transition: max-height 0.2s ease;
}

header.fl-theme-builder-header-sticky .gwd_navbar_home__icon img{
    width: 0;
}

header.fl-theme-builder-header-shrink .gwd_navbar_home__icon{
    max-height: 100px;
}

header.fl-theme-builder-header-shrink .gwd_navbar_home__icon img{
    width: 30px;
}

header.fl-theme-builder-header-sticky .gwd_navbar_home__heading{
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.2s ease;
}

header.fl-theme-builder-header-sticky .gwd_navbar_home__heading .fl-heading{
    transition: font-size 0.2s ease;
}

header.fl-theme-builder-header-shrink .gwd_navbar_home__heading{
    max-height: 0;
}

header.fl-theme-builder-header-shrink .gwd_navbar_home__heading .fl-heading{
    font-size: 0;
}*/



/*
===
VERTICAL HEADING
===
*/

body:not(.fl-builder-edit) .gwd_vertical_heading{
    -webkit-transform: rotate(270deg) translateX(-100%);
    -ms-transform: rotate(270deg) translateX(-100%);
    transform: rotate(270deg) translateX(-100%);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    position: absolute;
    top: 50px;
    left: 0px;
}

.gwd_team_graph__row__info_col:before{
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    position: relative;
    background-color: #004563;
    margin-top: -65px;
    margin-bottom: 65px;
}

@media (min-width: 768px) and (max-width: 992px){
    body:not(.fl-builder-edit) .gwd_vertical_heading{
        left: 10px;
    }
}

@media (min-width: 993px){
    body:not(.fl-builder-edit) .gwd_vertical_heading{
        left: calc(50% - 620px);
    }
}


/*
===
ANCHOR BOTTOM PLUGIN [+ JS]
===
*/

body:not(.fl-builder-edit) .gwd_anchor_bottom__active > .fl-module-content{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/*
===
BRACKET FRAMES PLUGIN [+ JS]
===
*/

.gwd_bracket_frames{
    position: relative;
}

.gwd_bracket_frames__wrapper{
    overflow: hidden;
    position: absolute;
    left: 50%;
    width: 100vw;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.gwd_bracket_frames__left,
.gwd_bracket_frames__right{
    display: block;
    width: 100vw;
    position: absolute;
    background-color: #003D58;
}


.gwd_bracket_frames__left{
    height: 65%;
    top: 40%;
    right: calc(50% + 240px);
}

.gwd_bracket_frames__right{
    height: 55%;
    top: 10%;
    left: calc(50% + 170px);
}

/*
===
BLOCK-LEVEL LINK TEXT 
===
*/
.gwd_block_link_text .fl-rich-text *{
    color: #003d58;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gwd_block_link__container > a{
    max-width: 100%;
}

.gwd_block_link__container > a:hover{
    text-decoration: none;
}

.gwd_block_link__container > a:hover .gwd_block_link_text .fl-rich-text *{
    color: #00A5D4;
    text-decoration: none;
}

.gwd_block_link__container > a.fl-button{
    border: none !important;
    background: transparent !important;
    padding: 0;
}


/*
===
NAKED BUTTON ARROW COLORS
===
*/

.gwd_block_link__container .button_naked__icon{
    font-weight: 500;
    font-size: 1.1em;
}

.button_naked__icon a.fl-button .fl-button-icon,
.button_naked__icon a.fl-button .fl-button-icon:before,
.gwd_block_link__container .button_naked__icon .fl-button-icon,
.gwd_block_link__container .button_naked__icon .fl-button-icon:before
{
    transition: color 0.2s ease;
}

.button_naked__icon_medium-primary a.fl-button .fl-button-icon,
.button_naked__icon_medium-primary a.fl-button .fl-button-icon:before,
.gwd_block_link__container .button_naked__icon_medium-primary .fl-button-icon,
.gwd_block_link__container .button_naked__icon_medium-primary .fl-button-icon:before{
    color: #087A9E;
}

.button_naked__icon_bright-primary a.fl-button .fl-button-icon,
.button_naked__icon_bright-primary a.fl-button .fl-button-icon:before,
.gwd_block_link__container .button_naked__icon_bright-primary .fl-button-icon,
.gwd_block_link__container .button_naked__icon_bright-primary .fl-button-icon:before{
    color: #00A5D4;
}

.button_naked__icon_dark-primary a.fl-button .fl-button-icon,
.button_naked__icon_dark-primary a.fl-button .fl-button-icon:before,
.gwd_block_link__container .button_naked__icon_dark-primary .fl-button-icon,
.gwd_block_link__container .button_naked__icon_dark-primary .fl-button-icon:before{
    color: #004563;
}

.button_naked__icon a.fl-button:hover .fl-button-icon,
.button_naked__icon a.fl-button:hover .fl-button-icon:before,
.gwd_block_link__container a:hover .button_naked__icon .fl-button-icon,
.gwd_block_link__container a:hover .button_naked__icon .fl-button-icon:before{
    color: #FFFFFF;
}

/*
===
TESTIMONIALS
===
*/

.gwd_testimonial_grid__block .fl-col-content{
    position: relative;
}

.gwd_testimonial_grid__block .fl-col-content:before{
    content: '';
    display: block;
    position: absolute;
    top: 12px;
    left: 12px;
    width: 50px;
    height: 35px;
    background-position: top left;
    background-size: contain;
    background-repeat: no-repeat;
}

.gwd_testimonial_grid__block_primary .fl-col-content:before{
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAABWCAMAAAAdWYM0AAAAM1BMVEX///9jreBjreBjreBjreBjreBjreBjreBjreBjreBjreBjreBjreBjreBjreBjreBjreDjXEMcAAAAEXRSTlMAJRkxVm+UrMRiDHu4PaBKh9DV2AoAAAF4SURBVHgB7dRVmvYgDIZhvMHZ/2Z/lzH6vWnGJxzzXHexGnxYZ0TDY70PMR1E+aJSfKipAX3pcdCfcQVzs4K9zf8mXsJsRHsXDiK6jrkI934RkQCbCe7nQYRjot4fRBJs4r1LRBLMD7wPjURYJLgviUiC2YH3tpEI64x+NhJhk/B+EomwyOgnybDA6D3JsMnobZNhnvC+DBJhpTH6SDIsMXpPMixw+iHDSmP0k2RY5PTHjWkt5ey921nuFnOkHLx3wMJGsOZ81NM+hX9feWthdS9BJ1Yf7Ec/WdWGQq/icvguZIA6u8rh8S5s507Isru8PbEtnW9hu2gZdykabCT4W/d3cYBW2ViL8yI9iPlN74yBjywZcGTOIWTZwszCF7abfEDQ/pUtzuQIY/hV3E7uqOXgXdxjBcU85xQs/5EB2OJMTjAWOH9wz5kMv5zwmph/t1jNTwy/x7B+g+HLzYz+BTDFFFNMMcUUU0wxxRRTTDHFFFNMMcW+A4GAvZNX/WSrAAAAAElFTkSuQmCC');
}

.gwd_testimonial_grid__block_reverse .fl-col-content:before{
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGsAAABWCAMAAAD/hZhNAAAAM1BMVEX////u8vXu8vXu8vXu8vXu8vXu8vXu8vXu8vXu8vXu8vXu8vXu8vXu8vXu8vXu8vXu8vUit6RzAAAAEHRSTlMAgMAQ8NBAoCBQcLDgMGCQsQ8gNQAAAXNJREFUeF7t1UluxDAMRFHNs928/2mDbIIgUadKJpAVuebHg9yW29ETi1NNK9yWn0FEHivdz0z015hLPuehVXxIVN/r194TK95z02Po3LqncH30S0SeW+2VyL7VJKKwWhWyj172Q0t0fydRWZ7uWxDRWFem+55EZQ2h+5eIxooV9PSqQCqDnl8VJSWYwtZ5XwUNoPjei86afN9FZw2+j0lnXcL3U3RW5vsiOssf9EtnxcT3N1Ly9Hcpz4+Vq++l4GOl2iO4xQn034L+lzQABI61bvoaeiCBx5LGj6C9ldYFFPBYcqOvfAaHQh/S+bvPOsqld/3vIL6h0gUM8HlakX/cAxjocpVN8NpTwZET9n092C2AQD9X2wV7arFUQ8fCu4O1yr7vB7vNqV6NdPDnnZ3Omge71elew3FgDaVV1Lt8Hw+s5nTXyx1Yjp5tnv/RCieW3w1vrX0fhB5gwTHLLLPMMssss8wyyyyzzDLLLLPMMoufD0X+aImut4RpAAAAAElFTkSuQmCC');
}

body:not(.fl-builder-edit) .gwd_testimonial_grid__attribution.gwd_anchor_bottom__active > .fl-module-content{
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

/*
===
Strong Column List Plugin [+JS]
===
*/

.gwd_strong_column_list ul{
    list-style-type: none;
    padding-left: 0;
}

@media (max-width: 767px){
    .gwd_strong_column_list ul.gwd_strong_column_list__active{
        padding-left: 0 !important;
    }
}

.gwd_strong_column_list__active li strong:first-child{
    display: block;
}

@media (max-width: 767px){
    .gwd_strong_column_list__active li strong:first-child{
        margin-left: 0 !important;
    }
}

@media (min-width: 768px){
    .gwd_strong_column_list__active li strong:first-child{
        position: absolute;
        display: inline-block;
    }
}

/*
===
Vertical Timeline [+JS]
===
*/

.gwd_vertical_timeline .pp-timeline .pp-timeline-content-wrapper .pp-timeline-item{
    margin-bottom: 0px;
}

.gwd_vertical_timeline .pp-timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-content{
    width: 100%;
}

.gwd_vertical_timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-content .pp-timeline-title-wrapper{
    width: 95px;
    display: block;
    position: absolute;
}

.gwd_vertical_timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-content .pp-timeline-title-wrapper .pp-timeline-title{
    text-transform: none !important;
    text-align: right;
    letter-spacing: 0;
}

.gwd_vertical_timeline .pp-timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-icon-wrapper{
    left: 115px;
}

.gwd_vertical_timeline .pp-timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-icon-wrapper .pp-separator-arrow,
.gwd_vertical_timeline .pp-timeline .pp-timeline-content-wrapper:after{
    display: none;
}

.gwd_vertical_timeline .pp-timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-icon{
    margin: 0;
    padding: 12px 10px;
}

.gwd_vertical_timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-content .pp-timeline-text-wrapper{
    width: 100%;
    display: block;
    padding-left: 135px;
    padding-top: 12px;
    font-size: 12px;
}

.gwd_vertical_timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-content .pp-timeline-text-wrapper .pp-timeline-text ul{
    list-style-type: none;
    padding: 0;
}

.gwd_vertical_timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-content .pp-timeline-text-wrapper .pp-timeline-text ul li{
    margin-bottom: 5px;  
}

@media (max-width: 767px){
    .gwd_vertical_timeline .pp-timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-icon-wrapper{
        display: none;
    }
    
    .gwd_vertical_timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-content .pp-timeline-title-wrapper{
        width: 100%;
        position: relative;
    }
    
    .gwd_vertical_timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-content .pp-timeline-title-wrapper .pp-timeline-title{
        text-align: left;
    }
    
    .gwd_vertical_timeline .pp-timeline-content-wrapper .pp-timeline-item .pp-timeline-content .pp-timeline-text-wrapper{
        padding-left: 0;
        padding-top: 0;
    }
}

/*
===
Team Grid
===
*/
.gwd_team_grid__col h5{
    margin-bottom: 0;
}

/*
===
TEAM GRAPH [+JS]
===
*/

/*.gwd_team_graph__row{}*/

.gwd_team_graph__bio{
	background-color: #fff;
}

.gwd_team_graph__photo{
	position: relative;
	z-index: 2;
}

.gwd_team_graph__svg_container .fl-module-content{
	position: relative;
}

.gwd_team_graph__svg_container svg{
	max-width: 100%;
}

_:-ms-lang(x), .gwd_team_graph__svg_container svg{
	min-height: 400px !important;    
}

_:-ms-lang(x), .gwd_team_graph__svg_container .mask_wrapper{
	display: none !important;
}

.gwd_team_graph__svg_container .mask_wrapper__right{
	/*-webkit-clip-path: inset(0 0 0 50%);
	clip-path: inset(0 0 0 50%);*/
}

.gwd_team_graph__svg_container .mask_wrapper__left{
	/*-webkit-clip-path: inset(0 50% 0 0);
	clip-path: inset(0 50% 0 0);*/
}

.gwd_team_graph__svg_container .mask_wrapper .inner_mask{
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 9999px;
	position: absolute;
	background-color: #0f0;
	top: 0;
	left: 0;
}

.gwd_team_graph__svg_container .mask_wrapper__right .inner_mask{
	clip-path: inset(0 0 0 50%);
}

.gwd_team_graph__svg_container .mask_wrapper__left .inner_mask{
	clip-path: inset(0 50% 0 0);
}

.gwd_team_graph__svg_container .mask_wrapper{
	display: block;
	width: 400px;
	height: 400px;
	position: absolute;
	top: 0;
	left: 0;
}

.gwd_team_graph__svg_container .fill__primary-bright-alt{fill:#00BDE2;}
.gwd_team_graph__svg_container .fill__primary-dark-alt{fill:#003D58;}
.gwd_team_graph__svg_container .fill__primary-bright{fill:#00A5D4;}
.gwd_team_graph__svg_container .fill__primary-medium-alt{fill:#0085AF;}
.gwd_team_graph__svg_container .fill__primary-medium-dark{fill:#006288;}
.gwd_team_graph__svg_container .fill__primary-dark-alt2{fill:#065c77;}
.gwd_team_graph__svg_container .fill__primary-dark{fill:#004563;}
.gwd_team_graph__svg_container .fill__white{fill:#FFFFFF;}


.gwd_team_graph__svg_container .mask_wrapper .circle{
	fill: #EEF2F5;
}

.gwd_team_graph__svg_container .mask_wrapper__left .circle{
	clip-path: inset(0 0 0 50%);
}

.gwd_team_graph__svg_container .mask_wrapper__right .circle{
	clip-path: inset(0 50% 0 0);
}

/* Using the data attributes for the animation selectors. */
/* Base settings for all animated elements */
.gwd_team_graph__svg_container.fl-animated .inner_mask circle {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
  animation-timing-function:linear;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.gwd_team_graph__svg_container.fl-animated .mask_wrapper__left .inner_mask circle{
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  
  -webkit-animation-name: wk-left-spin;
  animation-name: left-spin;
}

.gwd_team_graph__svg_container.fl-animated .mask_wrapper__right .inner_mask circle{
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
  -webkit-animation-name: wk-right-spin;
  animation-name: right-spin;
}
/* Rotate the right side of the progress bar from 0 to 180 degrees */
@-webkit-keyframes wk-right-spin{
	0% {
		-webkit-transform: rotate(180deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes right-spin {
  0% {
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
  }
  100% {
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
/* Rotate the left side of the progress bar from 0 to 360 degrees */
@-webkit-keyframes wk-left-spin{
	0% {
		-webkit-transform: rotate(180deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes left-spin {
  0% {
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
  }
  100% {
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}

.gwd_team_graph__svg_container.fl-animated .Pins__Pin{
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-animation-iteration-count: 1;  /* Only run once */
	animation-iteration-count: 1;
	-webkit-animation-fill-mode: forwards; /* Hold the last keyframe */
	animation-fill-mode: forwards;
	-webkit-animation-timing-function:ease; /* Linear animation */
	animation-timing-function:ease;
	-webkit-animation-duration: .8s; /* Duration of Animation */
	animation-duration: .8s;
	-webkit-animation-name: scale-pin;
	animation-name: scale-pin;
}

.gwd_team_graph__svg_container.fl-animated .Pins__Pin#Pin_1{
	-webkit-animation-delay: .9s;
	animation-delay: .9s;
}
.gwd_team_graph__svg_container.fl-animated .Pins__Pin#Pin_2{
	-webkit-animation-delay: 1.3s;
	animation-delay: 1.3s;
}
.gwd_team_graph__svg_container.fl-animated .Pins__Pin#Pin_3{
	-webkit-animation-delay: 1.7s;
	animation-delay: 1.7s;
}
.gwd_team_graph__svg_container.fl-animated .Pins__Pin#Pin_4{
	-webkit-animation-delay: 2.1s;
	animation-delay: 2.1s;
}
.gwd_team_graph__svg_container.fl-animated .Pins__Pin#Pin_5{
	-webkit-animation-delay: 2.5s;
	animation-delay: 2.5s;
}
.gwd_team_graph__svg_container.fl-animated .Pins__Pin#Pin_6{
	-webkit-animation-delay: 2.9s;
	animation-delay: 2.9s;
}
.gwd_team_graph__svg_container.fl-animated .Pins__Pin#Pin_7{
	-webkit-animation-delay: 4.3s;
	animation-delay: 4.3s;
}
.gwd_team_graph__svg_container.fl-animated .Pins__Pin#Pin_8{
	-webkit-animation-delay: 4.7s;
	animation-delay: 4.7s;
}

@-webkit-keyframes scale-pin{
	from {
		-webkit-transform: scale(0);
	}
	to{
		-webkit-transform: scale(1);
	}
}
@keyframes scale-pin{
	from {
		-ms-transform: scale(0);
		transform: scale(0);
	}
	to{
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

.pin__trans_origin__bottom_right{
	-webkit-transform-origin: bottom right;
	-ms-transform-origin: bottom right;
	transform-origin: bottom right;
}
.pin__trans_origin__bottom_left{
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
	transform-origin: bottom left;
}
.pin__trans_origin__top_right{
	-webkit-transform-origin: top right;
	-ms-transform-origin: top right;
	transform-origin: top right;
}
.pin__trans_origin__top_left{
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
}

.gwd_team_graph__thumbnail__photo{
	
}
.gwd_team_graph__thumbnail__credentials .fl-rich-text *{
	margin: 0;    
}
.gwd_team_graph__thumbnail__bio{
	
}

.gwd_team_graph__thumbnail_row img.fl-photo-img{
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

.gwd_team_graph__thumbnail_row .fl-photo-content:before{
	z-index: 2;
}

.gwd_team_graph__row__info_col .gwd_team_graph__photo .fl-photo-img{
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	position: absolute;
	display: block !important;
}


/*=== BUILDER VISUAL EDITS ===*/

body.fl-builder-edit .gwd_team_graph__thumbnail__bio{
	position: relative;
	max-height: 100px;
	overflow: hidden;
}

body.fl-builder-edit .gwd_team_graph__thumbnail__bio:before{
	content: '[Full Bio]';
}

body.fl-builder-edit .gwd_team_graph__thumbnail__graph{
	position:relative;
}
body.fl-builder-edit .gwd_team_graph__thumbnail__bio:before{
	display: block;
	background-image: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,1));
	color: #004563;
	position: absolute;
	font-size: 16px;
	letter-spacing: 2px;
	font-weight: 600;
	text-align: center;
	padding: 70px 0 0 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
}
/* END BUILDER VISUAL EDITS */

/*=== FRONT END VISUAL EDITS ===*/
body:not(.fl-builder-edit) .gwd_team_graph__thumbnail{
	cursor: pointer;
}

body:not(.fl-builder-edit) .gwd_team_graph__thumbnail__bio,
body:not(.fl-builder-edit) .gwd_team_graph__thumbnail__graph_link{
	display: none;
}

.gwd_team_graph__thumbnail .gwd_team_graph__thumbnail__photo .fl-photo-content:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: background-color .75s ease, height .75s ease;
}

.gwd_team_graph__thumbnail:not(.gwd_team_graph__active) .gwd_team_graph__thumbnail__photo .fl-photo-content:before{
	background-color: rgba(0,69,99,0.5);
}

.gwd_team_graph__thumbnail:not(.gwd_team_graph__active):hover .gwd_team_graph__thumbnail__photo .fl-photo-content:before{
	background-color: #00A5D4;
	height: 10px;
}

/* END FRONT END VISUAL EDITS */

/*
===
TEAM GRAPH  
===
*/

/*--- Graph ---*/
@media (max-width: 767px){
	.gwd_team_graph__svg_container__title{
		position: absolute;
		width: 100%;
	}
	
	.gwd_team_graph__thumbnail.fl-col{
		clear: none !important;
		float: left !important;
		width: 100% !important;
	}
	
	.gwd_team_graph__thumbnail_row .fl-col-group{
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	
	.gwd_team_graph__thumbnail_row .fl-col-group:before{
		display: none;
	}
}

/*--- Thumbnail Photo ---*/
.gwd_team_graph__thumbnail__photo .fl-photo-content{
	width: 100%;
	height: 0;
	padding-bottom: 120%;
	overflow:hidden;
}

/*--- Thumbnail Credentials ---*/
.gwd_team_graph__thumbnail__credentials .fl-rich-text{
	padding-top: 5px;
}

.gwd_team_graph__thumbnail__credentials .fl-rich-text h4{
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 2px;
}

.gwd_team_graph__thumbnail__credentials .fl-rich-text h5{
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
	font-size: 10px;
}

/*--- Display Bio ---*/
.gwd_team_graph__bio .fl-rich-text h4{
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 24px;
	margin-bottom: 3px;
}
.gwd_team_graph__bio .fl-rich-text h5{
	text-transform: uppercase;
	font-weight: 500;
	margin-top: 0;
}
.gwd_team_graph__bio .fl-rich-text p{
	font-size: 13px;
}

/*--- Display Photo ---*/
.gwd_team_graph__photo .fl-photo-content{
	margin-left: 0px;
	margin-right: 0px;
	width: 100%;
	height: 0;
	padding-bottom: 110%;
	overflow: hidden;
}
@media (min-width: 768px){
	.gwd_team_graph__photo .fl-photo-content{
		margin-left: 60px;
		margin-right: 60px;
		width: calc(100% - 120px);
		padding-bottom: 80%;
	}
}
.gwd_team_graph__photo .fl-photo-content .fl-photo-img{
	width: 100%;
	height: auto;
}

/*--- Divider Row (after Thumbnails) ---*/
.gwd_team_graph__thumbnail_row__has_decoration .fl-row-content:after{
		content:'';
		position: absolute;
		display: block;
		left: 10%;
		bottom: 0;
		width: 90vw;
		height: 15px;
		background-color: #004563;
	}

@media (min-width: 768px){
	.gwd_team_graph__thumbnail_row__has_decoration .fl-row-content:after{
		left: 50%;
		width: 50vw;
		height: 35px;
	}
}


/*
===
RECENT POSTS
===
*/

.gwd_recent_posts .fl-post-feed .fl-post-feed-post{
	border-bottom: none;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (min-width: 768px){
	.gwd_recent_posts .fl-post-feed .fl-post-feed-post{
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
}

.gwd_recent_posts .fl-post-feed .fl-post-feed-post:nth-child(even){
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

/*--- Post Excerpt ---*/
@media (min-width: 768px){
	.gwd_recent_posts .fl-post-feed .fl-post-feed-post .fl-post-feed-text{
		margin-left: 4%;
		margin-right: 0;
	}
	
	.gwd_recent_posts .fl-post-feed .fl-post-feed-post:nth-child(even) .fl-post-feed-text{
		text-align: right;
		margin-left: 0;
		margin-right: 4%;
	}
}

/*--- More Link ---*/

.gwd_recent_posts .fl-post-feed .fl-post-feed-content .fl-post-feed-more{
	font-size: 40px;
	line-height: 1;
	margin-top: 10px;
	transition: margin 0.2s ease;
}

.gwd_recent_posts .fl-post-feed .fl-post-feed-content .fl-post-feed-more:hover{
	margin-left: 5px;
}

@media (min-width: 768px){
	.gwd_recent_posts .fl-post-feed .fl-post-feed-post:nth-child(even) .fl-post-feed-content .fl-post-feed-more{
		-webkit-transform: scaleX(-1);
		-ms-transform: scaleX(-1);
		transform: scaleX(-1);
	}
	
	.gwd_recent_posts .fl-post-feed .fl-post-feed-post:nth-child(even) .fl-post-feed-content .fl-post-feed-more:hover{
		margin-left: 0;
		margin-right: 5px;
	}
}


/*--- Post Image ---*/
.gwd_recent_posts .fl-post-feed .fl-post-feed-post .fl-post-feed-image{
	min-width: 100%;
}

@media (min-width: 768px){
	.gwd_recent_posts .fl-post-feed .fl-post-feed-post .fl-post-feed-image{
		min-width: 40%;
	}
}

.gwd_recent_posts .fl-post-feed .fl-post-feed-post .fl-post-feed-image a{
	display: block;
}

.gwd_recent_posts .fl-post-feed .fl-post-feed-post .fl-post-feed-image a:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 0%;
	height: 100%;
	background-color: rgba(0,165,212,1);
	transition: width .75s ease, background-color .75s ease;
}

@media (min-width: 768px){
	.gwd_recent_posts .fl-post-feed .fl-post-feed-post:nth-child(even) .fl-post-feed-image a:before{
		right: auto;
		left: 0;
	}
}

.gwd_recent_posts .fl-post-feed .fl-post-feed-post .fl-post-feed-image a:hover:before{
	width: 100%;
	background-color: rgba(0,165,212,.25);
}

/*--- Post Title ---*/
.gwd_recent_posts .fl-post-feed-title a:hover{
	color: #00A5D4;
}

/*--- Accent Block --- [+JS] */
.gwd_recent_posts:before{
	content: '';
	display: block;
	position: absolute;
	width: 50vw;
	height: 360px;
	bottom: 90px;
	right: 250%;
	background-color: #004563;
	transition: right 0.5s ease;
}

.gwd_recent_posts.gwd_recent_posts__accent:before{
	right: 90%;
}

@media (min-width:768px){
	.gwd_recent_posts.gwd_recent_posts__accent:before{
		right: 70%;   
	}
}

/*
===
LOCATION ROW 
===
*/

body:not(.fl-builder-edit) .gwd_location_row .gwd_vertical_heading{
	top: 0;
}

.gwd_location_row__map .fl-html{
	font-size: 0;
}

.gwd_location_row__info .fl-rich-text p{
	font-weight: bold;
	color: #004563;
	text-transform: uppercase;
}

.gwd_location_row__info .fl-rich-text a{
	color: #004563;
}

.gwd_location_row__info .fl-rich-text a:hover{
	color: #00A5D4;
}


/*
===
SUBSCRIBE FORM 
===
*/
.gwd_subscribe_form .fl-form-field input{
    text-align: center;
    border-width: 1px;
    border-radius: 0 !important;
    border-color: #004563;
}

.gwd_subscribe_form .fl-form-field input:focus{
    border-color: #00A5D4;
}

.gwd_subscribe_form .fl-form-button .fl-button-wrap{
    text-align: center !important;
}

.gwd_subscribe_form .fl-form-button .fl-button{
    width: auto;
    display: inline-block;
}

.gwd_subscribe_form .fl-form-success-message{
    text-align: center;
}

/*
===
FOOTER
===
*/
.footer_form__description h4,
.footer_form__description h4 a,
.footer_form__description h4 a:hover{
    color: #00A5D4;
}
.footer_form__description h4 a:hover,
.footer_form__description .fl-rich-text p a:hover{
    text-decoration: underline;
}

.footer_form__description .fl-rich-text p{
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 16px;
}

.footer_form__description .fl-rich-text p a,
.footer_form__description .fl-rich-text p a:hover{
    color: #004563;
}


/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */


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