/* 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;
}

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

.fl-visible-large,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: none;
}

/* 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-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-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.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-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%;
}

/* IE 11 - Row full height - vertical alignment center/bottom fix */
.fl-builder-ie-11 .fl-row.fl-row-full-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile),
.fl-builder-ie-11 .fl-row.fl-row-custom-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile) {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Stupid IE Full Height Row Fixes */
.fl-builder-ie-11 .fl-row-full-height .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content-wrap {
	height: auto;
}

.fl-builder-ie-11 .fl-row-full-height .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content {
	flex: 0 0 auto;
	flex-basis: 100%;
	margin: 0;
}

.fl-builder-ie-11 .fl-row-full-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content {
    margin: 0 auto;
}

.fl-builder-ie-11 .fl-row-full-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height),
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height) {
	display: flex;
	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 center */
.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-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;
}

/* IE 11 - height bottom > row align bottom - center fix */
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}

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

.fl-col-group-equal-height,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.fl-col-group-equal-height{
    -webkit-flex-wrap: wrap;
    	-ms-flex-wrap: wrap;
    		flex-wrap: wrap;
			    width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
    -webkit-flex-wrap: nowrap;
    	-ms-flex-wrap: nowrap;
    		flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-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-col-group-equal-height .fl-col-content{
	    -webkit-box-orient: vertical;
	 -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            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;
	-webkit-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;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: 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;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-pack: 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%;
}

/* IE11 fix for images with height:auto in equal height columns. */
.fl-builder-ie-11 .fl-col-group-equal-height,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-col,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-col-content,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-module,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	min-height: 1px;
}

/* 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;
	}
}

/* Default button colors for non Beaver Builder themes.
------------------------------------------------------ */

.fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content a.fl-button *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}.fl-row-fixed-width { max-width: 1440px; }.fl-row-content-wrap{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.fl-row-content-wrap{padding-top: 20px;padding-right: 20px;padding-bottom: 20px;padding-left: 20px;}.fl-module-content{margin-top: 20px;margin-right: 20px;margin-bottom: 20px;margin-left: 20px;}@media (max-width: 1440px) { /* Responsive Utilities
------------------------------------------------------ */
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl {
	display: none !important;
}
.fl-visible-xl,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: none;
}
.fl-visible-desktop,
.fl-visible-desktop-medium,
.fl-visible-large,
.fl-visible-large-medium,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col {
	display: block;
}
.fl-col-group-equal-height .fl-visible-desktop.fl-col,
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col {
	display: flex;
}
 }@media (max-width: 991px) { /* Responsive Utilities
------------------------------------------------------ */
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large {
	display: none !important;
}
.fl-visible-xl,
.fl-visible-desktop,
.fl-visible-large,
.fl-visible-mobile,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-large.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: none;
}
.fl-visible-desktop-medium,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col {
	display: block;
}
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium-mobile.fl-col {
	display: flex;
}
 }@media (max-width: 767px) { /* Responsive Utilities
------------------------------------------------------ */
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop-medium,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop-medium,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large-medium,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large-medium {
	display: none !important;
}

.fl-visible-xl,
.fl-visible-desktop,
.fl-visible-desktop-medium,
.fl-visible-large,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group-equal-height .fl-visible-xl.fl-col,
.fl-col-group-equal-height .fl-visible-desktop.fl-col,
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium.fl-col {
	display: none;
}

.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: block;
}

/* 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: -ms-flexbox;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap-reverse;
	-webkit-flex-wrap: wrap-reverse;
	-ms-box-orient: horizontal;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col {
	-webkit-box-flex: 0 0 100%;
	-moz-box-flex: 0 0 100%;
	-webkit-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	min-width: 0;
}

/* 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;
}
 }.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





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

.fl-builder-edit .fl-node-mqt6wuchk3p4.fl-row-full-height > .fl-row-content-wrap {
	min-height: calc( 100vh - 48px );
}

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-mqt6wuchk3p4.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-mqt6wuchk3p4.fl-row-full-height > .fl-row-content-wrap {
		min-height: 768px;
	}
}
/* Full height iPhone 5. You can also target devices with aspect ratio. */
@media screen and (device-aspect-ratio: 40/71) {
	.fl-node-mqt6wuchk3p4.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-mqt6wuchk3p4.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 5px;
}
 .fl-node-mqt6wuchk3p4 > .fl-row-content-wrap {
	padding-top:10px;
	padding-right:100px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 991px ) {
 .fl-node-mqt6wuchk3p4.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-mqt6wuchk3p4.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






.fl-node-hovgpd6zj0f1 > .fl-row-content-wrap {
	background-image: url(https://d4804za1f1gw.cloudfront.net/wp-content/uploads/sites/140/2025/10/readersadvisory.png);
	background-repeat: no-repeat;
	background-position: 0px 0%;
	background-attachment: scroll;
	background-size: contain;
	border-bottom-right-radius: 0px;
}
.fl-node-hovgpd6zj0f1.fl-row-fixed-width, .fl-node-hovgpd6zj0f1 .fl-row-fixed-width {
	max-width: 1556.8px;
}
 .fl-node-hovgpd6zj0f1 > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:100px;
	margin-bottom:0px;
	margin-left:100px;
}
 .fl-node-hovgpd6zj0f1 > .fl-row-content-wrap {
	padding-top:66px;
	padding-right:70px;
	padding-bottom:0px;
	padding-left:50px;
}
@media ( max-width: 991px ) {
 .fl-node-hovgpd6zj0f1.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-hovgpd6zj0f1.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






.fl-node-650ddf2243a72 > .fl-row-content-wrap {
	background-repeat: no-repeat;
	background-position: left center;
	background-attachment: scroll;
	background-size: auto;
	border-bottom-right-radius: 0px;
}
 .fl-node-650ddf2243a72 > .fl-row-content-wrap {
	margin-top:0px;
}
 .fl-node-650ddf2243a72 > .fl-row-content-wrap {
	padding-top:30px;
	padding-right:20px;
	padding-bottom:40px;
	padding-left:20px;
}
@media ( max-width: 991px ) {
 .fl-node-650ddf2243a72.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-650ddf2243a72.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






.fl-node-650de19f8f5a4 > .fl-row-content-wrap {
	background-repeat: no-repeat;
	background-position: 230% 840%;
	background-attachment: scroll;
	background-size: contain;
}
 .fl-node-650de19f8f5a4 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 991px ) {
 .fl-node-650de19f8f5a4.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-650de19f8f5a4.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






.fl-node-64e2c249ba99d > .fl-row-content-wrap {
	border-top-left-radius: 45px;
	border-bottom-right-radius: 45px;
}
.fl-node-64e2c249ba99d.fl-row-fixed-width, .fl-node-64e2c249ba99d .fl-row-fixed-width {
	max-width: 1440px;
}
 .fl-node-64e2c249ba99d > .fl-row-content-wrap {
	margin-top:10px;
	margin-bottom:0px;
}
 .fl-node-64e2c249ba99d > .fl-row-content-wrap {
	padding-top:50px;
	padding-right:30px;
	padding-left:30px;
}
@media ( max-width: 991px ) {
 .fl-node-64e2c249ba99d.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-64e2c249ba99d.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






.fl-node-650b791ba2efe > .fl-row-content-wrap {
	border-top-left-radius: 45px;
	border-bottom-right-radius: 45px;
}
.fl-node-650b791ba2efe.fl-row-fixed-width, .fl-node-650b791ba2efe .fl-row-fixed-width {
	max-width: 1440px;
}
 .fl-node-650b791ba2efe > .fl-row-content-wrap {
	margin-top:10px;
	margin-bottom:0px;
}
 .fl-node-650b791ba2efe > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:30px;
	padding-left:30px;
}
@media ( max-width: 991px ) {
 .fl-node-650b791ba2efe.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-650b791ba2efe.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






.fl-node-650b79e925931 > .fl-row-content-wrap {
	border-top-left-radius: 45px;
	border-bottom-right-radius: 45px;
}
.fl-node-650b79e925931.fl-row-fixed-width, .fl-node-650b79e925931 .fl-row-fixed-width {
	max-width: 1440px;
}
 .fl-node-650b79e925931 > .fl-row-content-wrap {
	margin-top:10px;
	margin-bottom:0px;
}
 .fl-node-650b79e925931 > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:30px;
	padding-left:30px;
}
@media ( max-width: 991px ) {
 .fl-node-650b79e925931.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-650b79e925931.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






.fl-node-64e2c22500398 > .fl-row-content-wrap {
	background-image: url(https://d4804za1f1gw.cloudfront.net/wp-content/uploads/sites/140/2023/08/calendar-for-background.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
 .fl-node-64e2c22500398 > .fl-row-content-wrap {
	margin-top:20px;
	margin-bottom:0px;
}
 .fl-node-64e2c22500398 > .fl-row-content-wrap {
	padding-top:50px;
	padding-right:30px;
	padding-bottom:50px;
	padding-left:30px;
}
@media ( max-width: 991px ) {
 .fl-node-64e2c22500398.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-64e2c22500398.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






.fl-node-650b7a36886c0 > .fl-row-content-wrap {
	background-image: url(https://d4804za1f1gw.cloudfront.net/wp-content/uploads/sites/140/2023/08/calendar-for-background.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
 .fl-node-650b7a36886c0 > .fl-row-content-wrap {
	margin-top:20px;
	margin-bottom:0px;
}
 .fl-node-650b7a36886c0 > .fl-row-content-wrap {
	padding-top:50px;
	padding-right:30px;
	padding-bottom:50px;
	padding-left:30px;
}
@media ( max-width: 991px ) {
 .fl-node-650b7a36886c0.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-650b7a36886c0.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






.fl-node-650b7a693b4d6 > .fl-row-content-wrap {
	background-image: url(https://d4804za1f1gw.cloudfront.net/wp-content/uploads/sites/140/2023/08/calendar-for-background.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
 .fl-node-650b7a693b4d6 > .fl-row-content-wrap {
	margin-top:20px;
	margin-bottom:0px;
}
 .fl-node-650b7a693b4d6 > .fl-row-content-wrap {
	padding-top:50px;
	padding-right:30px;
	padding-bottom:50px;
	padding-left:30px;
}
@media ( max-width: 991px ) {
 .fl-node-650b7a693b4d6.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-650b7a693b4d6.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






.fl-node-649c732e8d08d > .fl-row-content-wrap {
	background-image: url(https://d4804za1f1gw.cloudfront.net/wp-content/uploads/sites/140/2023/09/circle-background-for-homepage-2.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
 .fl-node-649c732e8d08d > .fl-row-content-wrap {
	margin-top:0px;
}
 .fl-node-649c732e8d08d > .fl-row-content-wrap {
	padding-top:30px;
	padding-right:20px;
	padding-bottom:50px;
	padding-left:20px;
}
@media ( max-width: 991px ) {
 .fl-node-649c732e8d08d.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-649c732e8d08d.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






.fl-node-649a21cfecbf7 > .fl-row-content-wrap {
	border-top-left-radius: 0px;
}
 .fl-node-649a21cfecbf7 > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
@media ( max-width: 991px ) {
 .fl-node-649a21cfecbf7.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-649a21cfecbf7.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






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

.fl-builder-edit .fl-node-64f765c70e266.fl-row-full-height > .fl-row-content-wrap {
	min-height: calc( 100vh - 48px );
}

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-64f765c70e266.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-64f765c70e266.fl-row-full-height > .fl-row-content-wrap {
		min-height: 768px;
	}
}
/* Full height iPhone 5. You can also target devices with aspect ratio. */
@media screen and (device-aspect-ratio: 40/71) {
	.fl-node-64f765c70e266.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-64f765c70e266 > .fl-row-content-wrap {
	background-image: url(https://d4804za1f1gw.cloudfront.net/wp-content/uploads/sites/140/2023/05/TRL-Footer-Circles.png);
	background-repeat: repeat-x;
	background-position: center bottom;
	background-attachment: scroll;
	background-size: contain;
}
.fl-node-64f765c70e266.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 70px;
}
 .fl-node-64f765c70e266 > .fl-row-content-wrap {
	margin-top:50px;
	margin-right:0px;
	margin-bottom:1px;
}
 .fl-node-64f765c70e266 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
@media ( max-width: 991px ) {
 .fl-node-64f765c70e266.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-64f765c70e266.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}






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

.fl-builder-edit .fl-node-64f765d2bf306.fl-row-full-height > .fl-row-content-wrap {
	min-height: calc( 100vh - 48px );
}

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-64f765d2bf306.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-64f765d2bf306.fl-row-full-height > .fl-row-content-wrap {
		min-height: 768px;
	}
}
/* Full height iPhone 5. You can also target devices with aspect ratio. */
@media screen and (device-aspect-ratio: 40/71) {
	.fl-node-64f765d2bf306.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-64f765d2bf306 > .fl-row-content-wrap {
	background-image: url(https://d4804za1f1gw.cloudfront.net/wp-content/uploads/sites/140/2023/06/TRL-Footer-Circles-for-Cell-Phone.png);
	background-repeat: repeat-x;
	background-position: center bottom;
	background-attachment: scroll;
	background-size: contain;
}
.fl-node-64f765d2bf306.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 100px;
}
.fl-node-64f765d2bf306.fl-row-fixed-width, .fl-node-64f765d2bf306 .fl-row-fixed-width {
	max-width: 1154px;
}
 .fl-node-64f765d2bf306 > .fl-row-content-wrap {
	margin-top:50px;
	margin-right:0px;
}
 .fl-node-64f765d2bf306 > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
@media ( max-width: 991px ) {
 .fl-node-64f765d2bf306.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-64f765d2bf306.fl-row > .fl-row-content-wrap {
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}






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

.fl-builder-edit .fl-node-64f765ccbeb1f.fl-row-full-height > .fl-row-content-wrap {
	min-height: calc( 100vh - 48px );
}

/* Full height iPad with portrait orientation. */
@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait){
	.fl-node-64f765ccbeb1f.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (device-width: 1024px) and (device-height: 768px) and (orientation:landscape){
	.fl-node-64f765ccbeb1f.fl-row-full-height > .fl-row-content-wrap {
		min-height: 768px;
	}
}
/* Full height iPhone 5. You can also target devices with aspect ratio. */
@media screen and (device-aspect-ratio: 40/71) {
	.fl-node-64f765ccbeb1f.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-64f765ccbeb1f > .fl-row-content-wrap {
	background-image: url(https://d4804za1f1gw.cloudfront.net/wp-content/uploads/sites/140/2023/06/TRL-Footer-Circles-for-Cell-Phone.png);
	background-repeat: repeat-x;
	background-position: center bottom;
	background-attachment: scroll;
	background-size: contain;
}
.fl-node-64f765ccbeb1f.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 100px;
}
.fl-node-64f765ccbeb1f .fl-row-content {
	max-width: 991px;
}
 .fl-node-64f765ccbeb1f > .fl-row-content-wrap {
	margin-top:50px;
	margin-right:0px;
}
 .fl-node-64f765ccbeb1f > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
@media ( max-width: 991px ) {
 .fl-node-64f765ccbeb1f.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-64f765ccbeb1f.fl-row > .fl-row-content-wrap {
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}






.fl-node-650b5a938aafc > .fl-row-content-wrap {
	background-color: #2a2a2a;
}
 .fl-node-650b5a938aafc > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
@media ( max-width: 991px ) {
 .fl-node-650b5a938aafc.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}
@media ( max-width: 767px ) {
 .fl-node-650b5a938aafc.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-bottom:0px;
	padding-left:10px;
}
}




.fl-node-84dh6uwt7ps5 {
	width: 100%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-84dh6uwt7ps5 > .fl-col-content {
		min-height: 5px;
	}
}




.fl-node-tp17il95hsr0 {
	width: 33%;
}
.fl-node-tp17il95hsr0 > .fl-col-content {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-builder-content .fl-node-tp17il95hsr0 > .fl-col-content {
	min-height: 0px;
}
 .fl-node-tp17il95hsr0 > .fl-col-content {
	margin-right:0px;
}
 .fl-node-tp17il95hsr0 > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}




.fl-node-mrpvhf7nyeu6 {
	width: 35%;
}
.fl-node-mrpvhf7nyeu6 > .fl-col-content {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-builder-content .fl-node-mrpvhf7nyeu6 > .fl-col-content {
	min-height: 0px;
}
 .fl-node-mrpvhf7nyeu6 > .fl-col-content {
	margin-right:0px;
}
 .fl-node-mrpvhf7nyeu6 > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}




.fl-node-kmur75t60wnx {
	width: 32%;
}
.fl-node-kmur75t60wnx > .fl-col-content {
	background-image: linear-gradient(113deg, #31876f 53%, #0a0a0a 104547%);
	border-top-left-radius: 63px;
	border-bottom-right-radius: 45px;
}
 .fl-node-kmur75t60wnx > .fl-col-content {
	padding-bottom:10px;
}




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




.fl-node-h5ta9zpokfiu {
	width: 100%;
}
 .fl-node-h5ta9zpokfiu > .fl-col-content {
	margin-bottom:30px;
}
 .fl-node-h5ta9zpokfiu > .fl-col-content {
	padding-bottom:0px;
}




.fl-node-650de19fb6a6d {
	width: 100%;
}




.fl-node-zfdlkx9njy23 {
	width: 100%;
}
.fl-node-zfdlkx9njy23 > .fl-col-content {
	background-image: linear-gradient(113deg, #31876f 53%, #0a0a0a 104547%);
	border-top-left-radius: 63px;
	border-bottom-right-radius: 45px;
}
 .fl-node-zfdlkx9njy23 > .fl-col-content {
	padding-bottom:10px;
}




.fl-node-64e2c249ba98d {
	width: 16.65%;
}
 .fl-node-64e2c249ba98d > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-64e2c249ba984 {
	width: 16.75%;
}
 .fl-node-64e2c249ba984 > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-64e2c249ba988 {
	width: 16.65%;
}
 .fl-node-64e2c249ba988 > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-64e2c249ba989 {
	width: 16.65%;
}
 .fl-node-64e2c249ba989 > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-64e2c249ba98b {
	width: 16.65%;
}
 .fl-node-64e2c249ba98b > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-64e2c249ba98c {
	width: 16.65%;
}
 .fl-node-64e2c249ba98c > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-650b79b1b7063 {
	width: 33.33%;
}




.fl-node-650b79b1b7066 {
	width: 33.33%;
}




.fl-node-650b79b1b7068 {
	width: 33.33%;
}




.fl-node-650b793502d87 {
	width: 33.33%;
}




.fl-node-650b793502d8b {
	width: 33.33%;
}




.fl-node-650b793502d8d {
	width: 33.33%;
}




.fl-node-650b79e925bd7 {
	width: 16.65%;
}
 .fl-node-650b79e925bd7 > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-650b79e925bda {
	width: 16.75%;
}
 .fl-node-650b79e925bda > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-650b79e925bdd {
	width: 16.65%;
}
 .fl-node-650b79e925bdd > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-650b79e925be0 {
	width: 16.65%;
}
 .fl-node-650b79e925be0 > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-650b79e925be3 {
	width: 16.65%;
}
 .fl-node-650b79e925be3 > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-650b79e925be6 {
	width: 16.65%;
}
 .fl-node-650b79e925be6 > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}




.fl-node-64e2c22500390 {
	width: 33.33%;
}
.fl-node-64e2c22500390 > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 45px;
}




.fl-node-64e2c22500391 {
	width: 33.34%;
}
.fl-node-64e2c22500391 > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}




.fl-node-46h7wlb2xsd1 {
	width: 33.33%;
}
.fl-node-46h7wlb2xsd1 > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
}




.fl-node-64e2c22500396 {
	width: 100%;
}
.fl-node-64e2c22500396 > .fl-col-content {
	background-color: #ffffff;
	border-bottom-right-radius: 45px;
}




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




.fl-node-650b7b4a2feaf {
	width: 100%;
}




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




.fl-node-650b7a693b697 {
	width: 50%;
}
.fl-node-650b7a693b697 > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 45px;
}




.fl-node-650b7a693b69b {
	width: 50%;
}
.fl-node-650b7a693b69b > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
}




.fl-node-650b7a693b69e {
	width: 100%;
}
.fl-node-650b7a693b69e > .fl-col-content {
	background-color: #ffffff;
	border-bottom-right-radius: 45px;
}




.fl-node-64d4330fe6831 {
	width: 100%;
}
.fl-node-64d4330fe6831 > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 50px;
}




.fl-node-649c732e9390b {
	width: 100%;
}
.fl-node-649c732e9390b > .fl-col-content {
	background-color: #ffffff;
	border-bottom-right-radius: 50px;
}
 .fl-node-649c732e9390b > .fl-col-content {
	padding-right:75px;
	padding-bottom:50px;
	padding-left:75px;
}




.fl-node-649a21d004a37 {
	width: 100%;
}




.fl-node-64835f948dcfa {
	width: 100%;
}




.fl-node-64836fbc03831 {
	width: 100%;
}
@media ( max-width: 767px ) {
 .fl-node-64836fbc03831.fl-col > .fl-col-content {
	margin-right:10px;
	margin-left:10px;
}
}
@media ( max-width: 767px ) {
 .fl-node-64836fbc03831.fl-col > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}
}




.fl-node-64836fa8562a0 {
	width: 100%;
}
@media ( max-width: 767px ) {
 .fl-node-64836fa8562a0.fl-col > .fl-col-content {
	margin-right:10px;
	margin-left:10px;
}
}
@media ( max-width: 767px ) {
 .fl-node-64836fa8562a0.fl-col > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}
}




.fl-node-650b5a93a2ed3 {
	width: 100%;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
 .fl-node-vg736ph9ad5t > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
	.fl-builder-content .fl-node-cbfmd467gov9 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-cbfmd467gov9 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-cbfmd467gov9 .fl-rich-text, .fl-builder-content .fl-node-cbfmd467gov9 .fl-rich-text *:not(b, strong) {
	text-align: center;
}
 .fl-node-cbfmd467gov9 > .fl-module-content {
	margin-top:50px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:50px;
}
@media (max-width: 767px) { .fl-node-cbfmd467gov9 > .fl-module-content { margin-top:20px;margin-left:20px; } }	.fl-builder-content .fl-node-rm5bqiw209jv .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-rm5bqiw209jv .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-rm5bqiw209jv .fl-rich-text, .fl-builder-content .fl-node-rm5bqiw209jv .fl-rich-text *:not(b, strong) {
	line-height: 1.5;
	letter-spacing: 0px;
}
 .fl-node-rm5bqiw209jv > .fl-module-content {
	margin-top:0px;
	margin-right:35px;
	margin-bottom:0px;
	margin-left:50px;
}
@media (max-width: 767px) { .fl-node-rm5bqiw209jv > .fl-module-content { margin-left:20px;margin-right:20px; } }                                        .s-link-button-kurf69tl3piy {
                    background-color: #000000;
                    border: 1px solid transparent;
                    color: #ffffff;
                }
                    
                                    .s-link-button-kurf69tl3piy:hover:not(:disabled),
                .s-link-button-kurf69tl3piy:focus:not(:disabled) {
                    text-decoration: none;
                                    background-color: #000000;
                                }
                    
                    .s-link-button-text-kurf69tl3piy {
                color: #ffffff;
            }
            
     .fl-node-kurf69tl3piy > .fl-module-content {
	margin-top:8px;
	margin-bottom:30px;
}
@media (max-width: 767px) { .fl-node-kurf69tl3piy > .fl-module-content { margin-bottom:20px; } }img.mfp-img {
    padding-bottom: 40px !important;
}
@media (max-width: 767px) { /* Mobile Photo */
.fl-photo-content {
	width: 100%;
} }.fl-node-i9rzcuhpmf3a .fl-photo {
	text-align: center;
}
 .fl-node-i9rzcuhpmf3a > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-7i1y0b3vnuhq .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-7i1y0b3vnuhq .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-7i1y0b3vnuhq .fl-rich-text, .fl-builder-content .fl-node-7i1y0b3vnuhq .fl-rich-text *:not(b, strong) {
	line-height: 1.5;
}
 .fl-node-7i1y0b3vnuhq > .fl-module-content {
	margin-bottom:0px;
}
                                        .s-link-button-95ha0ywv1j4n {
                    background-color: #31876f;
                    border: 1px solid transparent;
                    color: #ffffff;
                }
                    
                                    .s-link-button-95ha0ywv1j4n:hover:not(:disabled),
                .s-link-button-95ha0ywv1j4n:focus:not(:disabled) {
                    text-decoration: none;
                                    background-color: #236250;
                                }
                    
                    .s-link-button-text-95ha0ywv1j4n {
                color: #ffffff;
            }
            
     .fl-node-95ha0ywv1j4n > .fl-module-content {
	margin-bottom:30px;
}
@media (max-width: 767px) { .fl-node-95ha0ywv1j4n > .fl-module-content { margin-bottom:20px; } }.fl-node-negdifqh7612 .fl-photo {
	text-align: center;
}
 .fl-node-negdifqh7612 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
	.fl-builder-content .fl-node-650de17fd4305 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650de17fd4305 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-650de17fd4305 .fl-rich-text, .fl-builder-content .fl-node-650de17fd4305 .fl-rich-text *:not(b, strong) {
	line-height: 1.5;
}
 .fl-node-650de17fd4305 > .fl-module-content {
	margin-top:5px;
	margin-right:35px;
	margin-bottom:0px;
	margin-left:35px;
}
@media (max-width: 767px) { .fl-node-650de17fd4305 > .fl-module-content { margin-left:20px;margin-right:20px; } }                                        .s-link-button-uc0q21lj8ndt {
                    background-color: #000000;
                    border: 1px solid transparent;
                    color: #ffffff;
                }
                    
                                    .s-link-button-uc0q21lj8ndt:hover:not(:disabled),
                .s-link-button-uc0q21lj8ndt:focus:not(:disabled) {
                    text-decoration: none;
                                    background-color: #000000;
                                }
                    
                    .s-link-button-text-uc0q21lj8ndt {
                color: #ffffff;
            }
            
     .fl-node-uc0q21lj8ndt > .fl-module-content {
	margin-bottom:30px;
}
@media (max-width: 767px) { .fl-node-uc0q21lj8ndt > .fl-module-content { margin-bottom:20px; } }.fl-node-64e2c249ba99b .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-64e2c249ba99c .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-64e2c249ba99c .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-64e2c249ba99c .fl-rich-text, .fl-builder-content .fl-node-64e2c249ba99c .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-64e2c249ba98e .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-64e2c249ba98f .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-64e2c249ba98f .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-64e2c249ba98f .fl-rich-text, .fl-builder-content .fl-node-64e2c249ba98f .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-64e2c249ba991 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-64e2c249ba992 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-64e2c249ba992 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-64e2c249ba992 .fl-rich-text, .fl-builder-content .fl-node-64e2c249ba992 .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-64e2c249ba993 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-64e2c249ba994 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-64e2c249ba994 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-64e2c249ba994 .fl-rich-text, .fl-builder-content .fl-node-64e2c249ba994 .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-64e2c249ba995 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-64e2c249ba997 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-64e2c249ba997 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-64e2c249ba997 .fl-rich-text, .fl-builder-content .fl-node-64e2c249ba997 .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-64e2c249ba998 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-64e2c249ba999 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-64e2c249ba999 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-64e2c249ba999 .fl-rich-text, .fl-builder-content .fl-node-64e2c249ba999 .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-650b7085dda82 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b791ba3246 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b791ba3246 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b791ba3246 .fl-rich-text, .fl-builder-content .fl-node-650b791ba3246 .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-650b7085dda7e .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b791ba3249 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b791ba3249 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b791ba3249 .fl-rich-text, .fl-builder-content .fl-node-650b791ba3249 .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-650b7085dda85 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b791ba324c .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b791ba324c .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b791ba324c .fl-rich-text, .fl-builder-content .fl-node-650b791ba324c .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-650b7085dda89 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b791ba324f .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b791ba324f .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b791ba324f .fl-rich-text, .fl-builder-content .fl-node-650b791ba324f .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-650b7085dda8c .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b791ba3252 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b791ba3252 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b791ba3252 .fl-rich-text, .fl-builder-content .fl-node-650b791ba3252 .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-650b7085dda8f .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b791ba3255 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b791ba3255 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b791ba3255 .fl-rich-text, .fl-builder-content .fl-node-650b791ba3255 .fl-rich-text *:not(b, strong) {
	text-decoration: none;
}
.fl-node-650b79e925bd8 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b79e925bd9 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b79e925bd9 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b79e925bd9 .fl-rich-text, .fl-builder-content .fl-node-650b79e925bd9 .fl-rich-text *:not(b, strong) {
	font-size: 18px;
	text-decoration: none;
}
.fl-node-650b79e925bdb .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b79e925bdc .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b79e925bdc .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b79e925bdc .fl-rich-text, .fl-builder-content .fl-node-650b79e925bdc .fl-rich-text *:not(b, strong) {
	font-size: 18px;
	text-decoration: none;
}
.fl-node-650b79e925bde .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b79e925bdf .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b79e925bdf .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b79e925bdf .fl-rich-text, .fl-builder-content .fl-node-650b79e925bdf .fl-rich-text *:not(b, strong) {
	font-size: 18px;
	text-decoration: none;
}
.fl-node-650b79e925be1 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b79e925be2 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b79e925be2 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b79e925be2 .fl-rich-text, .fl-builder-content .fl-node-650b79e925be2 .fl-rich-text *:not(b, strong) {
	font-size: 18px;
	text-decoration: none;
}
.fl-node-650b79e925be4 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b79e925be5 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b79e925be5 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b79e925be5 .fl-rich-text, .fl-builder-content .fl-node-650b79e925be5 .fl-rich-text *:not(b, strong) {
	font-size: 18px;
	text-decoration: none;
}
.fl-node-650b79e925be7 .fl-photo {
	text-align: center;
}
	.fl-builder-content .fl-node-650b79e925be8 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-650b79e925be8 .fl-module-content .fl-rich-text * {
		color: #2a2a2a;
	}
	.fl-builder-content .fl-node-650b79e925be8 .fl-rich-text, .fl-builder-content .fl-node-650b79e925be8 .fl-rich-text *:not(b, strong) {
	font-size: 18px;
	text-decoration: none;
}
 .fl-node-64e2c22500393 > .fl-module-content {
	margin-top:30px;
	margin-right:50px;
	margin-bottom:30px;
	margin-left:50px;
}
@media (max-width: 767px) { .fl-node-64e2c22500393 > .fl-module-content { margin-top:20px;margin-bottom:20px;margin-left:20px;margin-right:20px; } }.fl-node-64e2c22500394 .fl-photo {
	text-align: center;
}
 .fl-node-64e2c22500394 > .fl-module-content {
	margin-top:65px;
	margin-bottom:0px;
}
@media (max-width: 767px) { .fl-node-64e2c22500394 > .fl-module-content { margin-top:20px; } } .fl-node-mn24d03vtqbc > .fl-module-content {
	margin-top:30px;
}
@media (max-width: 767px) { .fl-node-mn24d03vtqbc > .fl-module-content { margin-top:20px; } }                                        .s-link-button-64e2c22500397 {
                    background-color: #006891;
                    border: 1px solid transparent;
                    color: #ffffff;
                }
                    
                                    .s-link-button-64e2c22500397:hover:not(:disabled),
                .s-link-button-64e2c22500397:focus:not(:disabled) {
                    text-decoration: none;
                                    background-color: #00435e;
                                }
                    
                    .s-link-button-text-64e2c22500397 {
                color: #ffffff;
            }
            
     .fl-node-64e2c22500397 > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
 .fl-node-650b7a3688913 > .fl-module-content {
	margin-top:30px;
	margin-right:30px;
	margin-bottom:30px;
	margin-left:50px;
}
@media (max-width: 767px) { .fl-node-650b7a3688913 > .fl-module-content { margin-top:20px;margin-bottom:20px;margin-left:20px;margin-right:20px; } }                                        .s-link-button-650b7a368891a {
                    background-color: #006891;
                    border: 1px solid transparent;
                    color: #ffffff;
                }
                    
                                    .s-link-button-650b7a368891a:hover:not(:disabled),
                .s-link-button-650b7a368891a:focus:not(:disabled) {
                    text-decoration: none;
                                    background-color: #00435e;
                                }
                    
                    .s-link-button-text-650b7a368891a {
                color: #ffffff;
            }
            
     .fl-node-650b7a368891a > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
.fl-node-650b7ba001eb4 .fl-photo {
	text-align: center;
}
 .fl-node-650b7ba001eb4 > .fl-module-content {
	margin-top:65px;
	margin-bottom:0px;
}
@media (max-width: 767px) { .fl-node-650b7ba001eb4 > .fl-module-content { margin-top:20px; } } .fl-node-sf2xovka5wdq > .fl-module-content {
	margin-top:30px;
}
@media (max-width: 767px) { .fl-node-sf2xovka5wdq > .fl-module-content { margin-top:20px; } } .fl-node-650b7a693b698 > .fl-module-content {
	margin-top:30px;
	margin-right:30px;
	margin-bottom:30px;
	margin-left:50px;
}
@media ( max-width: 767px ) {
 .fl-node-650b7a693b698.fl-module > .fl-module-content {
	margin-top:40px;
	margin-left:45px;
}
}
@media (max-width: 767px) { .fl-node-650b7a693b698 > .fl-module-content { margin-bottom:20px;margin-right:20px; } }                                        .s-link-button-650b7a693b69f {
                    background-color: #006891;
                    border: 1px solid transparent;
                    color: #ffffff;
                }
                    
                                    .s-link-button-650b7a693b69f:hover:not(:disabled),
                .s-link-button-650b7a693b69f:focus:not(:disabled) {
                    text-decoration: none;
                                    background-color: #00435e;
                                }
                    
                    .s-link-button-text-650b7a693b69f {
                color: #ffffff;
            }
            
     .fl-node-650b7a693b69f > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
.fl-node-650b7a693b69a .fl-photo {
	text-align: center;
}
 .fl-node-650b7a693b69a > .fl-module-content {
	margin-bottom:0px;
}
 .fl-node-67jz35ex1uch > .fl-module-content {
	margin-top:30px;
}
@media (max-width: 767px) { .fl-node-67jz35ex1uch > .fl-module-content { margin-top:20px; } }.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-64d4330fe6760 h2.fl-heading a,
.fl-row .fl-col .fl-node-64d4330fe6760 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-64d4330fe6760 h2.fl-heading .fl-heading-text *,
.fl-node-64d4330fe6760 h2.fl-heading .fl-heading-text {
	color: #2a2a2a;
}
.fl-node-64d4330fe6760.fl-module-heading .fl-heading {
	font-weight: 400;
	font-size: 50px;
	text-align: center;
}
@media(max-width: 767px) {
	.fl-node-64d4330fe6760.fl-module-heading .fl-heading {
		font-size: 40px;
	}
}
 .fl-node-64d4330fe6760 > .fl-module-content {
	margin-top:20px;
}
.fl-node-6504a06edbf16 .fl-separator {
	border-top-width: 10px;
	border-top-style: dotted;
	border-top-color: rgba(0,140,147,0.43);
	max-width: 80%;
	margin: auto;
}

			 .fl-node-6504a06edbf16 > .fl-module-content {
	margin-top:50px;
	margin-bottom:50px;
}
@media (max-width: 767px) { .fl-node-6504a06edbf16 > .fl-module-content { margin-top:20px;margin-bottom:20px; } }.fl-row .fl-col .fl-node-64e14f8fe729f h2.fl-heading a,
.fl-row .fl-col .fl-node-64e14f8fe729f h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-64e14f8fe729f h2.fl-heading .fl-heading-text *,
.fl-node-64e14f8fe729f h2.fl-heading .fl-heading-text {
	color: #750087;
}
.fl-node-64e14f8fe729f.fl-module-heading .fl-heading {
	font-size: 45px;
	text-align: center;
}
@media(max-width: 767px) {
	.fl-node-64e14f8fe729f.fl-module-heading .fl-heading {
		font-size: 40px;
	}
}
 .fl-node-64cbe6f7a76cc > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
.fl-node-64f7665ef0dcf .fl-separator {
	border-top-width: 10px;
	border-top-style: dotted;
	border-top-color: rgba(246,190,0,0.44);
	max-width: 80%;
	margin: auto;
}

			 .fl-node-64f7665ef0dcf > .fl-module-content {
	margin-top:50px;
	margin-bottom:50px;
}
@media (max-width: 767px) { .fl-node-64f7665ef0dcf > .fl-module-content { margin-top:20px;margin-bottom:20px; } }.fl-row .fl-col .fl-node-64cbe77adb956 h2.fl-heading a,
.fl-row .fl-col .fl-node-64cbe77adb956 h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-64cbe77adb956 h2.fl-heading .fl-heading-text *,
.fl-node-64cbe77adb956 h2.fl-heading .fl-heading-text {
	color: #007241;
}
.fl-node-64cbe77adb956.fl-module-heading .fl-heading {
	font-size: 45px;
	text-align: center;
}
@media(max-width: 767px) {
	.fl-node-64cbe77adb956.fl-module-heading .fl-heading {
		font-size: 40px;
	}
}
 .fl-node-649a226f7c899 > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

