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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content .fl-button:is(a, button) *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

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

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

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

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

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

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

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

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

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

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

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

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

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



































.fl-node-vhkq40puljrw .fl-row-content {
	max-width: 900;
}
 .fl-node-vhkq40puljrw > .fl-row-content-wrap {
	padding-top:72px;
	padding-right:24px;
	padding-bottom:72px;
	padding-left:24px;
}
@media ( max-width: 992px ) {
 .fl-node-vhkq40puljrw.fl-row > .fl-row-content-wrap {
	padding-top:56px;
	padding-bottom:56px;
}
}
@media ( max-width: 768px ) {
 .fl-node-vhkq40puljrw.fl-row > .fl-row-content-wrap {
	padding-top:48px;
	padding-bottom:48px;
}
}




























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




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




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




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




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




.fl-node-50ckg782ubjp {
	width: 100%;
}




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




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




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




.fl-node-hvck3arqile0 {
	width: 100%;
}
 .fl-node-9w67z3hbxrlf > .fl-module-content {
	margin-bottom:28px;
}
@media (max-width: 768px) { .fl-node-9w67z3hbxrlf > .fl-module-content { margin-bottom:20px; } }
/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

.fl-node-50ckg782ubjp .fl-col-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px 34px;
  align-items: start;
}
.fl-node-50ckg782ubjp .fl-col-content > .fl-module.eb-header-mod {
  grid-column: 1 / -1;
}
@media (max-width: 600px) {
  .fl-node-50ckg782ubjp .fl-col-content {
    gap: 26px;
  }
}
.fl-node-umq579dszyv4 .sps {
  background: var(--hcpr-white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.fl-node-umq579dszyv4 .sps .sps-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.fl-node-umq579dszyv4 .sps * {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-umq579dszyv4 .sps .sps-head {
  text-align: center;
  margin-bottom: 40px;
}
.fl-node-umq579dszyv4 .sps .sps-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--hcpr-sans);
}
.fl-node-umq579dszyv4 .sps .sps-eyebrow::before, .fl-node-umq579dszyv4 .sps .sps-eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-umq579dszyv4 .sps .sps-head h2 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
  margin: 0;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__aggregate {
  text-align: center;
  margin-bottom: 36px;
  padding: 24px;
  background: var(--hcpr-white);
  border-radius: var(--hcpr-radius);
  border: 1px solid var(--hcpr-line);
  box-shadow: var(--hcpr-shadow-soft);
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__stars-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 6px;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__rating-value {
  font-family: var(--hcpr-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--hcpr-plum);
  line-height: 1;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__stars {
  font-size: 24px;
  letter-spacing: 2px;
}
.fl-node-umq579dszyv4 .sps .hcpr-star--full {
  color: #f59f0a;
}
.fl-node-umq579dszyv4 .sps .hcpr-star--half {
  color: #f59f0a;
  opacity: 0.7;
}
.fl-node-umq579dszyv4 .sps .hcpr-star--empty {
  color: #dbd0bd;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__count {
  font-size: 16px;
  color: var(--hcpr-muted);
  font-weight: 500;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__count a {
  color: var(--hcpr-plum);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(69, 43, 100, 0.2);
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__count a:hover {
  border-bottom-color: var(--hcpr-copper);
  color: var(--hcpr-copper);
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 8px;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__card {
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius);
  padding: 28px 24px;
  box-shadow: var(--hcpr-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__avatar {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--hcpr-cream);
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__author-info {
  flex: 1;
  min-width: 0;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__author {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--hcpr-plum-dark);
  font-family: var(--hcpr-serif);
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__date {
  display: block;
  font-size: 14px;
  color: var(--hcpr-muted);
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__card-stars {
  margin-left: auto;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__card-stars .hcpr-star--full {
  color: #f59f0a;
  font-size: 16px;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__card-stars .hcpr-star--empty {
  color: #dbd0bd;
  font-size: 16px;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--hcpr-muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fl-node-umq579dszyv4 .sps .hcpr-reviews__footer {
  display: none;
}
.fl-node-umq579dszyv4 .sps .sps-footer {
  text-align: center;
  margin-top: 32px;
}
.fl-node-umq579dszyv4 .sps .sps-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--hcpr-radius-md);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: var(--hcpr-plum);
  border: 1px solid var(--hcpr-line-strong);
  background: transparent;
  font-family: var(--hcpr-sans);
  transition: border-color 0.15s, color 0.15s;
}
.fl-node-umq579dszyv4 .sps .sps-footer a:hover {
  border-color: var(--hcpr-copper);
  color: var(--hcpr-copper);
}
@media (max-width: 900px) {
  .fl-node-umq579dszyv4 .sps .hcpr-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .fl-node-umq579dszyv4 .sps .hcpr-reviews__grid {
    grid-template-columns: 1fr;
  }
  .fl-node-umq579dszyv4 .sps .hcpr-reviews__aggregate {
    padding: 20px 16px;
  }
  .fl-node-umq579dszyv4 .sps .hcpr-reviews__rating-value {
    font-size: 2.4rem;
  }
  .fl-node-umq579dszyv4 .sps .sps-wrap {
    padding: 0 16px;
  }
  .fl-node-umq579dszyv4 .sps .sps-head h2 {
    font-size: 1.4rem;
  }
}
.fl-node-2bup4mwnxia3 {
  /* v4: Image area reduced to ~half. aspect-ratio 16/5 + max-height cap */
  /* CSS :target fallback (no-JS) */
  /* Mobile: tighter tab grid + reduced image */
}
.fl-node-2bup4mwnxia3 .block--process-stepper {
  --plum: hsl(268 40% 28%);
  --plum-dark: hsl(270 20% 15%);
  --plum-deep: hsl(268 42% 22%);
  --plum-tint: hsl(268 25% 95%);
  --copper: hsl(28 85% 52%);
  --copper-soft: hsl(28 85% 92%);
  --cream: hsl(30 20% 98%);
  --white: #ffffff;
  --card: hsl(30 20% 99%);
  --muted: hsl(270 12% 42%);
  --line: hsla(268 25% 24% / 0.1);
  --line-strong: hsla(268 25% 24% / 0.18);
  --shadow-card: 0 10px 24px rgba(33,20,42,0.07);
  --shadow-hover: 0 12px 32px rgba(33,20,42,0.12);
  --shadow-active: 0 8px 20px rgba(212,119,42,0.18);
  --radius: 18px;
  --radius-lg: 22px;
  --radius-sm: 10px;
  --max: 1100px;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Source Sans 3", system-ui, sans-serif;
  --ps-steps: 5;
}
.fl-node-2bup4mwnxia3 .block--process-stepper .block-label {
  display: none;
}
.fl-node-2bup4mwnxia3 .block--process-stepper {
  background: linear-gradient(180deg, #fbfaf9 0%, #f7f5f3 100%);
  padding: clamp(4.5rem, 7vw, 6rem) 0;
}
.fl-node-2bup4mwnxia3 .block--process-stepper .wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-2bup4mwnxia3 .block--process-stepper .section-intro {
  margin-bottom: 44px;
}
.fl-node-2bup4mwnxia3 .block--process-stepper .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
}
.fl-node-2bup4mwnxia3 .block--process-stepper .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--copper);
  opacity: 0.5;
}
.fl-node-2bup4mwnxia3 .block--process-stepper h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--plum-dark);
  max-width: 750px;
  margin-bottom: 10px;
}
.fl-node-2bup4mwnxia3 .block--process-stepper .section-intro .lead {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.55;
}
.fl-node-2bup4mwnxia3 .ps-stepper {
  display: grid;
  grid-template-columns: repeat(var(--ps-steps), 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.fl-node-2bup4mwnxia3 .ps-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 10px 14px;
  transition: all 0.25s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(33, 20, 42, 0.04);
}
.fl-node-2bup4mwnxia3 .ps-step:focus-visible {
  outline: 3px solid var(--copper-soft);
  outline-offset: 2px;
}
.fl-node-2bup4mwnxia3 .ps-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  background: var(--hcpr-white);
  color: var(--muted);
  border: 2px solid var(--line);
  transition: all 0.25s ease;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.fl-node-2bup4mwnxia3 .ps-step-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--plum-dark);
  text-align: center;
  line-height: 1.25;
  transition: color 0.2s;
}
.fl-node-2bup4mwnxia3 .ps-step-desc {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
  opacity: 0.65;
  margin-top: 3px;
  transition: opacity 0.2s;
}
.fl-node-2bup4mwnxia3 .ps-step[data-visited] {
  border-color: var(--line-strong);
}
.fl-node-2bup4mwnxia3 .ps-step[data-visited] .ps-num {
  background: var(--copper-soft);
  border-color: var(--copper);
  color: var(--plum-dark);
}
.fl-node-2bup4mwnxia3 .ps-step[aria-selected="true"] {
  border-color: var(--copper);
  box-shadow: var(--shadow-active);
  transform: translateY(-2px);
  background: var(--white);
}
.fl-node-2bup4mwnxia3 .ps-step[aria-selected="true"] .ps-num {
  background: var(--copper);
  border-color: var(--copper);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 119, 42, 0.3);
}
.fl-node-2bup4mwnxia3 .ps-step[aria-selected="true"] .ps-step-label {
  color: var(--plum-dark);
  font-weight: 800;
}
.fl-node-2bup4mwnxia3 .ps-step[aria-selected="true"] .ps-step-desc {
  opacity: 1;
  color: var(--plum-dark);
}
.fl-node-2bup4mwnxia3 .ps-step:hover {
  border-color: var(--copper);
  box-shadow: 0 4px 12px rgba(212, 119, 42, 0.1);
}
.fl-node-2bup4mwnxia3 .ps-step:hover .ps-num {
  border-color: var(--copper);
  transform: scale(1.05);
}
.fl-node-2bup4mwnxia3 .ps-stage {
  display: grid;
  gap: 24px;
  align-items: start;
}
@media (min-width: 900px) {
  .fl-node-2bup4mwnxia3 .ps-stage {
    grid-template-columns: 1fr 300px;
  }
}
.fl-node-2bup4mwnxia3 .ps-panel {
  display: none;
}
.fl-node-2bup4mwnxia3 .ps-panel[data-active] {
  display: block;
  animation: psFadeIn 0.3s ease-out;
}
.fl-node-2bup4mwnxia3 .ps-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.fl-node-2bup4mwnxia3 .ps-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3.2;
  max-height: 220px;
}
.fl-node-2bup4mwnxia3 .ps-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.fl-node-2bup4mwnxia3 .ps-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 14, 35, 0.45), transparent 60%);
  pointer-events: none;
}
.fl-node-2bup4mwnxia3 .ps-hero-badge {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--sans);
  padding: 8px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--plum);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.fl-node-2bup4mwnxia3 .ps-hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(212, 119, 42, 0.16);
}
.fl-node-2bup4mwnxia3 .ps-card-body {
  padding: clamp(20px, 4vw, 36px);
}
.fl-node-2bup4mwnxia3 .ps-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  color: var(--plum-dark);
  margin-bottom: 12px;
}
.fl-node-2bup4mwnxia3 .ps-card > .ps-card-body > p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--plum-dark);
  margin-bottom: 20px;
  max-width: 640px;
}
.fl-node-2bup4mwnxia3 .ps-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}
.fl-node-2bup4mwnxia3 .ps-pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--plum-tint);
  color: var(--plum);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
}
.fl-node-2bup4mwnxia3 .ps-checks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
@media (min-width: 600px) {
  .fl-node-2bup4mwnxia3 .ps-checks {
    grid-template-columns: 1fr 1fr;
  }
}
.fl-node-2bup4mwnxia3 .ps-checks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.fl-node-2bup4mwnxia3 .ps-check-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(212, 119, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.fl-node-2bup4mwnxia3 .ps-check-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--copper);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-2bup4mwnxia3 .ps-check-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--plum-dark);
  margin-bottom: 2px;
}
.fl-node-2bup4mwnxia3 .ps-check-text span {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}
.fl-node-2bup4mwnxia3 .ps-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.fl-node-2bup4mwnxia3 .ps-nav a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--plum);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  min-height: 44px;
  transition: color 0.15s;
}
.fl-node-2bup4mwnxia3 .ps-nav a:hover {
  color: var(--copper);
}
.fl-node-2bup4mwnxia3 .ps-nav a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-2bup4mwnxia3 .ps-nav .ps-counter {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.fl-node-2bup4mwnxia3 .ps-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-card);
}
@media (min-width: 900px) {
  .fl-node-2bup4mwnxia3 .ps-cta {
    position: sticky;
    top: 24px;
  }
}
.fl-node-2bup4mwnxia3 .ps-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--plum), var(--plum-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.fl-node-2bup4mwnxia3 .ps-cta-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-2bup4mwnxia3 .ps-cta h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--plum-dark);
  margin-bottom: 8px;
}
.fl-node-2bup4mwnxia3 .ps-cta p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 24px;
}
.fl-node-2bup4mwnxia3 .ps-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  background: var(--copper);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(212, 119, 42, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 50px;
}
.fl-node-2bup4mwnxia3 .ps-cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 119, 42, 0.3);
}
.fl-node-2bup4mwnxia3 .ps-cta .btn-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-2bup4mwnxia3 .ps-cta .ps-cta-trust {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--sans);
}
.fl-node-2bup4mwnxia3 .ps-cta .ps-cta-trust::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(212, 119, 42, 0.16);
  flex-shrink: 0;
}
.fl-node-2bup4mwnxia3 .no-js .ps-panel, .fl-node-2bup4mwnxia3 .ps-noscript .ps-panel {
  display: none;
}
.fl-node-2bup4mwnxia3 .no-js .ps-panel:first-child, .fl-node-2bup4mwnxia3 .ps-noscript .ps-panel:first-child {
  display: block;
}
.fl-node-2bup4mwnxia3 .no-js .ps-panel:target, .fl-node-2bup4mwnxia3 .ps-noscript .ps-panel:target {
  display: block;
}
.fl-node-2bup4mwnxia3 .no-js .ps-panels:has(.ps-panel:target) > .ps-panel:first-child:not(:target), .fl-node-2bup4mwnxia3 .ps-noscript .ps-panels:has(.ps-panel:target) > .ps-panel:first-child:not(:target) {
  display: none;
}
.fl-node-2bup4mwnxia3 .no-js .ps-step:first-child, .fl-node-2bup4mwnxia3 .ps-noscript .ps-step:first-child {
  border-color: var(--copper);
  box-shadow: var(--shadow-active);
  transform: translateY(-2px);
}
.fl-node-2bup4mwnxia3 .no-js .ps-step:first-child .ps-num, .fl-node-2bup4mwnxia3 .ps-noscript .ps-step:first-child .ps-num {
  background: var(--copper);
  border-color: var(--copper);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 119, 42, 0.3);
}
.fl-node-2bup4mwnxia3 .no-js .ps-step:first-child .ps-step-label, .fl-node-2bup4mwnxia3 .ps-noscript .ps-step:first-child .ps-step-label {
  color: var(--plum-dark);
  font-weight: 800;
}
.fl-node-2bup4mwnxia3 .no-js .ps-noscript:has(.ps-panel:target) .ps-step:first-child, .fl-node-2bup4mwnxia3 .block--process-stepper .ps-noscript:has(.ps-panel:target) .ps-step:first-child {
  border-color: var(--line);
  box-shadow: 0 2px 8px rgba(33, 20, 42, 0.04);
  transform: none;
}
.fl-node-2bup4mwnxia3 .no-js .ps-noscript:has(.ps-panel:target) .ps-step:first-child .ps-num, .fl-node-2bup4mwnxia3 .block--process-stepper .ps-noscript:has(.ps-panel:target) .ps-step:first-child .ps-num {
  background: var(--hcpr-white);
  border-color: var(--line);
  color: var(--muted);
  box-shadow: none;
}
.fl-node-2bup4mwnxia3 .no-js .ps-noscript:has(.ps-panel:target) .ps-step:first-child .ps-step-label, .fl-node-2bup4mwnxia3 .block--process-stepper .ps-noscript:has(.ps-panel:target) .ps-step:first-child .ps-step-label {
  color: var(--plum-dark);
  font-weight: 700;
}
.fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-1:target) [href="#ps-1"], .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-2:target) [href="#ps-2"], .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-3:target) [href="#ps-3"], .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-4:target) [href="#ps-4"], .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-5:target) [href="#ps-5"], .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-6:target) [href="#ps-6"], .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-1:target) [href="#ps-1"], .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-2:target) [href="#ps-2"], .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-3:target) [href="#ps-3"], .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-4:target) [href="#ps-4"], .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-5:target) [href="#ps-5"], .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-6:target) [href="#ps-6"] {
  border-color: var(--copper);
  box-shadow: var(--shadow-active);
  transform: translateY(-2px);
}
.fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-1:target) [href="#ps-1"] .ps-num, .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-2:target) [href="#ps-2"] .ps-num, .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-3:target) [href="#ps-3"] .ps-num, .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-4:target) [href="#ps-4"] .ps-num, .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-5:target) [href="#ps-5"] .ps-num, .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-6:target) [href="#ps-6"] .ps-num, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-1:target) [href="#ps-1"] .ps-num, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-2:target) [href="#ps-2"] .ps-num, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-3:target) [href="#ps-3"] .ps-num, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-4:target) [href="#ps-4"] .ps-num, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-5:target) [href="#ps-5"] .ps-num, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-6:target) [href="#ps-6"] .ps-num {
  background: var(--copper);
  border-color: var(--copper);
  color: #fff;
  box-shadow: 0 4px 14px rgba(212, 119, 42, 0.3);
}
.fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-1:target) [href="#ps-1"] .ps-step-label, .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-2:target) [href="#ps-2"] .ps-step-label, .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-3:target) [href="#ps-3"] .ps-step-label, .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-4:target) [href="#ps-4"] .ps-step-label, .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-5:target) [href="#ps-5"] .ps-step-label, .fl-node-2bup4mwnxia3 .no-js .block--process-stepper:has(#ps-6:target) [href="#ps-6"] .ps-step-label, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-1:target) [href="#ps-1"] .ps-step-label, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-2:target) [href="#ps-2"] .ps-step-label, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-3:target) [href="#ps-3"] .ps-step-label, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-4:target) [href="#ps-4"] .ps-step-label, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-5:target) [href="#ps-5"] .ps-step-label, .fl-node-2bup4mwnxia3 .block--process-stepper .block--process-stepper:has(#ps-6:target) [href="#ps-6"] .ps-step-label {
  color: var(--plum-dark);
  font-weight: 800;
}
@keyframes psFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fl-node-2bup4mwnxia3 .ps-panel[data-active] {
    animation: none;
  }
  .fl-node-2bup4mwnxia3 .ps-step[aria-selected="true"] {
    transform: none;
  }
  .fl-node-2bup4mwnxia3 .ps-step[aria-selected="true"] .ps-num {
    transform: none;
  }
  .fl-node-2bup4mwnxia3 .ps-step:hover .ps-num {
    transform: none;
  }
  .fl-node-2bup4mwnxia3 .ps-step:hover {
    transform: none;
  }
  .fl-node-2bup4mwnxia3 .ps-cta .btn-cta {
    transition: none;
  }
  .fl-node-2bup4mwnxia3 .ps-step {
    transition: none;
  }
}
@media (max-width: 599px) {
  .fl-node-2bup4mwnxia3 {
    /* v4: reduced image on mobile too */
  }
  .fl-node-2bup4mwnxia3 .ps-stepper {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 12px;
  }
  .fl-node-2bup4mwnxia3 .ps-step {
    padding: 10px 8px 8px;
  }
  .fl-node-2bup4mwnxia3 .ps-num {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-bottom: 6px;
  }
  .fl-node-2bup4mwnxia3 .ps-step-label {
    font-size: 12px;
  }
  .fl-node-2bup4mwnxia3 .ps-step-desc {
    display: none;
  }
  .fl-node-2bup4mwnxia3 .ps-hero {
    aspect-ratio: 2.6666666667;
    max-height: 160px;
  }
  .fl-node-2bup4mwnxia3 .ps-card-body {
    padding: 20px 16px;
  }
  .fl-node-2bup4mwnxia3 .ps-checks {
    grid-template-columns: 1fr;
  }
  .fl-node-2bup4mwnxia3 .ps-stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fl-node-2bup4mwnxia3 .ps-cta {
    padding: 24px 16px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .fl-node-2bup4mwnxia3 .ps-stepper {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }
}
@media (min-width: 600px) and (max-width: 899px) {
  .fl-node-2bup4mwnxia3 .ps-stage {
    grid-template-columns: 1fr;
  }
}
@media print {
  .fl-node-2bup4mwnxia3 .ps-panel {
    display: block !important;
    page-break-inside: avoid;
  }
  .fl-node-2bup4mwnxia3 .ps-panel + .ps-panel {
    border-top: 1px solid #ccc;
    padding-top: 16px;
    margin-top: 16px;
  }
  .fl-node-2bup4mwnxia3 .ps-stepper, .fl-node-2bup4mwnxia3 .ps-nav {
    display: none;
  }
  .fl-node-2bup4mwnxia3 .ps-hero {
    height: 80px;
    aspect-ratio: auto;
    max-height: none;
  }
}
@charset "UTF-8";
.fl-node-swgbyt1xp42u {
  /* value-snapshot-outcome — &-scoped (X10), var(--hcpr-*) tokens (X1). HCPR-90/203 */
  /* value-snapshot-outcome */
  /* Optional hero image slot — full feature/image card => --hcpr-radius-lg (22px) per BRANDBOOK §6.11. HCPR-90 */
  /* Grid: 3-up on desktop, stacks on mobile */
  /* Card: §6.6 surface gradient, radius 18 (ratified), shadow tokens, hover lift */
  /* Plum gradient icon container — RATIFIED (do NOT revert to copper) §6.9 */
  /* Card kicker — copper per BRANDBOOK §4.2 (eyebrow/kicker standard). HCPR-90 */
  /* Main stat/value */
  /* Description text */
  /* Active heading underline bar */
  /* Mobile */
}
.fl-node-swgbyt1xp42u .hcp-tpl {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
}
.fl-node-swgbyt1xp42u .hcp-tpl *, .fl-node-swgbyt1xp42u .hcp-tpl *::before, .fl-node-swgbyt1xp42u .hcp-tpl *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-swgbyt1xp42u .hcp-tpl img {
  max-width: 100%;
  display: block;
}
.fl-node-swgbyt1xp42u .hcp-tpl a {
  color: inherit;
}
.fl-node-swgbyt1xp42u .hcp-tpl .wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-swgbyt1xp42u .hcp-tpl h1, .fl-node-swgbyt1xp42u .hcp-tpl h2, .fl-node-swgbyt1xp42u .hcp-tpl h3 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
}
.fl-node-swgbyt1xp42u .hcp-tpl .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-node-swgbyt1xp42u .hcp-tpl .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-swgbyt1xp42u .hcp-tpl .section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.fl-node-swgbyt1xp42u .hcp-tpl .section-head p {
  font-size: 16px;
  color: var(--hcpr-muted);
  max-width: 580px;
  margin-bottom: 0;
}
.fl-node-swgbyt1xp42u .hcp-tpl .section-head {
  margin-bottom: 36px;
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome {
  background: var(--hcpr-white);
  padding: clamp(4.5rem, 7vw, 6rem) 0;
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-hero-img {
  margin-bottom: 32px;
  border-radius: var(--hcpr-radius-lg);
  overflow: hidden;
  max-height: 320px;
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-hero-img img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-card {
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--hcpr-shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-card:hover {
  box-shadow: var(--hcpr-shadow-lg);
  transform: translateY(-4px);
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hcpr-radius-md);
  background: linear-gradient(135deg, var(--hcpr-plum), var(--hcpr-plum-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--hcpr-white);
  stroke-width: 1.75;
  fill: none;
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  font-family: var(--hcpr-sans);
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-value {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--hcpr-plum);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-desc {
  font-family: var(--hcpr-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--hcpr-muted);
  margin-top: 4px;
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .section-head h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}
.fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--hcpr-copper);
  border-radius: 2px;
}
@media (max-width: 375px) {
  .fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-card {
    padding: 24px 20px 20px;
  }
  .fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-hero-img {
    max-height: 200px;
    border-radius: var(--hcpr-radius);
    margin-bottom: 24px;
  }
  .fl-node-swgbyt1xp42u .hcp-tpl.value-snapshot-outcome .vs-hero-img img {
    max-height: 200px;
  }
}
.fl-node-swgbyt1xp42u .block-label {
  display: none !important;
}
.fl-node-4zy6gatkxs1b {
  display: block;
  max-width: 760px;
}
.fl-node-4zy6gatkxs1b .eb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--hcpr-sans);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin: 0 0 10px;
}
.fl-node-4zy6gatkxs1b .eb-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-4zy6gatkxs1b .eb-h2 {
  font-family: var(--hcpr-serif);
  font-size: clamp(1.5rem, 1.1rem + 1.3vw, 1.9rem);
  line-height: 1.22;
  color: var(--hcpr-plum);
  margin: 0;
  max-width: 26ch;
}
@charset "UTF-8";
.fl-node-j31t6axk209l {
  /* ── HCPR-95: button text color → canon (robust vs .hcp-tpl a{color:inherit} on static snapshot) ── */
  /* ── HCPR-95: modern "what you pay" bill visual (replaces Samplebill image) ── */
}
.fl-node-j31t6axk209l .funding-explainer {
  background: var(--hcpr-white);
  padding: var(--hcpr-section) 0;
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
}
.fl-node-j31t6axk209l .funding-explainer *, .fl-node-j31t6axk209l .funding-explainer *::before, .fl-node-j31t6axk209l .funding-explainer *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-j31t6axk209l .funding-explainer img {
  max-width: 100%;
  display: block;
}
.fl-node-j31t6axk209l .funding-explainer a:not(.hcpr-btn) {
  color: inherit;
}
.fl-node-j31t6axk209l .funding-explainer .wrap {
  width: 100%;
  max-width: var(--hcpr-max);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-j31t6axk209l .funding-explainer h1, .fl-node-j31t6axk209l .funding-explainer h2, .fl-node-j31t6axk209l .funding-explainer h3 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
}
.fl-node-j31t6axk209l .funding-explainer .fe-head {
  text-align: center;
  margin-bottom: 40px;
}
.fl-node-j31t6axk209l .funding-explainer .fe-head .hcpr-eyebrow {
  justify-content: center;
}
.fl-node-j31t6axk209l .funding-explainer .fe-head h2 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--hcpr-plum-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.fl-node-j31t6axk209l .funding-explainer .fe-head p {
  font-family: var(--hcpr-sans);
  font-size: 16px;
  color: var(--hcpr-muted);
  max-width: 580px;
  margin: 0 auto;
}
.fl-node-j31t6axk209l .funding-explainer .fe-grid {
  display: grid;
  gap: var(--hcpr-gap-layout);
  align-items: center;
}
@media (min-width: 768px) {
  .fl-node-j31t6axk209l .funding-explainer .fe-grid {
    grid-template-columns: 6fr 6fr;
  }
}
.fl-node-j31t6axk209l .funding-explainer .fe-visual {
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: var(--hcpr-shadow);
}
.fl-node-j31t6axk209l .funding-explainer .fe-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--hcpr-radius-sm);
}
.fl-node-j31t6axk209l .funding-explainer .fe-callout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: var(--hcpr-radius-md);
  background: rgba(237, 126, 29, 0.1);
  font-family: var(--hcpr-sans);
  font-size: 16px;
  font-weight: 600;
  color: #c66510;
  line-height: 1.3;
}
.fl-node-j31t6axk209l .funding-explainer .fe-callout svg {
  width: 16px;
  height: 16px;
  stroke: #c66510;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}
.fl-node-j31t6axk209l .funding-explainer .fe-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fl-node-j31t6axk209l .funding-explainer .fe-copy h3 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  color: var(--hcpr-plum-dark);
  margin-bottom: 24px;
}
.fl-node-j31t6axk209l .funding-explainer .fe-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}
.fl-node-j31t6axk209l .funding-explainer .fe-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.fl-node-j31t6axk209l .funding-explainer .fe-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hcpr-radius-md);
  background: var(--hcpr-plum-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fl-node-j31t6axk209l .funding-explainer .fe-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 1.75;
  fill: none;
}
.fl-node-j31t6axk209l .funding-explainer .fe-feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fl-node-j31t6axk209l .funding-explainer .fe-feature-title {
  font-family: var(--hcpr-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--hcpr-plum-dark);
  line-height: 1.3;
}
.fl-node-j31t6axk209l .funding-explainer .fe-feature-desc {
  font-family: var(--hcpr-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--hcpr-muted);
}
.fl-node-j31t6axk209l .funding-explainer .fe-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--hcpr-line);
}
.fl-node-j31t6axk209l .funding-explainer .fe-logos .fe-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 44px;
}
.fl-node-j31t6axk209l .funding-explainer .fe-logos .fe-logo-item img {
  max-height: 44px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}
.fl-node-j31t6axk209l .funding-explainer .fe-cta {
  margin-top: 24px;
}
@media (max-width: 375px) {
  .fl-node-j31t6axk209l .funding-explainer .fe-visual {
    padding: 16px;
  }
  .fl-node-j31t6axk209l .funding-explainer .fe-feature-icon {
    width: 40px;
    height: 40px;
  }
  .fl-node-j31t6axk209l .funding-explainer .fe-feature-icon svg {
    width: 20px;
    height: 20px;
  }
  .fl-node-j31t6axk209l .funding-explainer .fe-logos .fe-logo-item {
    height: 36px;
    min-width: 70px;
  }
  .fl-node-j31t6axk209l .funding-explainer .fe-logos .fe-logo-item img {
    max-height: 36px;
    max-width: 100px;
  }
  .fl-node-j31t6axk209l .funding-explainer .wrap {
    padding: 0 16px;
  }
}
.fl-node-j31t6axk209l .funding-explainer .hcpr-btn--primary {
  color: #fff;
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill {
  display: block;
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius);
  padding: 24px;
  box-shadow: var(--hcpr-shadow-soft);
  font-family: var(--hcpr-sans);
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--hcpr-radius-pill);
  background: var(--hcpr-plum-tint);
  color: var(--hcpr-plum);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-rate {
  font-size: 13px;
  font-weight: 600;
  color: var(--hcpr-muted);
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-title {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--hcpr-plum-dark);
  line-height: 1.15;
  margin-top: 16px;
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hcpr-muted);
  margin-top: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hcpr-line-strong);
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-line {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 2px 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hcpr-line);
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--hcpr-plum-dark);
  line-height: 1.3;
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-meta {
  grid-column: 1 / 2;
  font-size: 13px;
  color: var(--hcpr-muted);
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-amt {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--hcpr-plum-dark);
  font-variant-numeric: tabular-nums;
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-line.is-focus {
  position: relative;
  margin: 8px -12px;
  padding: 14px 12px 14px 18px;
  border-bottom: none;
  border-radius: var(--hcpr-radius-md);
  background: rgba(237, 126, 29, 0.1);
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-line.is-focus::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: var(--hcpr-radius-pill);
  background: var(--hcpr-copper);
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-line.is-focus .fe-bill-label {
  color: #b35b0f;
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-line.is-focus .fe-bill-amt {
  color: #b35b0f;
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-line.is-focus .fe-bill-label sup {
  color: var(--hcpr-copper);
  font-weight: 700;
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hcpr-line-strong);
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-total-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hcpr-muted);
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-total-amt {
  font-size: 20px;
  font-weight: 700;
  color: var(--hcpr-plum-dark);
  font-variant-numeric: tabular-nums;
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--hcpr-line);
  font-size: 13px;
  line-height: 1.5;
  color: var(--hcpr-muted);
}
.fl-node-j31t6axk209l .funding-explainer .fe-bill-note sup {
  color: var(--hcpr-copper);
  font-weight: 700;
}
@media (max-width: 375px) {
  .fl-node-j31t6axk209l .funding-explainer .fe-bill {
    padding: 18px;
  }
  .fl-node-j31t6axk209l .funding-explainer .fe-bill-line.is-focus {
    margin: 8px -8px;
    padding-left: 14px;
    padding-right: 8px;
  }
}
@charset "UTF-8";
.fl-node-h4m7rvep8iag {
  /* final-cta-band — module bb_css_code (&-scoped, X10 + X1). HCPR-89.
   Canonical: §6.2 plum-gradient band, centered, white copy, one copper CTA.
   Inline style block, webfont import, and dev-changelog comments removed (fonts load
   site-wide via hcpr_ds_fonts; tokens via hcpr_ds_inline). Brand literals → --hcpr-*. */
  /* Rating strip */
  /* Heading — white on plum */
  /* Subtext */
  /* CTA button row */
  /* Primary CTA — copper, §6.1 radius-md */
  /* Trust chip row — pills (§6.3) */
  /* Responsive */
  /* rating-only shortcode adoption (HCPR-173) — fit + light colors on dark band */
}
.fl-node-h4m7rvep8iag .final-cta-band {
  --gap: clamp(4.5rem, 7vw, 6rem);
  font-family: var(--hcpr-sans);
  font-size: 1rem;
  line-height: 1.6;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--hcpr-plum), var(--hcpr-plum-deep));
  padding: var(--gap) 0;
  text-align: center;
}
.fl-node-h4m7rvep8iag .final-cta-band *, .fl-node-h4m7rvep8iag .final-cta-band *::before, .fl-node-h4m7rvep8iag .final-cta-band *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-h4m7rvep8iag .final-cta-band .block-label {
  display: none !important;
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 22px;
  border-radius: var(--hcpr-radius-pill);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-rating .stars {
  color: #ffc94d;
  font-size: 1.25rem;
  letter-spacing: 2px;
  line-height: 1;
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-rating .rating-num {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: 1.375rem;
  color: #fff;
  line-height: 1;
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-rating .rating-text {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(247, 243, 239, 0.8);
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-heading, .fl-node-h4m7rvep8iag .final-cta-band h2.cta-heading, .fl-node-h4m7rvep8iag .final-cta-band .cta-content .cta-heading, .fl-node-h4m7rvep8iag .final-cta-band .cta-content h2 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  margin-bottom: 12px;
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-subtext {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(247, 243, 239, 0.88);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.fl-node-h4m7rvep8iag .final-cta-band .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--hcpr-copper);
  color: #fff;
  font-family: var(--hcpr-sans);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 16px 40px;
  border-radius: var(--hcpr-radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 52px;
  box-shadow: 0 12px 28px rgba(212, 119, 42, 0.4);
}
.fl-node-h4m7rvep8iag .final-cta-band .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(212, 119, 42, 0.5);
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.fl-node-h4m7rvep8iag .final-cta-band .trust-chip {
  font-size: 13px;
  font-weight: 600;
  color: rgba(247, 243, 239, 0.75);
  padding: 5px 12px 5px 10px;
  border-radius: var(--hcpr-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fl-node-h4m7rvep8iag .final-cta-band .trust-chip .glow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hcpr-copper);
  box-shadow: 0 0 0 3px rgba(212, 119, 42, 0.2);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .fl-node-h4m7rvep8iag .final-cta-band {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }
  .fl-node-h4m7rvep8iag .final-cta-band .cta-heading, .fl-node-h4m7rvep8iag .final-cta-band h2.cta-heading, .fl-node-h4m7rvep8iag .final-cta-band .cta-content .cta-heading, .fl-node-h4m7rvep8iag .final-cta-band .cta-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
  .fl-node-h4m7rvep8iag .final-cta-band .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .fl-node-h4m7rvep8iag .final-cta-band .btn-primary {
    width: 100%;
    max-width: 320px;
  }
  .fl-node-h4m7rvep8iag .final-cta-band .cta-trust {
    gap: 6px;
  }
  .fl-node-h4m7rvep8iag .final-cta-band .trust-chip {
    font-size: 12px;
    padding: 4px 10px 4px 8px;
  }
}
@media (max-width: 400px) {
  .fl-node-h4m7rvep8iag .final-cta-band .cta-content {
    padding: 0 16px;
  }
  .fl-node-h4m7rvep8iag .final-cta-band .cta-rating {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px 16px;
    gap: 6px;
  }
  .fl-node-h4m7rvep8iag .final-cta-band .cta-rating .rating-num {
    font-size: 1.125rem;
  }
  .fl-node-h4m7rvep8iag .final-cta-band .cta-rating .rating-text {
    font-size: 0.8125rem;
  }
  .fl-node-h4m7rvep8iag .final-cta-band .btn-primary {
    max-width: 100%;
  }
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-rating .hcpr-reviews--rating-only, .fl-node-h4m7rvep8iag .final-cta-band .cta-rating .hcpr-reviews__aggregate, .fl-node-h4m7rvep8iag .final-cta-band .cta-rating .hcpr-reviews__stars-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-rating .hcpr-reviews__rating-value {
  color: #fff;
  font-size: 1.375rem;
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-rating .hcpr-reviews__stars {
  color: #ffc94d;
  font-size: 1.25rem;
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-rating .hcpr-reviews__count {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}
.fl-node-h4m7rvep8iag .final-cta-band .cta-rating .hcpr-reviews__count a {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.fl-node-5utgc24nspzj .hcp-tpl {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
}
.fl-node-5utgc24nspzj .hcp-tpl *, .fl-node-5utgc24nspzj .hcp-tpl *::before, .fl-node-5utgc24nspzj .hcp-tpl *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-5utgc24nspzj .hcp-tpl img {
  max-width: 100%;
  display: block;
}
.fl-node-5utgc24nspzj .hcp-tpl a {
  color: inherit;
}
.fl-node-5utgc24nspzj .hcp-tpl .wrap {
  width: 100%;
  max-width: var(--hcpr-max, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-5utgc24nspzj .hcp-tpl h1, .fl-node-5utgc24nspzj .hcp-tpl h2, .fl-node-5utgc24nspzj .hcp-tpl h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
}
.fl-node-5utgc24nspzj .hcp-tpl .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-node-5utgc24nspzj .hcp-tpl .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-5utgc24nspzj .hcp-tpl .section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.fl-node-5utgc24nspzj .hcp-tpl .section-head p {
  font-size: 16px;
  color: var(--hcpr-muted);
  max-width: 580px;
  margin-bottom: 0;
}
.fl-node-5utgc24nspzj .hcp-tpl .section-head {
  margin-bottom: 32px;
}
.fl-node-5utgc24nspzj .hcp-tpl .sec-cream {
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.fl-node-5utgc24nspzj .hcp-tpl .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--hcpr-radius);
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  text-decoration: none;
  color: var(--hcpr-plum-dark);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(45, 28, 64, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s;
  position: relative;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card:hover {
  transform: scale(1.02);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 0 12px 28px rgba(45, 28, 64, 0.12);
  border-color: var(--hcpr-copper);
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card-img-wrap {
  position: relative;
  width: 100%;
  height: 192px;
  overflow: hidden;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card:hover .svc-card-img {
  transform: scale(1.1);
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
  pointer-events: none;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hcpr-radius-md);
  background: var(--hcpr-copper);
  box-shadow: 0 4px 12px rgba(45, 28, 64, 0.2);
  z-index: 1;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fce9d9;
  white-space: nowrap;
  color: #974d0c;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--hcpr-radius-pill, 999px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 2;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid #f7c9a1;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card-body {
  padding: 20px 22px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card-body h4 {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--hcpr-plum-dark);
  margin: 0;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-desc {
  font-size: 16px;
  color: var(--hcpr-muted);
  line-height: 1.5;
  margin: 0;
  max-width: 280px;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-incentive-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  color: #974d0c;
  background: rgba(237, 126, 29, 0.1);
  padding: 5px 14px;
  border-radius: var(--hcpr-radius-pill, 999px);
  margin-top: 4px;
  width: fit-content;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-incentive-pill svg {
  width: 16px;
  height: 16px;
  stroke: #974d0c;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fl-node-5utgc24nspzj .hcp-tpl.service-nav-grid .svc-action {
  display: block;
  width: 100%;
  padding: 12px 18px;
  background: var(--hcpr-plum);
  color: #ffffff !important;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  margin-top: auto;
  transition: background 0.2s ease;
}
.fl-node-5utgc24nspzj .hcp-tpl.service-nav-grid .svc-action:hover {
  background: var(--hcpr-plum-deep);
}
.fl-node-5utgc24nspzj .hcp-tpl.service-nav-grid .svc-action svg {
  display: none;
}
.fl-node-5utgc24nspzj .hcp-tpl.service-nav-grid .svc-action::after {
  display: none !important;
}
.fl-node-5utgc24nspzj .hcp-tpl .svc-card--highlight {
  border: 1px solid var(--hcpr-line);
}
@media (max-width: 768px) {
  .fl-node-5utgc24nspzj .hcp-tpl .service-grid {
    grid-template-columns: 1fr;
  }
  .fl-node-5utgc24nspzj .hcp-tpl .svc-card:hover {
    transform: none;
  }
}
@media (max-width: 480px) {
  .fl-node-5utgc24nspzj .hcp-tpl .svc-card-body {
    padding: 16px 16px 8px;
  }
  .fl-node-5utgc24nspzj .hcp-tpl .svc-card-body h4 {
    font-size: 16px;
  }
  .fl-node-5utgc24nspzj .hcp-tpl .svc-desc {
    font-size: 16px;
  }
  .fl-node-5utgc24nspzj .hcp-tpl .svc-incentive-pill {
    font-size: 14px;
    padding: 4px 12px;
  }
  .fl-node-5utgc24nspzj .hcp-tpl .svc-action {
    padding: 12px 16px 16px;
  }
  .fl-node-5utgc24nspzj .hcp-tpl .svc-card-img-wrap {
    height: 160px;
  }
  .fl-node-5utgc24nspzj .hcp-tpl .wrap {
    padding: 0 16px;
  }
  .fl-node-5utgc24nspzj .hcp-tpl .section-head h2 {
    font-size: 1.4rem;
  }
}
.fl-node-5utgc24nspzj .hcp-tpl.service-nav-grid .svc-card:nth-child(n+7) {
  display: none !important;
}
@charset "UTF-8";
.fl-node-9q3wltvibmg6 {
  /* ============================================================
   Mapplic-generated UI — ported to the brandbook (HCPR-169)
   Targets Mapplic's runtime DOM via &-scoped descendant rules.
   ============================================================ */
  /* --- Town regions: brand plum, copper on hover, plum on active --- */
  /* --- Sidebar shell: §6.6 card surface --- */
  /* --- Search input (sidebar) --- */
  /* --- Directory list (sidebar town list) --- */
  /* --- Tooltip / town-detail card on click: §6.6 white card --- */
  /* "More" link styled as §6.1 secondary/outline button */
  /* --- Zoom controls --- */
  /* --- Map caption (block-owned) --- */
}
.fl-node-9q3wltvibmg6 {
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  line-height: 1.6;
  font-size: 16px;
  box-sizing: border-box;
  padding: var(--hcpr-section) 0;
  background: var(--hcpr-white);
}
.fl-node-9q3wltvibmg6 *, .fl-node-9q3wltvibmg6 *::before, .fl-node-9q3wltvibmg6 *::after {
  box-sizing: border-box;
  margin: 0;
}
.fl-node-9q3wltvibmg6 img {
  max-width: 100%;
  display: block;
}
.fl-node-9q3wltvibmg6 a {
  color: inherit;
}
.fl-node-9q3wltvibmg6 .wrap {
  width: 100%;
  max-width: var(--hcpr-max);
  margin: 0 auto;
  padding: 0 24px;
}
.fl-node-9q3wltvibmg6 h1, .fl-node-9q3wltvibmg6 h2, .fl-node-9q3wltvibmg6 h3 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  line-height: 1.15;
  color: var(--hcpr-plum-dark);
}
.fl-node-9q3wltvibmg6 .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 700;
  color: var(--hcpr-copper);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fl-node-9q3wltvibmg6 .eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--hcpr-copper);
  opacity: 0.5;
}
.fl-node-9q3wltvibmg6 .section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}
.fl-node-9q3wltvibmg6 .section-head p {
  font-size: 16px;
  color: var(--hcpr-muted);
  max-width: 580px;
  margin-bottom: 0;
}
.fl-node-9q3wltvibmg6 .section-head {
  margin-bottom: 32px;
}
.fl-node-9q3wltvibmg6 .map-viewport {
  position: relative;
  width: 100%;
  min-height: 360px;
  border-radius: var(--hcpr-radius);
  overflow: hidden;
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line-strong);
  box-shadow: var(--hcpr-shadow);
}
.fl-node-9q3wltvibmg6 .map-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 0;
}
.fl-node-9q3wltvibmg6 .map-loading-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--hcpr-radius-md);
  background: var(--hcpr-plum-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fl-node-9q3wltvibmg6 .map-loading-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
}
.fl-node-9q3wltvibmg6 .map-loading-text {
  font-size: 16px;
  color: var(--hcpr-muted);
  font-weight: 500;
}
.fl-node-9q3wltvibmg6 .map-viewport > .map-widget, .fl-node-9q3wltvibmg6 .map-viewport > iframe, .fl-node-9q3wltvibmg6 .map-viewport > [class*="mapplic"] {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.fl-node-9q3wltvibmg6 .map-fallback-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fl-node-9q3wltvibmg6 .map-fallback-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fl-node-9q3wltvibmg6 .mapplic-map svg polygon.mapplic-clickable, .fl-node-9q3wltvibmg6 .mapplic-map svg path.mapplic-clickable {
  fill: var(--hcpr-plum) !important;
  stroke: #fff !important;
  stroke-width: 0.8px;
  stroke-opacity: 0.9;
  transition: fill 0.2s ease, stroke 0.2s ease;
}
.fl-node-9q3wltvibmg6 .mapplic-map svg polygon.mapplic-clickable:hover, .fl-node-9q3wltvibmg6 .mapplic-map svg path.mapplic-clickable:hover {
  fill: color-mix(in srgb, var(--hcpr-plum) 55%, var(--hcpr-copper)) !important;
  stroke: #fff !important;
  stroke-opacity: 0.9;
}
.fl-node-9q3wltvibmg6 .mapplic-map svg polygon.mapplic-active, .fl-node-9q3wltvibmg6 .mapplic-map svg path.mapplic-active, .fl-node-9q3wltvibmg6 .mapplic-map svg polygon.mapplic-clickable.mapplic-active, .fl-node-9q3wltvibmg6 .mapplic-map svg path.mapplic-clickable.mapplic-active {
  fill: var(--hcpr-copper) !important;
  stroke: #fff !important;
  stroke-width: 1.2px;
  stroke-opacity: 1;
}
.fl-node-9q3wltvibmg6 .mapplic-sidebar {
  background: var(--hcpr-white);
  border: 0;
  border-right: 1px solid var(--hcpr-line);
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  font-family: var(--hcpr-sans);
  color: var(--hcpr-plum-dark);
  overflow-y: auto;
  overflow-x: hidden;
}
.fl-node-9q3wltvibmg6 .mapplic-sidebar-header {
  border-bottom: 1px solid var(--hcpr-line);
  padding: 6px 8px;
}
.fl-node-9q3wltvibmg6 .mapplic-sidebar-header .mapplic-icon-magnifier {
  color: var(--hcpr-muted);
}
.fl-node-9q3wltvibmg6 .mapplic-search-input {
  font-family: var(--hcpr-sans) !important;
  font-size: 16px !important;
  color: var(--hcpr-plum-dark) !important;
  background: var(--hcpr-white);
  border: 1px solid transparent;
  border-radius: var(--hcpr-radius-sm);
  outline: none;
}
.fl-node-9q3wltvibmg6 .mapplic-search-input::placeholder {
  color: var(--hcpr-muted);
  opacity: 0.8;
}
.fl-node-9q3wltvibmg6 .mapplic-search-input:focus {
  box-shadow: var(--hcpr-focus-ring);
  border-color: var(--hcpr-copper);
}
.fl-node-9q3wltvibmg6 .mapplic-search-toggle .mapplic-icon-filter, .fl-node-9q3wltvibmg6 .mapplic-search-clear .mapplic-icon-cross {
  color: var(--hcpr-muted);
}
.fl-node-9q3wltvibmg6 .mapplic-search-clear:hover .mapplic-icon-cross, .fl-node-9q3wltvibmg6 .mapplic-search-toggle:hover .mapplic-icon-filter {
  color: var(--hcpr-copper);
}
.fl-node-9q3wltvibmg6 .mapplic-list-container {
  font-family: var(--hcpr-sans);
}
.fl-node-9q3wltvibmg6 .mapplic-dir-item {
  border-bottom: 1px solid var(--hcpr-line);
}
.fl-node-9q3wltvibmg6 .mapplic-dir-item:last-child {
  border-bottom: 0;
}
.fl-node-9q3wltvibmg6 .mapplic-dir-item a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--hcpr-plum-dark);
  border-left: 3px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.fl-node-9q3wltvibmg6 .mapplic-dir-item a:hover {
  background: var(--hcpr-plum-tint);
  border-left-color: var(--hcpr-copper);
}
.fl-node-9q3wltvibmg6 .mapplic-dir-item h4 {
  font-family: var(--hcpr-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: var(--hcpr-plum-dark);
  margin: 0;
}
.fl-node-9q3wltvibmg6 .mapplic-dir-item .mapplic-about {
  font-family: var(--hcpr-sans);
  font-size: 14px;
  color: var(--hcpr-muted);
}
.fl-node-9q3wltvibmg6 .mapplic-tooltip {
  font-family: var(--hcpr-sans);
}
.fl-node-9q3wltvibmg6 .mapplic-tooltip-wrap {
  background: var(--hcpr-white) !important;
  border: 1px solid var(--hcpr-line);
  border-radius: var(--hcpr-radius) !important;
  box-shadow: var(--hcpr-shadow-lg);
  overflow: hidden;
  color: var(--hcpr-plum-dark);
}
.fl-node-9q3wltvibmg6 .mapplic-tooltip-triangle {
  background: var(--hcpr-white) !important;
  border: 1px solid var(--hcpr-line);
  border-top: 0;
  border-left: 0;
}
.fl-node-9q3wltvibmg6 .mapplic-tooltip-body {
  padding: 20px;
}
.fl-node-9q3wltvibmg6 .mapplic-tooltip-title {
  font-family: var(--hcpr-serif) !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  color: var(--hcpr-plum-dark) !important;
  margin: 0 0 8px !important;
}
.fl-node-9q3wltvibmg6 .mapplic-tooltip-description, .fl-node-9q3wltvibmg6 .mapplic-tooltip-content {
  font-family: var(--hcpr-sans) !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  color: var(--hcpr-plum-dark) !important;
}
.fl-node-9q3wltvibmg6 .mapplic-tooltip-close .mapplic-icon-cross {
  color: var(--hcpr-muted);
}
.fl-node-9q3wltvibmg6 .mapplic-tooltip-close:hover .mapplic-icon-cross {
  color: var(--hcpr-copper);
}
.fl-node-9q3wltvibmg6 .mapplic-popup-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 10px 20px;
  border-radius: var(--hcpr-radius-md);
  border: 1px solid var(--hcpr-plum);
  background: transparent;
  color: var(--hcpr-plum) !important;
  font-family: var(--hcpr-sans);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.fl-node-9q3wltvibmg6 .mapplic-popup-link:hover {
  transform: translateY(-2px);
  background: var(--hcpr-plum-tint);
  box-shadow: var(--hcpr-shadow);
}
.fl-node-9q3wltvibmg6 .mapplic-zoom-buttons .mapplic-button {
  background: var(--hcpr-white);
  border: 1px solid var(--hcpr-line);
  color: var(--hcpr-plum-dark);
  border-radius: var(--hcpr-radius-sm);
}
.fl-node-9q3wltvibmg6 .mapplic-zoom-buttons .mapplic-button:hover {
  border-color: var(--hcpr-copper);
  color: var(--hcpr-copper);
}
.fl-node-9q3wltvibmg6 .map-caption {
  margin-top: 20px;
  padding: 14px 18px;
  background: var(--hcpr-white);
  border-radius: var(--hcpr-radius-md);
  border: 1px solid var(--hcpr-line);
  font-size: 16px;
  color: var(--hcpr-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.fl-node-9q3wltvibmg6 .map-caption svg {
  width: 18px;
  height: 18px;
  stroke: var(--hcpr-copper);
  flex-shrink: 0;
  margin-top: 2px;
}
.fl-node-9q3wltvibmg6.map-container--wide .wrap {
  max-width: 1280px;
}
.fl-node-9q3wltvibmg6.map-container--wide .map-viewport {
  min-height: 420px;
}
@media (max-width: 768px) {
  .fl-node-9q3wltvibmg6 .map-viewport {
    min-height: 280px;
  }
}
@media (max-width: 375px) {
  .fl-node-9q3wltvibmg6 {
    padding: 2.5rem 0;
  }
  .fl-node-9q3wltvibmg6 .wrap {
    padding: 0 16px;
  }
}
.fl-node-9q3wltvibmg6 .block-label {
  display: none !important;
}
.fl-node-9w67z3hbxrlf {
  --eb-check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  display: block;
}
.fl-node-9w67z3hbxrlf .eb-seg__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--hcpr-radius-sm);
  background: rgba(237, 126, 29, 0.1);
  color: var(--hcpr-plum-dark);
  margin: 0 0 14px;
}
.fl-node-9w67z3hbxrlf .eb-seg__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}
.fl-node-9w67z3hbxrlf .eb-seg__head {
  font-family: var(--hcpr-serif);
  font-size: 1.12rem;
  line-height: 1.28;
  color: var(--hcpr-plum);
  font-weight: 700;
  margin: 0 0 7px;
}
.fl-node-9w67z3hbxrlf .eb-seg__text {
  font-family: var(--hcpr-sans);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--hcpr-muted);
  margin: 0;
}
.fl-node-9w67z3hbxrlf .eb-seg__text p {
  margin: 0 0 0.55em;
}
.fl-node-9w67z3hbxrlf .eb-seg__text p:last-child {
  margin-bottom: 0;
}
.fl-node-9w67z3hbxrlf .eb-seg__text ul {
  list-style: none;
  margin: 0.55em 0 0;
  padding: 0;
}
.fl-node-9w67z3hbxrlf .eb-seg__text li {
  position: relative;
  padding-left: 26px;
  margin: 0 0 0.35em;
  font-size: 0.97rem;
  line-height: 1.45;
  color: var(--hcpr-muted);
}
.fl-node-9w67z3hbxrlf .eb-seg__text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 15px;
  height: 15px;
  background-color: var(--hcpr-copper);
  -webkit-mask: var(--eb-check) center / contain no-repeat;
  mask: var(--eb-check) center / contain no-repeat;
}
.fl-node-9w67z3hbxrlf .eb-seg__img {
  display: block;
  width: 100%;
  margin-top: 12px;
  border-radius: var(--hcpr-radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--hcpr-shadow-soft);
}
/* Equal height Column Bottom Alignment */
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
          -webkit-box-align: end;
           -webkit-box-pack: end;
              -ms-flex-pack: end;
}

/* H1-H6 Margin Reset in all Modules */
.uabb-module-content h1,
.uabb-module-content h2,
.uabb-module-content h3,
.uabb-module-content h4,
.uabb-module-content h5,
.uabb-module-content h6 {
    margin: 0;
    clear: both;
}

/* Anchor Tag Css */

.fl-module-content a,
.fl-module-content a:hover,
.fl-module-content a:focus {
    text-decoration: none;
}

/* Row Separator CSS */

.uabb-row-separator {
    position: absolute;
    width: 100%;
    left: 0;
}

.uabb-top-row-separator {
    top: 0;
    bottom: auto
}

.uabb-bottom-row-separator {
    top: auto;
    bottom: 0;
}

.fl-builder-content-editing .fl-visible-medium.uabb-row,
.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
.fl-builder-content-editing .fl-visible-mobile.uabb-row {
    display: none !important;
}

@media (max-width: 992px) {

    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: block !important;
    }
}

.fl-responsive-preview-content .fl-builder-content-editing {
    overflow-x: hidden;
    overflow-y: visible;
}

.uabb-row-separator svg {
    width: 100%;
}

.uabb-top-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    top: -1px;
    bottom: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    bottom: -1px;
    top: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {
    bottom: 0;
}
.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {
    top: 0;
}

/**
 *
 *  Svg Triangle Separator
 *  Big Triangle Separator
 *  Big Triangle Left Separator
 *  Svg Half Circle Separator
 *  Curve Center Separator
 *  Waves Separator
 *  Stamp
 *  Grass
 *  Slime
 *  Grass Bend
 *  Wave Slide
 *  Muliple Triangles
 *  Pine Tree
 *  Pine Tree Bend
 *
 ***************************************/
.uabb-bottom-row-separator.uabb-svg-triangle svg,
.uabb-bottom-row-separator.uabb-xlarge-triangle svg,
.uabb-top-row-separator.uabb-xlarge-triangle-left svg,
.uabb-bottom-row-separator.uabb-svg-circle svg,
.uabb-top-row-separator.uabb-slime-separator svg,
.uabb-top-row-separator.uabb-grass-separator svg,
.uabb-top-row-separator.uabb-grass-bend-separator svg,
.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,
.uabb-top-row-separator.uabb-wave-slide-separator svg,
.uabb-top-row-separator.uabb-pine-tree-separator svg,
.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,
.uabb-bottom-row-separator.uabb-stamp-separator svg,
.uabb-bottom-row-separator.uabb-xlarge-circle svg,
.uabb-top-row-separator.uabb-wave-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

/*
 *  Big Triangle
*/
.uabb-bottom-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: scale(1) scaleY(-1) translateX(-50%);
       -moz-transform: scale(1) scaleY(-1) translateX(-50%);
        -ms-transform: scale(1) scaleY(-1) translateX(-50%);
         -o-transform: scale(1) scaleY(-1) translateX(-50%);
            transform: scale(1) scaleY(-1) translateX(-50%);
}

.uabb-top-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
       -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
         -o-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
}

/**
 *
 *  Big Triangle Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

/**
 *
 *  Curve Left Separator
 *  Curve Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-curve-up-separator svg {
    left: 50%;
     -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-top-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}


/**
 *
 *  Tilt Left Separator
 *  Tilt Right Separator
 *
 ***************************************/

.uabb-top-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-top-row-separator.uabb-tilt-right-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-tilt-right-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

.uabb-top-row-separator.uabb-tilt-left-separator,
.uabb-top-row-separator.uabb-tilt-right-separator {
    top: 0;
}

.uabb-bottom-row-separator.uabb-tilt-left-separator,
.uabb-bottom-row-separator.uabb-tilt-right-separator {
    bottom: 0;
}

/**
 *
 *  Clouds Separator
 *  Multi Triangle
 *  Arrow Inward
 *  Arrow Outward
 *
 ***************************************/

.uabb-top-row-separator.uabb-arrow-outward-separator svg,
.uabb-top-row-separator.uabb-arrow-inward-separator svg,
.uabb-top-row-separator.uabb-cloud-separator svg,
.uabb-top-row-separator.uabb-multi-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-multi-triangle svg {
    bottom: -2px;
}

.uabb-row-separator.uabb-round-split:after,
.uabb-row-separator.uabb-round-split:before {
    left: 0;
    width: 50%;
    background: inherit inherit/inherit inherit inherit inherit;
    content: '';
    position: absolute
}


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

.uabb-button-wrap a,
.uabb-button-wrap a:visited {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    text-shadow: none;
}

.fl-builder-content .uabb-button:hover {
    text-decoration: none;
}

.fl-builder-content .uabb-button-width-full .uabb-button {
    display: block;
    text-align: center;
}

.uabb-button-width-custom .uabb-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.fl-builder-content .uabb-button-left {
    text-align: left;
}
.fl-builder-content .uabb-button-center {
    text-align: center;
}
.fl-builder-content .uabb-infobox .uabb-button-center,
.fl-builder-content .uabb-modal-action-wrap .uabb-button-center,
.fl-builder-content .uabb-ultb3-box .uabb-button-center,
.fl-builder-content .uabb-slide-down .uabb-button-center,
.fl-builder-content .uabb-blog-post-content .uabb-button-center,
.fl-builder-content .uabb-cta-wrap .uabb-button-center,
.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center{ 
     text-align: inherit;
}

.fl-builder-content .uabb-button-right {
    text-align: right;
}

.fl-builder-content .uabb-button i,
.fl-builder-content .uabb-button i:before {
    font-size: 1em;
    height: 1em;
    line-height: 1em;
    width: 1em;
}

.uabb-button .uabb-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-button .uabb-button-icon-before {
    margin-left: 0;
    margin-right: 8px;
}
.uabb-button .uabb-button-icon-no-text {
    margin: 0;
}
.uabb-button-has-icon .uabb-button-text {
    vertical-align: middle;
}

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

.uabb-icon-wrap {
    display: inline-block;
}
.uabb-icon a {
    text-decoration: none;
}
.uabb-icon i {
    display: block;
}
.uabb-icon i:before {
    border: none !important;
    background: none !important;
}
.uabb-icon-text {
    display: table-cell;
    text-align: left;
    padding-left: 15px;
    vertical-align: middle;
}
.uabb-icon-text *:last-child {
    margin: 0 !important;
    padding: 0 !important;
}
.uabb-icon-text a {
    text-decoration: none;
}

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

.uabb-photo {
    line-height: 0;
    position: relative;
    z-index: 2;
}
.uabb-photo-align-left {
    text-align: left;
}
.uabb-photo-align-center {
    text-align: center;
}
.uabb-photo-align-right {
    text-align: right;
}
.uabb-photo-content {
    border-radius: 0;
    display: inline-block;
    line-height: 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.uabb-photo-content img {
    border-radius: inherit;
    display: inline;
    height: auto;
    max-width: 100%;
    width: auto;
}
.fl-builder-content .uabb-photo-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-photo-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.uabb-photo-caption {
    font-size: 13px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.uabb-photo-caption-below {
    padding-bottom: 20px;
    padding-top: 10px;
}
.uabb-photo-caption-hover {
    background: rgba(0,0,0,0.7);
    bottom: 0;
    color: #fff;
    left: 0;
    opacity: 0;
    visibility: hidden;
    filter: alpha(opacity = 0);
    padding: 10px 15px;
    position: absolute;
    right: 0;
    -webkit-transition:visibility 200ms linear;
    -moz-transition:visibility 200ms linear;
    transition:visibility 200ms linear;
}
.uabb-photo-content:hover .uabb-photo-caption-hover {
    opacity: 100;
    visibility: visible;
}

/* Panel & Buttons
------------------------------------------------------ */
.uabb-active-btn {
    background: #1e8cbe;
    border-color: #0074a2;
    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    color: white;
}
.fl-builder-bar .fl-builder-add-content-button {
    display: block !important;
    opacity: 1 !important;
}

/* Image Icon Object */
.uabb-imgicon-wrap .uabb-icon {
    display: block;
}
.uabb-imgicon-wrap .uabb-icon i{
    float: none;
}

/* Photo */
.uabb-imgicon-wrap .uabb-image {
    line-height: 0;
    position: relative;
}
.uabb-imgicon-wrap .uabb-image-align-left {
    text-align: left;
}
.uabb-imgicon-wrap .uabb-image-align-center {
    text-align: center;
}
.uabb-imgicon-wrap .uabb-image-align-right {
    text-align: right;
}
.uabb-imgicon-wrap .uabb-image-content {
    display: inline-block;
    border-radius: 0;
    line-height: 0;
    position: relative;
    max-width: 100%;
}
.uabb-imgicon-wrap .uabb-image-content img {
    display: inline;
    height: auto !important;
    max-width: 100%;
    width: auto;
    border-radius: inherit;
    box-shadow: none;
    box-sizing: content-box;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}


/* Creative Button
___________________________________________________________________________*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    background: #fafafa;
    border: 1px solid #ccc;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;

}

.uabb-creative-button-wrap a:focus {
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
}

.uabb-creative-button-wrap a .uabb-creative-button-text,
.uabb-creative-button-wrap a .uabb-creative-button-icon,
.uabb-creative-button-wrap a:visited .uabb-creative-button-text,
.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button-wrap a:hover {
    text-decoration: none;
}

.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {
    display: block;
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.uabb-creative-button-wrap .uabb-creative-button-left {
    text-align: left;
}
.uabb-creative-button-wrap .uabb-creative-button-center {
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-right {
    text-align: right;
}
.uabb-creative-button-wrap .uabb-creative-button i {
    font-size: 1.3em;
    height: auto;
    vertical-align: middle;
    width: auto;
}

.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {
    margin-right: 8px;
    margin-left: 0;
}
.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {
    margin: 0;
}

.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {
    vertical-align: middle;
}
.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    padding: 12px 24px;
}

/*  Translate Button styles */

.uabb-creative-button.uabb-creative-transparent-btn {
    background: transparent;
}
.uabb-creative-button.uabb-creative-transparent-btn:after {
    content: '';
    position: absolute;
    z-index: 1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

/* transparent-fill-top, transparent-fill-bottom  */
.uabb-transparent-fill-top-btn:after,
.uabb-transparent-fill-bottom-btn:after {
    width: 100%;
    height: 0;
    left: 0;
}

/* transparent-fill-top */
.uabb-transparent-fill-top-btn:after {
    top: 0;
}
/* transparent-fill-bottom */
.uabb-transparent-fill-bottom-btn:after {
    bottom: 0;
}

/* transparent-fill-left, transparent-fill-right */
.uabb-transparent-fill-left-btn:after,
.uabb-transparent-fill-right-btn:after {
    width: 0;
    height: 100%;
    top: 0;
}

/* transparent-fill-left */
.uabb-transparent-fill-left-btn:after {
    left: 0;
}
/* transparent-fill-right */
.uabb-transparent-fill-right-btn:after {
    right: 0;
}


/* transparent-fill-center */
.uabb-transparent-fill-center-btn:after{
    width: 0;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

/*  transparent-fill-diagonal, transparent-fill-horizontal  */
.uabb-transparent-fill-diagonal-btn:after,
.uabb-transparent-fill-horizontal-btn:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
}

/*  transparent-fill-diagonal */
.uabb-transparent-fill-diagonal-btn{
    overflow: hidden;
}
.uabb-transparent-fill-diagonal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
       -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
        -ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
         -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
            transform: translateX(-50%) translateY(-50%) rotate( 45deg );
}
/* transparent-fill-horizontal */
.uabb-transparent-fill-horizontal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}


/*  3D Button styles */
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}

.perspective {
    -webkit-perspective: 800px;
       -moz-perspective: 800px;
            perspective: 800px;
            margin: 0;
}
.uabb-creative-button.uabb-creative-threed-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button.uabb-creative-threed-btn {
    outline: 1px solid transparent;
    -webkit-transform-style: preserve-3d;
       -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/*  3D Button styles --- Animate to top */
.uabb-creative-threed-btn.uabb-animate_top-btn:after {
    height: 40%;
    left: 0;
    top: -40%;
    width: 100%;
    -webkit-transform-origin: 0% 100%;
       -moz-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: rotateX(90deg);
       -moz-transform: rotateX(90deg);
            transform: rotateX(90deg);
}

/*  3D Button styles --- Animate to bottom */
.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {
    width: 100%;
    height: 40%;
    left: 0;
    top: 100%;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateX(-90deg);
       -moz-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
}

/*  3D Button styles --- Animate to Left */
.uabb-creative-threed-btn.uabb-animate_left-btn:after {
    width: 20%;
    height: 100%;
    left: -20%;
    top: 0;
    -webkit-transform-origin: 100% 0%;
       -moz-transform-origin: 100% 0%;
        -ms-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-transform: rotateY(-60deg);
       -moz-transform: rotateY(-60deg);
        -ms-transform: rotateY(-60deg);
            transform: rotateY(-60deg);
}

/*  3D Button styles --- Animate to Right */
.uabb-creative-threed-btn.uabb-animate_right-btn:after {
    width: 20%;
    height: 100%;
    left: 104%;
    top: 0;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateY(120deg);
       -moz-transform: rotateY(120deg);
        -ms-transform: rotateY(120deg);
            transform: rotateY(120deg);
}


/* Animate Top */
.uabb-animate_top-btn:hover{
    -webkit-transform: rotateX(-15deg);
       -moz-transform: rotateX(-15deg);
        -ms-transform: rotateX(-15deg);
         -o-transform: rotateX(-15deg);
            transform: rotateX(-15deg);

}

/* Animate Bottom */
.uabb-animate_bottom-btn:hover{
    -webkit-transform: rotateX(15deg);
       -moz-transform: rotateX(15deg);
        -ms-transform: rotateX(15deg);
         -o-transform: rotateX(15deg);
            transform: rotateX(15deg);

}

/* Animate Left */
.uabb-animate_left-btn:hover{
    -webkit-transform: rotateY(6deg);
       -moz-transform: rotateY(6deg);
        -ms-transform: rotateY(6deg);
         -o-transform: rotateY(6deg);
            transform: rotateY(6deg);
}

/* Animate Right */
.uabb-animate_right-btn:hover{
    -webkit-transform: rotateY(-6deg);
       -moz-transform: rotateY(-6deg);
        -ms-transform: rotateY(-6deg);
         -o-transform: rotateY(-6deg);
            transform: rotateY(-6deg);

}

/*  Flat Button styles  */

/*  Common Classes  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn,
.uabb-creative-flat-btn.uabb-animate_to_left-btn,
.uabb-creative-flat-btn.uabb-animate_from_top-btn,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {
    overflow: hidden;
    position: relative;
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    bottom: 0;
    height: 100%;
    margin: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    width: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*  Making Icon position center  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/*  Common Hover Classes */
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {
    left: 0;
}
.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {
    top: 0;
}

/*  Animate Icon to the right */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i {
    top: 0;
    left: -100%;
}
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {
    -webkit-transform: translateX(200%);
       -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
         -o-transform: translateX(200%);
            transform: translateX(200%);
}

/*  Animate Icon to the left */
.uabb-creative-flat-btn.uabb-animate_to_left-btn i {
    top: 0;
    left: 100%;
}

.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {
    -webkit-transform: translateX(-200%);
       -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
         -o-transform: translateX(-200%);
            transform: translateX(-200%);
}


/*  Animate Icon From the Top */
.uabb-creative-flat-btn.uabb-animate_from_top-btn i {
    top: -100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {
    -webkit-transform: translateY(400px);
       -moz-transform: translateY(400px);
        -ms-transform: translateY(400px);
         -o-transform: translateY(400px);
            transform: translateY(400px);
}

/*  Animate Icon From the Bottom */
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    top: 100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {
    -webkit-transform: translateY(-400px);
       -moz-transform: translateY(-400px);
        -ms-transform: translateY(-400px);
         -o-transform: translateY(-400px);
            transform: translateY(-400px);
}

/* Media/Video CSS */
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode, 
.uabb-tab-acc-content .mejs-container:not(.mejs-audio), 
.uabb-tab-acc-content .mejs-overlay.load,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode, 
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio), 
.uabb-adv-accordion-content .mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio),
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {
    padding-top: 56.25%;
}
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode {
    max-width: 100% !important;
}
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content video.wp-video-shortcode {
    position: relative;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.uabb-tab-acc-content .mejs-overlay-play,
.uabb-adv-accordion-content .mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}
.fl-row-content-wrap .uabb-row-particles-background,
.uabb-col-particles-background {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
/* Theme Button
------------------------------------------------------ */
/*.fl-builder-content a.uabb-button,
.fl-builder-content a.uabb-button:visited,
.fl-builder-content a.uabb-creative-button,
.fl-builder-content a.uabb-creative-button:visited*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
		font-family: inherit;
			font-weight: inherit;
	
	
	
	
	}

.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
		font-family: inherit;
			font-weight: inherit;
		
	
	
	}


/* Responsive Js Breakpoint Css */

.uabb-js-breakpoint {
	content:"default";
	display:none;
}
@media screen and (max-width: 992px) {
	.uabb-js-breakpoint {
		content:"992";
	}
}

@media screen and (max-width: 768px) {
	.uabb-js-breakpoint {
		content:"768";
	}
}


																																																																																										