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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 767px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 1520px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 104px;
	padding-right: 200px;
	padding-bottom: 104px;
	padding-left: 200px;
}
@media(max-width: 1440px) {
	.fl-row[data-node] > .fl-row-content-wrap {
		padding-right: 100px;
		padding-left: 100px;
	}
}
@media(max-width: 991px) {
	.fl-row[data-node] > .fl-row-content-wrap {
		padding-top: 64px;
		padding-right: 40px;
		padding-bottom: 64px;
		padding-left: 40px;
	}
}
@media(max-width: 767px) {
	.fl-row[data-node] > .fl-row-content-wrap {
		padding-right: 20px;
		padding-left: 20px;
	}
}
:root {
	--fl-global-text-color: #171717;
	--fl-global-text-font-family: "Exo 2", sans-serif;
	--fl-global-text-font-weight: 400;
	--fl-global-text-font-size: 1rem;
	--fl-global-text-line-height: 1.6em;
	--fl-global-h1-font-weight: 700;
	--fl-global-h1-font-size: 3.5rem;
	--fl-global-h1-line-height: 1.2em;
	--fl-global-h1-letter-spacing: -1.06px;
	--fl-global-h1-font-size-medium: 2.5rem;
	--fl-global-h1-line-height-medium: 1.2em;
	--fl-global-h1-letter-spacing-medium: -0.84px;
	--fl-global-h2-font-weight: 700;
	--fl-global-h2-font-size: 2.5rem;
	--fl-global-h2-line-height: 1.4em;
	--fl-global-h2-letter-spacing: -0.84px;
	--fl-global-h2-font-size-medium: 2rem;
	--fl-global-h2-line-height-medium: 1.2em;
	--fl-global-h2-letter-spacing-medium: -0.61px;
	--fl-global-h3-font-weight: 700;
	--fl-global-h3-font-size: 2rem;
	--fl-global-h3-line-height: 1.4em;
	--fl-global-h3-letter-spacing: -0.61px;
	--fl-global-h3-font-size-medium: 1.5rem;
	--fl-global-h3-line-height-medium: 1.6em;
	--fl-global-h3-letter-spacing-medium: -0.46px;
	--fl-global-h4-font-weight: 700;
	--fl-global-h4-font-size: 1.5rem;
	--fl-global-h4-line-height: 1.4;
	--fl-global-h4-letter-spacing: -0.41px;
	--fl-global-h4-font-size-medium: 1.25rem;
	--fl-global-h4-line-height-medium: 1.2em;
	--fl-global-h4-letter-spacing-medium: -0.34px;
	--fl-global-h5-font-weight: 700;
	--fl-global-h5-font-size: 1.25rem;
	--fl-global-h5-line-height: 1.4em;
	--fl-global-h5-letter-spacing: -0.28px;
	--fl-global-h5-font-size-medium: 1.125rem;
	--fl-global-h5-line-height-medium: 1.6em;
	--fl-global-h5-letter-spacing-medium: -0.25px;
	--fl-global-h6-font-weight: 700;
	--fl-global-h6-font-size: 1rem;
	--fl-global-h6-line-height: 1.6em;
	--fl-global-h6-letter-spacing: -0.16px;
	--fl-global-h6-font-size-medium: 1rem;
	--fl-global-h6-line-height-medium: 1.6em;
	--fl-global-h6-letter-spacing-medium: 0.12px;
}
.fl-builder-content:not(.fl-builder-empty) {
	color: #171717;
	font-family: "Exo 2", sans-serif;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.6em;
}
.fl-builder-content h1 {
	font-weight: 700;
	font-size: 3.5rem;
	line-height: 1.2em;
	letter-spacing: -1.06px;
}
.fl-builder-content h2 {
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1.4em;
	letter-spacing: -0.84px;
}
.fl-builder-content h3 {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.4em;
	letter-spacing: -0.61px;
}
.fl-builder-content h4 {
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.4;
	letter-spacing: -0.41px;
}
.fl-builder-content h5 {
	font-weight: 700;
	font-size: 1.25rem;
	line-height: 1.4em;
	letter-spacing: -0.28px;
}
.fl-builder-content h6 {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.6em;
	letter-spacing: -0.16px;
}
@media(max-width: 991px) {
	.fl-builder-content h1 {
		font-size: 2.5rem;
		line-height: 1.2em;
		letter-spacing: -0.84px;
	}
	.fl-builder-content h2 {
		font-size: 2rem;
		line-height: 1.2em;
		letter-spacing: -0.61px;
	}
	.fl-builder-content h3 {
		font-size: 1.5rem;
		line-height: 1.6em;
		letter-spacing: -0.46px;
	}
	.fl-builder-content h4 {
		font-size: 1.25rem;
		line-height: 1.2em;
		letter-spacing: -0.34px;
	}
	.fl-builder-content h5 {
		font-size: 1.125rem;
		line-height: 1.6em;
		letter-spacing: -0.25px;
	}
	.fl-builder-content h6 {
		font-size: 1rem;
		line-height: 1.6em;
		letter-spacing: 0.12px;
	}
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }




.fl-node-n9lerw5fhpud > .fl-row-content-wrap {
	background-color: #F1F8FF;
}
 .fl-node-n9lerw5fhpud > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:200px;
	padding-bottom:0px;
	padding-left:200px;
}
@media ( max-width: 1440px ) {
 .fl-node-n9lerw5fhpud.fl-row > .fl-row-content-wrap {
	padding-right:100px;
	padding-bottom:0px;
	padding-left:100px;
}
}
@media ( max-width: 991px ) {
 .fl-node-n9lerw5fhpud.fl-row > .fl-row-content-wrap {
	padding-right:40px;
	padding-bottom:0px;
	padding-left:40px;
}
}
@media ( max-width: 767px ) {
 .fl-node-n9lerw5fhpud.fl-row > .fl-row-content-wrap {
	padding-right:20px;
	padding-bottom:0px;
	padding-left:20px;
}
}





.fl-node-vek3qam7zui9 > .fl-row-content-wrap {
	background-color: #F1F8FF;
}
 .fl-node-vek3qam7zui9 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 1440px ) {
 .fl-node-vek3qam7zui9.fl-row > .fl-row-content-wrap {
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
@media ( max-width: 991px ) {
 .fl-node-vek3qam7zui9.fl-row > .fl-row-content-wrap {
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-vek3qam7zui9.fl-row > .fl-row-content-wrap {
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}





.fl-node-205a9id1encp > .fl-row-content-wrap {
	background-color: #38654e;
}
.fl-node-205a9id1encp .fl-row-content {
	max-width: 1307.57px;
}
 .fl-node-205a9id1encp > .fl-row-content-wrap {
	padding-top:0px;
}
@media ( max-width: 991px ) {
 .fl-node-205a9id1encp.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-205a9id1encp.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}





 .fl-node-put8rhoqylcb > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 1440px ) {
 .fl-node-put8rhoqylcb.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
@media ( max-width: 991px ) {
 .fl-node-put8rhoqylcb.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-put8rhoqylcb.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}





 .fl-node-h10jk97ouwld > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:40px;
}
@media ( max-width: 1440px ) {
 .fl-node-h10jk97ouwld.fl-row > .fl-row-content-wrap {
	padding-bottom:40px;
}
}
@media ( max-width: 991px ) {
 .fl-node-h10jk97ouwld.fl-row > .fl-row-content-wrap {
	padding-bottom:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-h10jk97ouwld.fl-row > .fl-row-content-wrap {
	padding-bottom:0px;
}
}





.fl-node-rl7hk5zpx3nw > .fl-row-content-wrap {
	background-color: #ffffff;
}
 .fl-node-rl7hk5zpx3nw > .fl-row-content-wrap {
	padding-top:0px;
}
@media ( max-width: 1440px ) {
 .fl-node-rl7hk5zpx3nw.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}
@media ( max-width: 991px ) {
 .fl-node-rl7hk5zpx3nw.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-rl7hk5zpx3nw.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}





 .fl-node-ksng46pa9dze > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:200px;
	padding-bottom:72px;
	padding-left:200px;
}
@media ( max-width: 1440px ) {
 .fl-node-ksng46pa9dze.fl-row > .fl-row-content-wrap {
	padding-right:100px;
	padding-bottom:72px;
	padding-left:100px;
}
}
@media ( max-width: 991px ) {
 .fl-node-ksng46pa9dze.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:40px;
	padding-bottom:80px;
	padding-left:40px;
}
}
@media ( max-width: 767px ) {
 .fl-node-ksng46pa9dze.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:60px;
	padding-left:20px;
}
}





.fl-node-pkg13mz9u5jb > .fl-row-content-wrap {
	background-color: #f1f8ff;
}
 .fl-node-pkg13mz9u5jb > .fl-row-content-wrap {
	padding-bottom:52px;
}
@media ( max-width: 991px ) {
 .fl-node-pkg13mz9u5jb.fl-row > .fl-row-content-wrap {
	padding-bottom:52px;
}
}
@media ( max-width: 767px ) {
 .fl-node-pkg13mz9u5jb.fl-row > .fl-row-content-wrap {
	padding-bottom:52px;
}
}





.fl-node-rhamt2g7ozu4 > .fl-row-content-wrap {
	background-color: #f1f8ff;
}
 .fl-node-rhamt2g7ozu4 > .fl-row-content-wrap {
	padding-top:0px;
}
@media ( max-width: 1440px ) {
 .fl-node-rhamt2g7ozu4.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}
@media ( max-width: 991px ) {
 .fl-node-rhamt2g7ozu4.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-rhamt2g7ozu4.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}





.fl-node-es8qv5rzt9gw > .fl-row-content-wrap {
	background-color: #38654e;
}





 .fl-node-z6yd04kgn1r2 > .fl-row-content-wrap {
	margin-top:-3px;
}
 .fl-node-z6yd04kgn1r2 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 1440px ) {
 .fl-node-z6yd04kgn1r2.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
@media ( max-width: 991px ) {
 .fl-node-z6yd04kgn1r2.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-z6yd04kgn1r2.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}





 .fl-node-bq78mgrv1sxj > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 1440px ) {
 .fl-node-bq78mgrv1sxj.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
@media ( max-width: 991px ) {
 .fl-node-bq78mgrv1sxj.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-bq78mgrv1sxj.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}





 .fl-node-pfsgdx2hznr6 > .fl-row-content-wrap {
	padding-top:0px;
}
@media ( max-width: 991px ) {
 .fl-node-pfsgdx2hznr6.fl-row > .fl-row-content-wrap {
	padding-bottom:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-pfsgdx2hznr6.fl-row > .fl-row-content-wrap {
	padding-bottom:0px;
}
}





.fl-node-1n8i5dxu6yto > .fl-row-content-wrap {
	background-color: #ffffff;
}
 .fl-node-1n8i5dxu6yto > .fl-row-content-wrap {
	padding-top:0px;
}
@media ( max-width: 1440px ) {
 .fl-node-1n8i5dxu6yto.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}
@media ( max-width: 991px ) {
 .fl-node-1n8i5dxu6yto.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-1n8i5dxu6yto.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}





 .fl-node-u58c1kz6phn7 > .fl-row-content-wrap {
	padding-top:0px;
}
@media ( max-width: 991px ) {
 .fl-node-u58c1kz6phn7.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-u58c1kz6phn7.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}





.fl-node-uvxas018dzqw > .fl-row-content-wrap {
	background-color: #488acc;
	background-image: url(https://elevate-hr-dev.huemortest.com/wp-content/uploads/2024/07/9b90990bfa878260c5d57315842c6fbe-1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-uvxas018dzqw > .fl-row-content-wrap:after {
	background-color: rgba(0,36,68,0.88);
}
.fl-node-uvxas018dzqw .fl-row-content {
	max-width: 606px;
}




.fl-node-m5cy1rp23zes {
	width: 100%;
}
 .fl-node-m5cy1rp23zes > .fl-col-content {
	padding-right:200px;
	padding-left:200px;
}
@media ( max-width: 1440px ) {
 .fl-node-m5cy1rp23zes.fl-col > .fl-col-content {
	padding-right:100px;
	padding-left:100px;
}
}
@media ( max-width: 991px ) {
 .fl-node-m5cy1rp23zes.fl-col > .fl-col-content {
	padding-right:80px;
	padding-left:80px;
}
}
@media ( max-width: 767px ) {
 .fl-node-m5cy1rp23zes.fl-col > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}
}




.fl-node-j5uykn80le3g {
	width: 100%;
}
 .fl-node-j5uykn80le3g > .fl-col-content {
	margin-top:104px;
}
@media ( max-width: 991px ) {
 .fl-node-j5uykn80le3g.fl-col > .fl-col-content {
	margin-top:0px;
}
}




.fl-node-c6qvgsdpj7ox {
	width: 48%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-c6qvgsdpj7ox {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media ( max-width: 991px ) {
 .fl-node-c6qvgsdpj7ox.fl-col > .fl-col-content {
	margin-bottom:32px;
}
}
@media ( max-width: 767px ) {
 .fl-node-c6qvgsdpj7ox.fl-col > .fl-col-content {
	margin-bottom:32px;
}
}
 .fl-node-c6qvgsdpj7ox > .fl-col-content {
	padding-right:32px;
}
@media ( max-width: 767px ) {
 .fl-node-c6qvgsdpj7ox.fl-col > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}
}




.fl-node-621mkbcxgsth {
	width: 100%;
}
.fl-node-621mkbcxgsth > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(23, 23, 23, 0.2);;
	border-top-width: 1px;
}
@media(max-width: 991px) {
	.fl-node-621mkbcxgsth > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: #f6f9fc;
		border-top-width: 0px;
	}
}
 .fl-node-621mkbcxgsth > .fl-col-content {
	padding-top:72px;
}
@media ( max-width: 1440px ) {
 .fl-node-621mkbcxgsth.fl-col > .fl-col-content {
	padding-top:72px;
}
}
@media ( max-width: 991px ) {
 .fl-node-621mkbcxgsth.fl-col > .fl-col-content {
	padding-top:80px;
}
}
@media ( max-width: 767px ) {
 .fl-node-621mkbcxgsth.fl-col > .fl-col-content {
	padding-top:40px;
}
}




.fl-node-7hsq2ukr6m5n {
	width: 100%;
}
 .fl-node-7hsq2ukr6m5n > .fl-col-content {
	padding-bottom:20px;
}




.fl-node-wsbepgrq6ank {
	width: 34%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-wsbepgrq6ank {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-wsbepgrq6ank > .fl-col-content {
	padding-right:96px;
}




.fl-node-kpted1onymwc {
	width: 100%;
}
 .fl-node-kpted1onymwc > .fl-col-content {
	padding-bottom:24px;
}
@media ( max-width: 991px ) {
 .fl-node-kpted1onymwc.fl-col > .fl-col-content {
	padding-bottom:16px;
}
}




.fl-node-gxbd25lharzs {
	width: 34%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-gxbd25lharzs {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-gxbd25lharzs > .fl-col-content {
	padding-right:96px;
}




.fl-node-dtopw51svam0 {
	width: 100%;
}
.fl-node-dtopw51svam0 > .fl-col-content {
	border-color: rgba(23, 23, 23, 0.2);;
}
@media(max-width: 991px) {
	.fl-node-dtopw51svam0 > .fl-col-content {
		border-style: solid;
		border-width: 0;
		background-clip: border-box;
		border-color: #f6f9fc;
		border-top-width: 0px;
	}
}
@media ( max-width: 1440px ) {
 .fl-node-dtopw51svam0.fl-col > .fl-col-content {
	padding-top:0px;
}
}
@media ( max-width: 991px ) {
 .fl-node-dtopw51svam0.fl-col > .fl-col-content {
	padding-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-dtopw51svam0.fl-col > .fl-col-content {
	padding-top:0px;
}
}




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




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




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




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




.fl-node-06w4vaflo5ds {
	width: 8%;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-06w4vaflo5ds {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 767px ) {
 .fl-node-06w4vaflo5ds.fl-col > .fl-col-content {
	margin-bottom:16px;
}
}




.fl-node-5dpbiy3c8vr1 {
	width: 100%;
}
.fl-node-5dpbiy3c8vr1 > .fl-col-content {
	background-image: url(https://elevate-hr-dev.huemortest.com/wp-content/uploads/2025/05/Mountain-River-image-4-v4-scaled.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-builder-content .fl-node-5dpbiy3c8vr1 > .fl-col-content {
	min-height: 520px;
}




.fl-node-s1a32rjlzg59 {
	width: 100%;
}
@media ( max-width: 991px ) {
 .fl-node-s1a32rjlzg59.fl-col > .fl-col-content {
	padding-top:40px;
}
}
@media ( max-width: 767px ) {
 .fl-node-s1a32rjlzg59.fl-col > .fl-col-content {
	padding-top:40px;
}
}




.fl-node-9kvm2axeq45c {
	width: 100%;
}
 .fl-node-9kvm2axeq45c > .fl-col-content {
	padding-bottom:20px;
}




.fl-node-82pdauibl7cf {
	width: 34%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-82pdauibl7cf {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-82pdauibl7cf > .fl-col-content {
	padding-right:96px;
}




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




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




.fl-node-3k2rj0ab5cvp {
	width: 100%;
}




.fl-node-dhi35q6zey0r {
	width: 100%;
}
 .fl-node-dhi35q6zey0r > .fl-col-content {
	margin-top:-120px;
}
@media ( max-width: 1440px ) {
 .fl-node-dhi35q6zey0r.fl-col > .fl-col-content {
	margin-top:-110px;
}
}
@media ( max-width: 991px ) {
 .fl-node-dhi35q6zey0r.fl-col > .fl-col-content {
	margin-top:-50px;
}
}




.fl-node-m9ux714zeihg {
	width: 52%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-m9ux714zeihg {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-m9ux714zeihg > .fl-col-content {
	margin-left:32px;
}
@media ( max-width: 991px ) {
 .fl-node-m9ux714zeihg.fl-col > .fl-col-content {
	margin-bottom:30px;
	margin-left:0px;
}
}




.fl-node-5aud8mbkwxtq {
	width: 66%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-5aud8mbkwxtq {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-cu8vqtbws65f {
	width: 66%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-cu8vqtbws65f {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-8sxifwhz52al {
	width: 92%;
}




.fl-node-g3a2jbrklvqp {
	width: 66%;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-g3a2jbrklvqp {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-7v8s0ijf5qob {
	width: 100%;
}




.fl-node-7nleuo86kd5i {
	width: 100%;
}




.fl-node-a7fqn10z65yr {
	width: 100%;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-i35p67rdykej h2.fl-heading a,
.fl-row .fl-col .fl-node-i35p67rdykej h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-i35p67rdykej h2.fl-heading .fl-heading-text *,
.fl-node-i35p67rdykej h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-i35p67rdykej.fl-module-heading .fl-heading {
	font-family: "Exo 2", sans-serif;
	font-weight: 300;
	line-height: 1.4;
}
 .fl-node-i35p67rdykej > .fl-module-content {
	margin-bottom:23px;
}
@media (max-width: 767px) { .fl-node-i35p67rdykej > .fl-module-content { margin-bottom:px; } }.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
	.fl-builder-content .fl-node-95st24rocufm .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-95st24rocufm .fl-module-content .fl-rich-text * {
		color: #3a6ea3;
	}
	.fl-builder-content .fl-node-95st24rocufm .fl-rich-text, .fl-builder-content .fl-node-95st24rocufm .fl-rich-text *:not(b, strong) {
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-95st24rocufm .fl-rich-text, .fl-builder-content .fl-node-95st24rocufm .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-95st24rocufm > .fl-module-content {
	margin-bottom:20px;
}
@media ( max-width: 767px ) {
 .fl-node-95st24rocufm.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}














.fl-node-h7yfld8rugsc.fl-button-wrap, .fl-node-h7yfld8rugsc .fl-button-wrap {
	text-align: left;
}
@media(max-width: 991px) {
	.fl-node-h7yfld8rugsc.fl-button-wrap, .fl-node-h7yfld8rugsc .fl-button-wrap {
		text-align: center;
	}
	.fl-builder-content .fl-node-h7yfld8rugsc a.fl-button, .fl-builder-content .fl-node-h7yfld8rugsc a.fl-button:visited, .fl-page .fl-builder-content .fl-node-h7yfld8rugsc a.fl-button, .fl-page .fl-builder-content .fl-node-h7yfld8rugsc a.fl-button:visited {
		text-align: center;
	}
}
@media ( max-width: 767px ) {
 .fl-node-h7yfld8rugsc.fl-module > .fl-module-content {
	margin-top:0px;
}
}
	.fl-builder-content .fl-node-onh4uafqmjt0 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-onh4uafqmjt0 .fl-module-content .fl-rich-text * {
		color: #488acc;
	}
	.fl-builder-content .fl-node-ef703mj8wrvs .fl-rich-text, .fl-builder-content .fl-node-ef703mj8wrvs .fl-rich-text *:not(b, strong) {
	letter-spacing: -0.28px;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-ef703mj8wrvs .fl-rich-text, .fl-builder-content .fl-node-ef703mj8wrvs .fl-rich-text *:not(b, strong) {
		letter-spacing: -0.25px;
	}
}
@media ( max-width: 991px ) {
 .fl-node-ef703mj8wrvs.fl-module > .fl-module-content {
	margin-top:32px;
}
}
@media (max-width: 767px) { .fl-node-ef703mj8wrvs > .fl-module-content { margin-top:px; } }.fl-row .fl-col .fl-node-fan6bpchz1l3 h4.fl-heading a,
.fl-row .fl-col .fl-node-fan6bpchz1l3 h4.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-fan6bpchz1l3 h4.fl-heading .fl-heading-text *,
.fl-node-fan6bpchz1l3 h4.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-fan6bpchz1l3.fl-module-heading .fl-heading {
	text-align: center;
}
.fl-animated.fl-fade-in {
	animation: fl-fade-in 1s ease;
	-webkit-animation: fl-fade-in 1s ease;
}
@-webkit-keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fl-builder-content .fl-node-5b2ci8lng6v3 .fl-rich-text, .fl-builder-content .fl-node-5b2ci8lng6v3 .fl-rich-text *:not(b, strong) {
	letter-spacing: -0.28px;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-5b2ci8lng6v3 .fl-rich-text, .fl-builder-content .fl-node-5b2ci8lng6v3 .fl-rich-text *:not(b, strong) {
		letter-spacing: -0.25px;
	}
}
@media ( max-width: 991px ) {
 .fl-node-5b2ci8lng6v3.fl-module > .fl-module-content {
	margin-top:32px;
}
}
@media (max-width: 767px) { .fl-node-5b2ci8lng6v3 > .fl-module-content { margin-top:px; } }/*variables*/
/*$Viewport-hh: 320px;
$Viewport-xs: 480px;
$Viewport-sm: 768px;
$Viewport-md: 992px;
$Viewport-lg: 1280px;
$Viewport-xl: 1600px;*/
/*mixins*/
.ServicesCards * {
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

.ServicesCards {
  /*background-image: url(/wp-content/themes/public/assets/img/_ServicesCards.jpg);
      background-position: center top;
      background-repeat: no-repeat;
      @include ServicesCards-inside-border(#48ff00);*/
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0px 0px 0px 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .ServicesCards {
    flex-direction: column;
    gap: 40px;
  }
}

.ServicesCards *:hover {
  text-decoration: none;
}

.ServicesCards-hide {
  display: none !important;
}

.ServicesCards-sidebar {
  width: calc(100% - 560px);
  margin-left: auto;
  /*@include ServicesCards-inside-border(#48ff00);*/
}
@media only screen and (max-width: 1350px) {
  .ServicesCards-sidebar {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .ServicesCards-sidebar {
    width: 100%;
    order: 2 !important;
  }
}

.ServicesCards-sidebar--content {
  position: relative;
  padding: 12px 12px 12px 12px;
  margin: 0px 0px 0px 0px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 20px 30px 7px rgba(7, 30, 86, 0.05);
  /*@include ServicesCards-inside-border(#FF0000);*/
}
@media only screen and (max-width: 991px) {
  .ServicesCards-sidebar--content {
    padding: 8px 8px 8px 8px;
    border-radius: 15px;
  }
}

.ServicesCards-sidebar--img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media only screen and (max-width: 991px) {
  .ServicesCards-sidebar--img {
    border-radius: 15px;
  }
}

.ServicesCards-sidebar--video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media only screen and (max-width: 991px) {
  .ServicesCards-sidebar--video {
    border-radius: 15px;
  }
}

.ServicesCards-video--play {
  position: absolute;
  left: -30px;
  bottom: -24px;
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
  background-image: url('data:image/svg+xml; utf8, <svg width="28" height="28" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.75 2.25 14.25 9l-10.5 6.75V2.25z" fill="%230A884B"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.ServicesCards-video--play:hover {
  background-color: #0A884B;
  background-image: url('data:image/svg+xml; utf8, <svg width="28" height="28" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.75 2.25 14.25 9l-10.5 6.75V2.25z" fill="%23FFFFFF"/></svg>');
}
@media only screen and (max-width: 991px) {
  .ServicesCards-video--play {
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate(-50%, -50%) !important;
  }
}

.ServicesCards-video--pause {
  background-image: url('data:image/svg+xml; utf8, <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.75 5h-4.5v18h4.5V5zM20.75 5h-4.5v18h4.5V5z" fill="%230A884B"/></svg>');
}
.ServicesCards-video--pause:hover {
  background-color: #0A884B;
  background-image: url('data:image/svg+xml; utf8, <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.75 5h-4.5v18h4.5V5zM20.75 5h-4.5v18h4.5V5z" fill="%23FFFFFF"/></svg>');
}

.ServicesCards-sticky {
  position: sticky;
  top: 0px;
  /*top: 32px;*/
  /*set in frontend.css.php*/
  margin-bottom: 0px;
}

.ServicesCards-row {
  width: 530px;
  /*@include ServicesCards-inside-border(#FF0000);*/
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
@media only screen and (max-width: 1350px) {
  .ServicesCards-row {
    width: 50%;
  }
}
@media only screen and (max-width: 991px) {
  .ServicesCards-row {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    order: 1 !important;
  }
}
@media only screen and (max-width: 767px) {
  .ServicesCards-row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.ServicesCards-col {
  display: block;
  padding: 1px 1px 1px 1px;
  margin: 0px 0px 0px 0px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.4);
  text-decoration: none !important;
}
.ServicesCards-col:hover {
  background: linear-gradient(to left, #488acc 60%, #0a884b 30%);
}
.ServicesCards-col:hover .ServicesCards-colInnerWrapper {
  background: linear-gradient(90deg, rgb(236, 241, 236) 0%, rgb(236, 241, 236) 50%, rgb(227, 234, 239) 100%), linear-gradient(103deg, var(--primary-blue) 16%, rgba(35, 67, 99, 0.49) 59%, var(--primary-green) 100%) border-box;
}
.ServicesCards-col:hover .ServicesCards-postCta {
  color: #FFFFFF;
  background-color: #0a884b;
}
.ServicesCards-col:hover .ServicesCards-postCta::after {
  background: url('data:image/svg+xml; utf8, <svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m5.75 12.75 7.5-7.5m0 0h-7.5m7.5 0v7.5" stroke="%23FFFFFF" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
@media only screen and (max-width: 991px) {
  .ServicesCards-col {
    background: linear-gradient(to left, #488acc 60%, #0a884b 30%);
  }
}

.ServicesCards-colInnerWrapper {
  padding: 24px 24px 24px 24px;
  border-radius: 16px;
}
@media only screen and (max-width: 991px) {
  .ServicesCards-colInnerWrapper {
    padding: 24px 24px 24px 24px;
  }
}

.ServicesCards-colInner {
  opacity: 1;
  position: relative;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none !important;
  gap: 8px;
  height: 100%;
}

a.ServicesCards-anchor {
  display: block;
  position: relative;
  top: -140px;
  visibility: hidden;
}

.ServicesCards-colInnerContent {
  width: 100%;
  padding: 0px 0px 0px 0px;
}

/*.ServicesCards-postImg--imgWrapper {
  padding: 21px 21px;
  border-radius: 50px;
  background-image: linear-gradient(243deg, rgb(59 129 198 / 24%) 85%, rgb(106 126 255 / 24%) 29%);
}*/
.ServicesCards-postImg {
  opacity: 1;
  position: relative;
  width: auto;
  height: 78px;
  max-height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
.ServicesCards-postImg img {
  position: relative;
  width: auto;
  height: 78px;
  max-height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
}

.ServicesCards-postTitle {
  font-family: "Exo 2", sans-serif;
  color: #171717;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.28px;
  line-height: 32px;
  text-transform: capitalize;
  padding: 0px 0px 0px 0px;
  margin: 8px 0px 0px 0px;
}
@media only screen and (max-width: 991px) {
  .ServicesCards-postTitle {
    font-family: "Exo 2", sans-serif;
    color: #171717;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.25px;
    line-height: 28.8px;
  }
}

.ServicesCards-postContent {
  font-family: Nunito, sans-serif;
  color: rgba(34, 39, 37, 0.7);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 27px;
  color: var(--fl-global-text-color);
  font-family: inherit;
  font-size: var(--fl-global-text-font-size);
  font-weight: var(--fl-global-text-font-weight);
  line-height: var(--fl-global-text-line-height);
  margin: 8px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
.ServicesCards-postContent p {
  padding: 0px 0px 8px 0px;
  margin: 0px 0px 0px 0px;
}
@media only screen and (max-width: 991px) {
  .ServicesCards-postContent {
    font-family: Nunito, sans-serif;
    color: rgba(34, 39, 37, 0.7);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 22.4px;
  }
}

.ServicesCards-colInnerContent--ul {
  margin: 0px 0px 0px 0px;
  padding: 17px 0px 0px 27px;
}

.ServicesCards-postCta {
  position: relative;
  width: auto;
  display: inline-block;
  font-family: Nunito, sans-serif;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.6;
  text-transform: capitalize;
  text-align: center;
  padding: 10px 60.5px 10px 33.5px;
  margin: 24px 0px 0px 0px;
  border-radius: 100px;
  text-decoration: none !important;
  box-shadow: inset 0px 0px 0px 1px #0a884b;
}
.ServicesCards-postCta::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 18px;
  background: url('data:image/svg+xml; utf8, <svg width="19" height="18" viewBox="0 0 19 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m5.75 12.75 7.5-7.5m0 0h-7.5m7.5 0v7.5" stroke="%230A884B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  top: 12px;
  margin-left: 8px;
}
@media only screen and (max-width: 991px) {
  .ServicesCards-postCta {
    color: #FFFFFF;
    background-color: #0a884b;
  }
  .ServicesCards-postCta::after {
    height: 19px;
    background: url('data:image/svg+xml; utf8, <svg width="19" height="19" viewBox="0 0 19 19" fill="none" xmlns="http://www.w3.org/2000/svg">    <path d="M4.25 9.903h10.5m0 0L9.5 4.653m5.25 5.25-5.25 5.25" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
}

/*body .ServicesCards * {
  color: #FF0000 !important;
}*/
/*# sourceMappingURL=frontend.css.map */

.fl-node-pst60uocn79q .ServicesCards-sticky {
	top: 174px;
}
.fl-node-pst60uocn79q .ServicesCards-sidebarBoxWrapper {
	height: 675px;
}
.FeaturedPosts-intro-title h2 {
  font-size: 48px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -1.06px;
  color: var(--primary-black);
  margin-top: 48px;
  margin-bottom: 48px;
}
@media screen and (max-width: 991px) {
  .FeaturedPosts-intro-title h2 {
    font-size: 40px;
    letter-spacing: -0.84px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .FeaturedPosts-intro-title h2 {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .FeaturedPosts-intro-post {
    text-align: center;
  }
}
.FeaturedPosts-intro-post .Overline {
  color: var(--primary-blue);
}
.FeaturedPosts-main-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1600px) {
  .FeaturedPosts-main-wrapper {
    gap: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .FeaturedPosts-main-wrapper {
    position: relative;
  }
}
.FeaturedPosts-main-wrapper-card {
  width: calc(33.333% - 40px);
  position: relative;
  min-height: 300px;
}
@media only screen and (min-width: 992px) and (max-width: 1600px) {
  .FeaturedPosts-main-wrapper-card {
    width: calc(33.333% - 15px);
  }
}
@media screen and (max-width: 991px) {
  .FeaturedPosts-main-wrapper-card {
    width: 100%;
  }
}
.FeaturedPosts-main-wrapper-card {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 1px;
  position: relative;
  z-index: 1;
}
.FeaturedPosts-main-wrapper-card:hover {
  background: linear-gradient(to left, #488acc 60%, #0a884b 30%);
}
.FeaturedPosts-main-wrapper-card:before {
  background-color: #fff;
  border-radius: 16px;
  bottom: 1px;
  content: "";
  left: 1px;
  position: absolute;
  right: 1px;
  top: 1px;
  z-index: -1;
}
.FeaturedPosts-main-wrapper-card-link {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  text-decoration: none !important;
}
.FeaturedPosts-main-wrapper-card-link .button-icon-svg path {
  stroke: var(--primary-green);
  transition: stroke 0.3s;
}
.FeaturedPosts-main-wrapper-card-link:hover {
  background: linear-gradient(90deg, rgb(236, 241, 236) 0%, rgb(236, 241, 236) 50%, rgb(227, 234, 239) 100%), linear-gradient(103deg, var(--primary-blue) 16%, rgba(35, 67, 99, 0.49) 59%, var(--primary-green) 100%) border-box;
}
.FeaturedPosts-main-wrapper-card-link:hover .fl-button {
  background-color: var(--primary-green) !important;
}
.FeaturedPosts-main-wrapper-card-link:hover .fl-button .button-icon-svg path {
  stroke: var(--white);
}
.FeaturedPosts-main-wrapper-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .FeaturedPosts-main-wrapper-card-image {
    margin-bottom: 0;
  }
}
.FeaturedPosts-main-wrapper-card-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  height: 100%;
  max-height: 200px;
  background-color: var(--base-washed-black);
}
.FeaturedPosts-main-wrapper-card-content {
  padding: 24px 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
@media (max-width: 991px) {
  .FeaturedPosts-main-wrapper-card-content {
    padding: 16px 15px;
  }
}
@media (max-width: 767px) {
  .FeaturedPosts-main-wrapper-card-content {
    padding: 20px;
  }
}
.FeaturedPosts-main-wrapper-card-category {
  font-family: Nunito, sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.08px;
  text-transform: uppercase;
  color: var(--secondary-washed-black);
  margin-bottom: 3px;
}
.FeaturedPosts-main-wrapper-card-title {
  font-family: "Exo 2", sans-serif;
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: -0.41px;
  color: var(--secondary-washed-black);
  min-height: 75px;
}
@media (max-width: 767px) {
  .FeaturedPosts-main-wrapper-card-title {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.34px;
  }
}
.FeaturedPosts-main-wrapper-card .ButtonIcon {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 12px;
}
.FeaturedPosts-main-wrapper-card .ButtonIcon .fl-button {
  border-color: var(--primary-green) !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  border-radius: 10rem;
  border-style: solid;
  border-width: 1px;
  border-color: var(--primary-green);
}
/*# sourceMappingURL=frontend.css.map */

@charset "UTF-8";
.Triangle-PatternFree {
  position: relative;
}
@media screen and (max-width: 767px) {
  .Triangle-PatternFree {
    min-height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .Triangle-PatternFree:not(.Triangle-PatternFree-disable_min-height) {
    aspect-ratio: 1.7;
    min-height: 450px;
  }
}
@media screen and (max-width: 640px) {
  .Triangle-PatternFree:not(.Triangle-PatternFree-disable_min-height) {
    min-height: 390px;
  }
}
@media screen and (max-width: 580px) {
  .Triangle-PatternFree:not(.Triangle-PatternFree-disable_min-height) {
    min-height: 360px;
  }
}
@media screen and (max-width: 480px) {
  .Triangle-PatternFree:not(.Triangle-PatternFree-disable_min-height) {
    min-height: 310px;
  }
}
@media screen and (max-width: 420px) {
  .Triangle-PatternFree:not(.Triangle-PatternFree-disable_min-height) {
    min-height: 290px;
  }
}
@media screen and (max-width: 767px) {
  .fl-module .Triangle-PatternFree.Triangle-PatternFree-has_bubble:not(.Triangle-PatternFree-disable_min-height) {
    aspect-ratio: 1.7;
    min-height: 480px;
  }
}
@media screen and (max-width: 640px) {
  .fl-module .Triangle-PatternFree.Triangle-PatternFree-has_bubble:not(.Triangle-PatternFree-disable_min-height) {
    min-height: 420px;
  }
}
@media screen and (max-width: 580px) {
  .fl-module .Triangle-PatternFree.Triangle-PatternFree-has_bubble:not(.Triangle-PatternFree-disable_min-height) {
    min-height: 390px;
  }
}
@media screen and (max-width: 480px) {
  .fl-module .Triangle-PatternFree.Triangle-PatternFree-has_bubble:not(.Triangle-PatternFree-disable_min-height) {
    min-height: 340px;
  }
}
@media screen and (max-width: 420px) {
  .fl-module .Triangle-PatternFree.Triangle-PatternFree-has_bubble:not(.Triangle-PatternFree-disable_min-height) {
    min-height: 330px;
  }
}
.Triangle-PatternFree-item {
  position: absolute;
  max-width: -moz-max-content;
  max-width: max-content;
  z-index: 1;
}
.Triangle-PatternFree-triangle_image {
  aspect-ratio: 1.15;
  -o-object-fit: cover;
  object-fit: cover;
  width: 30%;
  -o-object-position: center;
     object-position: center;
}
.Triangle-PatternFree-triangle_image.top {
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.Triangle-PatternFree-triangle_image.right {
  clip-path: polygon(100% 50%, 0% 0%, 0% 100%);
}
.Triangle-PatternFree-triangle_image.down {
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}
.Triangle-PatternFree-triangle_image.left {
  clip-path: polygon(0% 50%, 100% 100%, 100% 0%);
}
.Triangle-PatternFree-bubble_image img {
  border-radius: 10px;
  display: block;
  opacity: 1;
  visibility: visible;
}
.Triangle-PatternFree-bubble_image:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  z-index: -1;
  background: rgba(0, 0, 0, 0.14);
  border-radius: 10px;
}
.Triangle-PatternFree-bubble_text {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: var(--base-black) !important;
  background-color: var(--neutral-white);
  display: flex;
  gap: 16px;
  align-items: center;
}
.Triangle-PatternFree-bubble_text svg {
  background: rgba(72, 138, 204, 0.1);
  padding: 13px;
  border-radius: 29px;
}
.Triangle-PatternFree-bubble_text p {
  margin-bottom: 0;
}
.Triangle-PatternFree-testimonial_text {
  line-height: 1.4em;
}
.Triangle-PatternFree-testimonial_text:before {
  color: var(--primary-green);
  content: "“";
  display: block;
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .Triangle-PatternFree-item {
    display: none;
  }
  .Triangle-PatternFree-show_on_mobile {
    display: flex;
  }
}

.Triangle-PatternFree-item.Triangle-PatternFree-bubble_text {
  min-width: 218px;
}
/*# sourceMappingURL=frontend.css.map */

         .Triangle-PatternFree-5scxznluykwp .fadeInPattern1 {
            animation: pattern_fadeIn1-5scxznluykwp cubic-bezier(.91,.8,.54,1.39) forwards ;
            animation-timing-function: linear;animation-duration: 0.2s;
         }
         
         @keyframes pattern_fadeIn1-5scxznluykwp {
            0% {
               opacity: 0;
            }
            100% {
               opacity: 1;
               top: %;
               left: 0%;
            }
         }
      @media screen and (max-width: 767px) {.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-1{   top:%  !important }.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-1{   left:%  !important }}
         .Triangle-PatternFree-5scxznluykwp .fadeInPattern2 {
            animation: pattern_fadeIn2-5scxznluykwp cubic-bezier(.91,.8,.54,1.39) forwards ;
            animation-timing-function: linear;animation-duration: 0.2s;animation-delay: 0.2s;
         }
         
         @keyframes pattern_fadeIn2-5scxznluykwp {
            0% {
               opacity: 0;
            }
            100% {
               opacity: 1;
               top: 0%;
               left: 20%;
            }
         }
      @media screen and (max-width: 767px) {.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-2{   top:0%  !important }.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-2{   left:27%  !important }}
         .Triangle-PatternFree-5scxznluykwp .fadeInPattern3 {
            animation: pattern_fadeIn3-5scxznluykwp cubic-bezier(.91,.8,.54,1.39) forwards ;
            animation-timing-function: linear;animation-duration: 0.2s;animation-delay: 0.6s;
         }
         
         @keyframes pattern_fadeIn3-5scxznluykwp {
            0% {
               opacity: 0;
            }
            100% {
               opacity: 1;
               top: 40%;
               left: 47%;
            }
         }
      @media screen and (max-width: 767px) {.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-3{   top:45%  !important }.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-3{   left:36%  !important }}
         .Triangle-PatternFree-5scxznluykwp .fadeInPattern4 {
            animation: pattern_fadeIn4-5scxznluykwp cubic-bezier(.91,.8,.54,1.39) forwards ;
            animation-timing-function: linear;animation-duration: 0.2s;animation-delay: 0.8s;
         }
         
         @keyframes pattern_fadeIn4-5scxznluykwp {
            0% {
               opacity: 0;
            }
            100% {
               opacity: 1;
               top: 40%;
               left: 27%;
            }
         }
      @media screen and (max-width: 767px) {.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-4{   top:45%  !important }.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-4{   left:9%  !important }}
         .Triangle-PatternFree-5scxznluykwp .fadeInPattern5 {
            animation: pattern_fadeIn5-5scxznluykwp cubic-bezier(.91,.8,.54,1.39) forwards ;
            animation-timing-function: linear;animation-duration: 0.7s;animation-delay: 1.6s;
         }
         
         @keyframes pattern_fadeIn5-5scxznluykwp {
            0% {
               opacity: 0;
            }
            100% {
               opacity: 1;
               top: 40%;
               left: 67%;
            }
         }
      @media screen and (max-width: 767px) {.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-5{   top:%  !important }.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-5{   left:-4%  !important }}
         .Triangle-PatternFree-5scxznluykwp .fadeInPattern6 {
            animation: pattern_fadeIn6-5scxznluykwp cubic-bezier(.91,.8,.54,1.39) forwards ;
            animation-timing-function: linear;animation-duration: .7s;animation-delay: 1.2s;
         }
         
         @keyframes pattern_fadeIn6-5scxznluykwp {
            0% {
               opacity: 0;
            }
            100% {
               opacity: 1;
               top: -7%;
               left: 47%;
            }
         }
      @media screen and (max-width: 767px) {.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-6{   top:%  !important }.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-6{   left:%  !important }}
         .Triangle-PatternFree-5scxznluykwp .fadeInPattern7 {
            animation: pattern_fadeIn7-5scxznluykwp cubic-bezier(.91,.8,.54,1.39) forwards ;
            animation-timing-function: linear;animation-duration: .7s;animation-delay: 1.6s;
         }
         
         @keyframes pattern_fadeIn7-5scxznluykwp {
            0% {
               opacity: 0;
            }
            100% {
               opacity: 1;
               top: 22%;
               left: 74%;
            }
         }
      @media screen and (max-width: 767px) {.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-7{   top:%  !important }.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-7{   left:%  !important }}.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-1 {
	top: 0%;
	left: 0%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-1.Triangle-PatternFree-bubble_image  {
	width: 25%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-1.Triangle-PatternFree-bubble_image:before {
	top: -px;
	left: -px;
	right: -px;
	bottom: -px;
	border-radius: px;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-2 {
	top: 0%;
	left: 20%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-2.Triangle-PatternFree-bubble_image  {
	width: 25%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-2.Triangle-PatternFree-bubble_image:before {
	top: -px;
	left: -px;
	right: -px;
	bottom: -px;
	border-radius: px;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-3 {
	top: 40%;
	left: 47%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-3.Triangle-PatternFree-bubble_image  {
	width: 25%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-3.Triangle-PatternFree-bubble_image:before {
	top: -px;
	left: -px;
	right: -px;
	bottom: -px;
	border-radius: px;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-4 {
	top: 40%;
	left: 27%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-4.Triangle-PatternFree-bubble_image  {
	width: 25%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-4.Triangle-PatternFree-bubble_image:before {
	top: -px;
	left: -px;
	right: -px;
	bottom: -px;
	border-radius: px;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-5 {
	top: 40%;
	left: 67%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-5.Triangle-PatternFree-bubble_image  {
	width: 30%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-5.Triangle-PatternFree-bubble_image:before {
	top: -px;
	left: -px;
	right: -px;
	bottom: -px;
	border-radius: px;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-6 {
	top: -7%;
	left: 46%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-6.Triangle-PatternFree-bubble_image  {
	width: 25%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-6.Triangle-PatternFree-bubble_image:before {
	top: -px;
	left: -px;
	right: -px;
	bottom: -px;
	border-radius: px;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-7 {
	top: 22%;
	left: 76%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-7.Triangle-PatternFree-bubble_image  {
	width: 18%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item_single-7.Triangle-PatternFree-bubble_image:before {
	top: -px;
	left: -px;
	right: -px;
	bottom: -px;
	border-radius: px;
}
.fl-node-5scxznluykwp .Triangle-PatternFree {
	aspect-ratio: 1.77777;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-triangle_image {
	width: 35%;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-bubble_text {
	font-size: 13px;
	padding-top: 24px;
	padding-right: 24px;
	padding-bottom: 24px;
	padding-left: 24px;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-bubble_text svg {
	height: 60px;
	width: 60px;
}
.fl-node-5scxznluykwp .Triangle-PatternFree-testimonial_text:before {
	font-size: 96px;
}
@media(max-width: 1440px) {
	.fl-node-5scxznluykwp .Triangle-PatternFree {
		aspect-ratio: 1.77;
	}
}
@media(max-width: 991px) {
	.fl-node-5scxznluykwp .Triangle-PatternFree {
		aspect-ratio: 1.77;
	}
}
@media(max-width: 767px) {
	.fl-node-5scxznluykwp .Triangle-PatternFree {
		aspect-ratio: 2.2;
	}
	.fl-node-5scxznluykwp .Triangle-PatternFree-triangle_image {
		width: 50%;
	}
	.fl-node-5scxznluykwp .Triangle-PatternFree-bubble_text {
		font-size: 20px;
	}
	.fl-node-5scxznluykwp .Triangle-PatternFree-bubble_text svg {
		height: 50px;
		width: 50px;
	}
}
	.fl-builder-content .fl-node-k8upqoansd3g .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-k8upqoansd3g .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-k8upqoansd3g .fl-rich-text, .fl-builder-content .fl-node-k8upqoansd3g .fl-rich-text *:not(b, strong) {
	font-weight: 500;
	text-transform: uppercase;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-k8upqoansd3g .fl-rich-text, .fl-builder-content .fl-node-k8upqoansd3g .fl-rich-text *:not(b, strong) {
		text-align: left;
	}
}
 .fl-node-k8upqoansd3g > .fl-module-content {
	margin-top:18px;
}
@media ( max-width: 767px ) {
 .fl-node-k8upqoansd3g.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.SSCMSlider {
  display: flex;
  position: relative;
  --SSCMSlider-content--padding_top: 0px;
  --SSCMSlider-content--padding_bottom: 0px;
  --SSCMSlider-tabs_content--collapsed_height: 0px;
}
.SSCMSlider.reversed .slick-slider {
  transform: rotate(180deg);
}
.SSCMSlider.reversed .slick-slider .slick-slide {
  transform: rotate(180deg);
}
.SSCMSlider .fl-visible-medium,
.SSCMSlider .fl-visible-medium-mobile,
.SSCMSlider .fl-visible-mobile {
  display: none;
}
.SSCMSlider-content_cta_wrapper {
  display: block;
}
.SSCMSlider-content_cta {
  display: inline-block;
  transition-property: color, background-color, border, border-radius, box-shadow;
}
.SSCMSlider-modal {
  width: 95vw;
}
@media (min-width: 1347.3664px) {
  .SSCMSlider-modal {
    width: 1280px;
  }
}
.SSCMSlider-content_wrapper {
  position: relative;
  overflow: hidden;
}
.SSCMSlider-content > .fl-builder-content {
  width: 100%;
}
.SSCMSlider-content,
.SSCMSlider-modal_content {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.SSCMSlider-content,
.SSCMSlider-modal_content,
.SSCMSlider-content:hover,
.SSCMSlider-modal_content:hover,
.SSCMSlider-content:focus,
.SSCMSlider-modal_content:focus {
  text-decoration: none;
  color: inherit;
}
.SSCMSlider-content--layout_columns {
  row-gap: var(--SSCMSlider-content_row_spacing);
  padding-top: var(--SSCMSlider-content_top_spacing);
}
@media (min-width: 768px) {
  .SSCMSlider-modal_content--layout_columns {
    flex-direction: row;
    align-items: stretch;
  }
}
.SSCMSlider-slide_column,
.SSCMSlider-slide_column:hover,
.SSCMSlider-slide_column:focus {
  text-decoration: none;
  color: inherit;
}
.SSCMSlider-slide_column img {
  height: auto;
}
.SSCMSlider-modal_column,
.SSCMSlider-modal_column:hover,
.SSCMSlider-modal_column:focus {
  text-decoration: none;
  color: inherit;
}
.SSCMSlider-modal_column img {
  height: auto;
}
@media (min-width: 768px) {
  .SSCMSlider-modal_column--layout_columns:first-child {
    width: var(--SSCMSlider-first_column_width);
  }
  .SSCMSlider-modal_column--layout_columns:last-child {
    width: calc(100% - var(--SSCMSlider-first_column_width));
  }
  .SSCMSlider-modal_column--modal_column_2.SSCMSlider-modal_column--layout_columns {
    margin-left: var(--SSCMSlider-content_column_spacing);
  }
}
.SSCMSlider-column_image {
  display: inline !important;
}
.SSCMSlider-slide_background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.SSCMSlider.slick-slider:before,
.SSCMSlider.slick-slider:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.SSCMSlider.slick-slider:after {
  clear: both;
}
.SSCMSlider-column_cta {
  display: inline-block;
}
.SSCMSlider-content_row {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.SSCMSlider-content_row .slick-track {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.SSCMSlider-content_prev,
.SSCMSlider-content_next {
  position: absolute;
  top: 50%;
  z-index: 1;
  background: transparent;
  border: 0px solid transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0;
  cursor: pointer;
  margin-top: calc(var(--SSCMSlider-icon_size) * -0.5);
  width: auto;
  height: auto;
}
.SSCMSlider-content_prev:before,
.SSCMSlider-content_next:before,
.SSCMSlider-content_prev:after,
.SSCMSlider-content_next:after {
  font-size: var(--SSCMSlider-icon_size);
  display: inline;
}
.SSCMSlider-content_prev {
  left: 0;
}
.SSCMSlider-content_next {
  right: 0;
}
.SSCMSlider-tabs {
  position: absolute;
  z-index: 1;
}
.SSCMSlider-tabs_content {
  display: flex;
  flex-direction: row;
  z-index: 1;
}
.SSCMSlider-tabs_content--left,
.SSCMSlider-tabs_content--right {
  flex-direction: column;
}
.SSCMSlider-slick_dots {
  list-style: none inside none;
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 0;
  --SSCMSlider-dots_size: 5px;
}
.SSCMSlider-slick_dots li {
  display: inline-block;
}
.SSCMSlider-slick_dots li button {
  font-size: 0;
  width: var(--SSCMSlider-dots_size);
  height: var(--SSCMSlider-dots_size);
  border: 0px solid transparent;
  padding: 0;
  margin: 0;
  border-radius: var(--SSCMSlider-dots_size);
  background-color: transparent;
  cursor: pointer;
}
.SSCMSlider-slick_dots li button.SSCMSlider-dot_icon {
  width: auto;
  height: auto;
  border-radius: 0;
}
.SSCMSlider-slick_dots li button.SSCMSlider-dot_icon:before,
.SSCMSlider-slick_dots li button.SSCMSlider-dot_icon:after {
  font-size: var(--SSCMSlider-dots_size);
}
.SSCMSlider-slick_dots.SSCMSlider-flat_buttons {
  --SSCMSlider-dots_width: 40px;
  --SSCMSlider-dots_height: 4px;
}
.SSCMSlider-slick_dots.SSCMSlider-flat_buttons li button {
  width: var(--SSCMSlider-dots_width);
  height: var(--SSCMSlider-dots_height);
  border-radius: 0;
  font-size: 0;
}
.SSCMSlider-tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  padding: 0;
  margin: 0;
  border: 0px solid transparent;
  cursor: pointer;
}

/*# sourceMappingURL=frontend.css.map */
    @media (max-width: 991px) {
        .fl-node-pbiq76fwaehy .fl-visible-desktop,
        .fl-node-pbiq76fwaehy .fl-visible-desktop-mobile {
            display: none;
        }

        .fl-node-pbiq76fwaehy .fl-visible-medium,
        .fl-node-pbiq76fwaehy .fl-visible-medium-mobile {
            display: block;
        }

        .fl-node-pbiq76fwaehy .SSCMSlider-column_cta_wrapper.fl-visible-medium,
        .fl-node-pbiq76fwaehy .SSCMSlider-column_cta_wrapper.fl-visible-medium-mobile {
            display: inline-block;
        }
    }
        @media (max-width: 767px) {
        .fl-node-pbiq76fwaehy .fl-visible-desktop-medium,
        .fl-node-pbiq76fwaehy .fl-visible-medium {
            display: none;
        }

        .fl-node-pbiq76fwaehy .fl-visible-mobile,
        .fl-node-pbiq76fwaehy .fl-visible-desktop-mobile {
            display: block;
        }

        .fl-node-pbiq76fwaehy .SSCMSlider-column_cta_wrapper.fl-visible-mobile,
        .fl-node-pbiq76fwaehy .SSCMSlider-column_cta_wrapper.fl-visible-desktop-mobile {
            display: inline-block;
        }
    }
    
        .fl-node-pbiq76fwaehy .SSCMSlider-column_cta_wrapper--column_1{
            display: inline-block;
        }

        
        .fl-node-pbiq76fwaehy .SSCMSlider-column_cta_wrapper--column_2{
            display: inline-block;
        }

                    .fl-node-pbiq76fwaehy [data-slide-index='0'] .SSCMSlider-slide_column--column_1{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-slide-index='0'] .SSCMSlider-slide_column--column_2{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-modal-index='0'] .SSCMSlider-modal_column--modal_column_1{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-modal-index='0'] .SSCMSlider-modal_column--modal_column_2{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-slide-index='1'] .SSCMSlider-slide_column--column_1{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-slide-index='1'] .SSCMSlider-slide_column--column_2{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-modal-index='1'] .SSCMSlider-modal_column--modal_column_1{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-modal-index='1'] .SSCMSlider-modal_column--modal_column_2{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-slide-index='2'] .SSCMSlider-slide_column--column_1{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-slide-index='2'] .SSCMSlider-slide_column--column_2{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-modal-index='2'] .SSCMSlider-modal_column--modal_column_1{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-modal-index='2'] .SSCMSlider-modal_column--modal_column_2{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-slide-index='3'] .SSCMSlider-slide_column--column_1{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-slide-index='3'] .SSCMSlider-slide_column--column_2{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-modal-index='3'] .SSCMSlider-modal_column--modal_column_1{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-modal-index='3'] .SSCMSlider-modal_column--modal_column_2{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-slide-index='4'] .SSCMSlider-slide_column--column_1{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-slide-index='4'] .SSCMSlider-slide_column--column_2{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-modal-index='4'] .SSCMSlider-modal_column--modal_column_1{
            background-color: ;
            }

                            .fl-node-pbiq76fwaehy [data-modal-index='4'] .SSCMSlider-modal_column--modal_column_2{
            background-color: ;
            }

                .fl-node-pbiq76fwaehy .SSCMSlider-tabs {
        left: 0;
    }.fl-node-pbiq76fwaehy .SSCMSlider {
            flex-direction: row;
        }.fl-node-pbiq76fwaehy .SSCMSlider-content_wrapper {
                            padding-left: 33.3333%;
                    }

        .fl-node-pbiq76fwaehy .SSCMSlider-content_prev {
            left: 33.3333%;
        }            @media (max-width: 1440px) {
                .fl-node-pbiq76fwaehy .SSCMSlider-content_wrapper {
                                            padding-left: %;
                                    }
                
                .fl-node-pbiq76fwaehy .SSCMSlider-content_prev {
                    left: %;
                }
            }
            
            @media (max-width: 991px) {
                .fl-node-pbiq76fwaehy .SSCMSlider-content_wrapper {
                                            padding-left: %;
                                    }
                
                .fl-node-pbiq76fwaehy .SSCMSlider-content_prev {
                    left: %;
                }
            }
            
            @media (max-width: 767px) {
                .fl-node-pbiq76fwaehy .SSCMSlider-content_wrapper {
                    padding-left: 0;
                }
                
                .fl-node-pbiq76fwaehy .SSCMSlider-content_prev {
                    left: 0;
                }

                .fl-node-pbiq76fwaehy .SSCMSlider {
                    flex-direction: column;
                }
            }
        @media (max-width: 767px) {
            .fl-node-pbiq76fwaehy .SSCMSlider-tabs {
                left: auto;
                top: 0;

                
                                        width: 100% !important;

                        max-height: var(--SSCMSlider-tabs_content--collapsed_height);
                        overflow: hidden;
                                    }

            .fl-node-pbiq76fwaehy .SSCMSlider-content_wrapper {
                padding-left: 0;
                padding-top: var(--SSCMSlider-content_wrapper--mobile_spacing);
            }

            .fl-node-pbiq76fwaehy .SSCMSlider-content_prev {
                left: 0;
            }

                            .fl-node-pbiq76fwaehy .SSCMSlider-tabs.is-SSCMSlider-tabs--expanded {
                    max-height: var(--SSCMSlider-tabs_content--expanded_height);
                }
                        
            .fl-node-pbiq76fwaehy .SSCMSlider-tabs_content {
                                        flex-direction: column;
                                    }

            .fl-node-pbiq76fwaehy .SSCMSlider-tab {
                            }
        }        
                .fl-node-pbiq76fwaehy .SSCMSlider-slick-nav-custom-container {
            position:absolute;
            display:block;
                            left: 1%;
                top: 1%;
        }             .fl-node-pbiq76fwaehy .SSCMSlider-content_prev, 
            .fl-node-pbiq76fwaehy .SSCMSlider-content_next{
                            
            }
        
                            @media (max-width: 1440px) {
            .fl-node-pbiq76fwaehy .SSCMSlider-slick-nav-custom-container{
                position:absolute;
                display:block;
                                        left: 1%;
                        top: 1%;
            
                ?>
            }

                            .fl-node-pbiq76fwaehy .SSCMSlider-content_prev, 
                .fl-node-pbiq76fwaehy .SSCMSlider-content_next{
                                    
                }
            
            
        }
            
                    @media (max-width: 991px) {

            
            .fl-node-pbiq76fwaehy .SSCMSlider-slick-nav-custom-container{
                position:absolute;
                display:block;
                                        left: 1%;
                        top: 1%;
            
                ?>
            }


                            .fl-node-pbiq76fwaehy .SSCMSlider-content_prev, 
                .fl-node-pbiq76fwaehy .SSCMSlider-content_next{
                                    }
            
            
        }
            
                    @media (max-width: 767px) {
            .fl-node-pbiq76fwaehy .SSCMSlider-slick-nav-custom-container{
                position:absolute;
                display:block;
                                        left: 1%;
                        top: 1%;
            
                ?>
            }
                            .fl-node-pbiq76fwaehy .SSCMSlider-content_prev, 
                .fl-node-pbiq76fwaehy .SSCMSlider-content_next{
                                    }
            
            
        }
             
            .fl-node-pbiq76fwaehy .SSCMSlider .SSCMSlider-slick_dots li button{
                font-size:0; 
            }
         
        .fl-node-pbiq76fwaehy .SSCMSlider-slick_dots li:only-child {
                display: none;
            }

                .fl-node-pbiq76fwaehy .SSCMSlider.reversed .slick-slider{ 
            transform: rotate(180deg);
        }
                .fl-node-pbiq76fwaehy .SSCMSlider.reversed .slick-slide{ 
            transform: rotate(180deg);
        }

        @media (min-width: 768px) {
    .fl-node-pbiq76fwaehy .SSCMSlider-content--layout_columns {
        flex-direction: row;
        align-items: stretch;
    }

    .fl-node-pbiq76fwaehy .SSCMSlider-slide_column--layout_columns:first-child {
        width: var(--SSCMSlider-first_column_width);
    }

    .fl-node-pbiq76fwaehy .SSCMSlider-slide_column--layout_columns:last-child {
        width: calc(100% - var(--SSCMSlider-first_column_width));
    }

    .fl-node-pbiq76fwaehy .SSCMSlider-slide_column--column_2.SSCMSlider-slide_column--layout_columns {
        margin-left: var(--SSCMSlider-content_column_spacing);
    }
}

@media (max-width: 767px) {
    .fl-node-pbiq76fwaehy .SSCMSlider-slide_column:has(.SSCMSlider-column_image_wrapper--column_1, .SSCMSlider-column_image_wrapper--column_2) {
        width: 100%;
    }
}
@media (max-width: 767px) {    .fl-node-pbiq76fwaehy .SSCMSlider-tabs{
        position:relative;
    }
    }@media (max-width: 767px) {        .fl-node-pbiq76fwaehy .SSCMSlider-tabs--mobile_dropdown .is-SSCMSlider-tab--active:after {
            content: "";
            display: inline-block;
            border: calc(var(--SSCMSlider-tabs--dropdown_icon_size) / 2) solid transparent;
            border-top-color: black;
            border-bottom-width: 0;
        }

        .fl-node-pbiq76fwaehy .SSCMSlider-tabs--mobile_dropdown.is-SSCMSlider-tabs--expanded .is-SSCMSlider-tab--active:after {
            display: none;
        }
    }.fl-node-pbiq76fwaehy .SSCMSlider-column_image--column_1 {
	max-width: 100%;
}
.fl-node-pbiq76fwaehy .SSCMSlider-column_image_wrapper--column_1 {
	text-align: left;
}
.fl-node-pbiq76fwaehy .SSCMSlider-column_headline--column_1 {
	font-family: Nunito, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0.08px;
	text-transform: uppercase;
	color: #3a6ea3;
	margin-top: 0px;
	margin-bottom: 8px;
}
.fl-node-pbiq76fwaehy .SSCMSlider-column_subheadline--column_1 {
	letter-spacing: -1.06px;
	text-transform: capitalize;
	margin-bottom: 24px;
	display: block;
	margin-bottom: 24px;
}
.fl-node-pbiq76fwaehy .SSCMSlider-column_body--column_1 {
	margin-bottom: 24px;
}
.fl-node-pbiq76fwaehy .SSCMSlider-column_cta--column_1, .fl-node-pbiq76fwaehy .SSCMSlider-column_cta_wrapper--column_1 {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0.2px;
	text-transform: capitalize;
}
.fl-node-pbiq76fwaehy .SSCMSlider-column_cta--column_1 {
	color: #171717;
	background-color: rgba(10,136,75,0);
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0a884b;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	padding-top: 12px;
	padding-left: 24px;
	padding-right: 24px;
	padding-bottom: 12px;
}
.fl-node-pbiq76fwaehy .SSCMSlider-column_cta--column_1:hover, .fl-node-pbiq76fwaehy .SSCMSlider-column_cta--column_1:focus {
	color: #ffffff;
	background-color: #0a884b;
}
.fl-node-pbiq76fwaehy .SSCMSlider-column_cta_icon--column_1 {
	margin-left: 10px;
}
.fl-node-pbiq76fwaehy .SSCMSlider-column_image--column_2 {
	width: 100%;
	max-width: 100%;
}
.fl-node-pbiq76fwaehy .SSCMSlider-column_image_wrapper--column_2 {
	text-align: left;
}
.fl-node-pbiq76fwaehy .SSCMSlider-column_subheadline--column_2 {
	display: block;
}
.fl-node-pbiq76fwaehy .SSCMSlider-content {
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	--SSCMSlider-content_column_spacing: 64px;
	--SSCMSlider-first_column_width: 50%;
	align-items: start;
}
.fl-node-pbiq76fwaehy .SSCMSlider {
	align-items: start;
	justify-content: normal;
}
.fl-node-pbiq76fwaehy .SSCMSlider-tabs {
	width: 33.3333%;
}
.fl-node-pbiq76fwaehy .SSCMSlider-content_prev, .fl-node-pbiq76fwaehy .SSCMSlider-content_next {
	--SSCMSlider-icon_size: 14px;
}
.fl-node-pbiq76fwaehy .SSCMSlider-slick_dots {
	--SSCMSlider-dots_size: 5px;
}
.fl-node-pbiq76fwaehy .SSCMSlider-slick_dots.SSCMSlider-flat_buttons {
	--SSCMSlider-dots_width: 40px;
	--SSCMSlider-dots_height: 2px;
}
.fl-node-pbiq76fwaehy .SSCMSlider-tab {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.18px;
	color: #000000;
	background-color: rgba(255,255,255,0.3);
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0a884b;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	border-bottom-left-radius: 25px;
	border-bottom-right-radius: 25px;
	padding-top: 8px;
	padding-left: 16px;
	padding-right: 16px;
	padding-bottom: 8px;
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
}
.fl-node-pbiq76fwaehy .SSCMSlider-tab:hover, .fl-node-pbiq76fwaehy .SSCMSlider-tab:focus, .fl-node-pbiq76fwaehy .is-SSCMSlider-tab--active:hover:focus {
	color: #ffffff;
	background-color: #0a884b;
}
.fl-node-pbiq76fwaehy .is-SSCMSlider-tab--active, .fl-node-pbiq76fwaehy .is-SSCMSlider-tab--active:focus {
	color: #ffffff;
	background-color: #0a884b;
}
.fl-node-pbiq76fwaehy .SSCMSlider-modal_content {
	--SSCMSlider-first_column_width: 50%;
	align-items: before;
}
@media(max-width: 1440px) {
	.fl-node-pbiq76fwaehy .SSCMSlider-content {
		--SSCMSlider-content_column_spacing: 0px;
	}
}
@media(max-width: 991px) {
	.fl-node-pbiq76fwaehy .SSCMSlider-column_headline--column_1 {
		margin-top: 0px;
		margin-right: 0px;
		margin-bottom: 8px;
	}
	.fl-node-pbiq76fwaehy .SSCMSlider-column_subheadline--column_1 {
		letter-spacing: -0.84px;
		margin-bottom: 8px;
		margin-bottom: 8px;
	}
	.fl-node-pbiq76fwaehy .SSCMSlider-column_body--column_1 {
		margin-bottom: 32px;
	}
	.fl-node-pbiq76fwaehy .SSCMSlider-column_cta_wrapper--column_1 {
		margin-bottom: 24px;
	}
	.fl-node-pbiq76fwaehy .SSCMSlider-content {
		padding-top: 0px;
		--SSCMSlider-first_column_width: 100%;
	}
}
@media(max-width: 767px) {
	.fl-node-pbiq76fwaehy .SSCMSlider-column_headline--column_1 {
		margin-top: 0px;
		margin-bottom: 8px;
	}
	.fl-node-pbiq76fwaehy .SSCMSlider-column_subheadline--column_1 {
		margin-bottom: 8px;
		margin-bottom: 8px;
	}
	.fl-node-pbiq76fwaehy .SSCMSlider-column_body--column_1 {
		margin-bottom: 32px;
	}
	.fl-node-pbiq76fwaehy .SSCMSlider-tab {
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.fl-node-pbiq76fwaehy .SSCMSlider-tabs--mobile_dropdown .is-SSCMSlider-tab--active:after {
		border-top-color: #cccccc;
		--SSCMSlider-tabs--dropdown_icon_size: 14px;
	}
}

.fl-node-m6i2c3x5pabn .ServicesCards-video--play {
  left: auto;
  right: -30px;
}
.fl-node-m6i2c3x5pabn .ServicesCards-sticky {
	top: 174px;
}
.fl-node-m6i2c3x5pabn .ServicesCards-sidebarBoxWrapper {
	height: 675px;
}
@media ( max-width: 1440px ) {
 .fl-node-m6i2c3x5pabn.fl-module > .fl-module-content {
	margin-top:0px;
}
}
	.fl-builder-content .fl-node-ad8p5bfeovsi .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-ad8p5bfeovsi .fl-module-content .fl-rich-text * {
		color: #488acc;
	}
	.fl-builder-content .fl-node-gm398h6q2a5i .fl-rich-text, .fl-builder-content .fl-node-gm398h6q2a5i .fl-rich-text *:not(b, strong) {
	letter-spacing: -0.28px;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-gm398h6q2a5i .fl-rich-text, .fl-builder-content .fl-node-gm398h6q2a5i .fl-rich-text *:not(b, strong) {
		letter-spacing: -0.25px;
	}
}
@media ( max-width: 991px ) {
 .fl-node-gm398h6q2a5i.fl-module > .fl-module-content {
	margin-top:32px;
}
}
@media (max-width: 767px) { .fl-node-gm398h6q2a5i > .fl-module-content { margin-top:px; } }
.fl-node-gn2ths4zj5xv .ServicesCards-video--play {
  left: auto;
  right: -30px;
}
.fl-node-gn2ths4zj5xv .ServicesCards-sticky {
	top: 174px;
}
.fl-node-gn2ths4zj5xv .ServicesCards-sidebarBoxWrapper {
	height: 675px;
}
.fl-module-box:before,
.fl-module-box:after {
	position: absolute;
}
a.fl-module-box {
	text-decoration: none;
}

/* Zero margins for top level boxes */
.fl-builder-content > .fl-module-box {
	margin: 0;
}

/* Zero margins for child modules */
.fl-module-box :where( .fl-module ),
.fl-module-box :where( .fl-module-content ),
.fl-module-box.fl-block > * {
	margin: 0;
}
.fl-builder-content-7245 .fl-node-gr4oz3p6h1ds {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 16px;
	padding-right: 16px;
	padding-bottom: 16px;
	padding-left: 16px;
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(255,255,255,0.4);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
@media(max-width: 767px) {
	.fl-builder-content-7245 .fl-node-gr4oz3p6h1ds {
		padding-top: 24px;
		padding-right: 24px;
		padding-bottom: 24px;
		padding-left: 24px;
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
		border-bottom-left-radius: 16px;
		border-bottom-right-radius: 16px;
	}
}
img.mfp-img {
    padding-bottom: 40px !important;
}

/* Support for object-fit */
.fl-builder-edit .fl-fill-container img {
	transition: object-position .5s;
}

.fl-fill-container :is(.fl-module-content, .fl-photo, .fl-photo-content, img) {
	height: 100% !important;
	width: 100% !important;
}

@media (max-width: 767px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-b6tjf1xe4rok, .fl-node-b6tjf1xe4rok .fl-photo {
	text-align: left;
}
.fl-node-b6tjf1xe4rok .fl-photo-content, .fl-node-b6tjf1xe4rok .fl-photo-img {
	width: 50px;
}
.fl-node-tuhowsmcn4xy, .fl-node-tuhowsmcn4xy .fl-photo {
	text-align: left;
}
.fl-node-tuhowsmcn4xy .fl-photo-content, .fl-node-tuhowsmcn4xy .fl-photo-img {
	width: 50px;
}
.fl-node-rdxem3v0j1s5, .fl-node-rdxem3v0j1s5 .fl-photo {
	text-align: left;
}
.fl-node-rdxem3v0j1s5 .fl-photo-content, .fl-node-rdxem3v0j1s5 .fl-photo-img {
	width: 50px;
}
.StickyTabs-content.main-title-added {
  padding-top: 64px;
}
@media (max-width: 991px) {
  .StickyTabs-content.main-title-added {
    padding-top: 0;
  }
}
.StickyTabs-content:after {
  clear: both;
  display: block;
  content: "";
}
.StickyTabs-content > div {
  float: left;
}
.StickyTabs-content-main-title {
  color: var(--base-black);
  padding-bottom: 12px;
}
.StickyTabs .StickyTabs-content-main-title {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -0.28px;
}
@media (max-width: 991px) {
  .StickyTabs .StickyTabs-content-main-title {
    margin-top: 0 !important;
    font-size: 1.5rem;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
  }
}
.StickyTabs-content_tabs_nav {
  max-width: calc(100% - 1077px);
  width: 100%;
  position: sticky;
  top: 150px;
  padding-right: 64px;
}
.hide-announcement .StickyTabs-content_tabs_nav {
  top: 100px;
}
.admin-bar .StickyTabs-content_tabs_nav {
  top: 190px;
}
.admin-bar.hide-announcement .StickyTabs-content_tabs_nav {
  top: 130px;
}
@media (max-width: 1850px) {
  .StickyTabs-content_tabs_nav {
    max-width: 426px;
  }
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav {
    top: 0 !important;
  }
}
.StickyTabs-content_tabs_nav-inner {
  padding: 16px 16px 0 16px;
  border-radius: 8px;
  border: solid 1px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  max-width: 362px;
  width: 100%;
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav-inner {
    max-width: 100%;
    padding: 0;
    border: none;
    position: relative;
    top: 0;
    z-index: 999;
  }
}
@media (max-width: 1599px) {
  .StickyTabs-content_tabs_nav {
    max-width: 33%;
  }
}
@media (max-width: 1440px) {
  .StickyTabs-content_tabs_nav {
    max-width: calc(100% - 776px);
  }
}
@media (max-width: 1280px) {
  .StickyTabs-content_tabs_nav {
    max-width: 40%;
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav {
    max-width: 100%;
    padding: 0;
    position: relative;
    top: 0;
    z-index: 10;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
  }
}
.StickyTabs-content_tabs_nav.main-title-added {
  top: 120px;
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav.main-title-added {
    top: 0;
  }
}
.logged-in .StickyTabs-content_tabs_nav.main-title-added {
  top: 145px;
}
@media (max-width: 991px) {
  .logged-in .StickyTabs-content_tabs_nav.main-title-added {
    top: 0;
  }
}
.StickyTabs-content_tabs_nav_select {
  align-items: center;
  background-color: #fff;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
  display: none;
  justify-content: space-between;
  padding: 16px 20px;
  position: relative;
  top: 0;
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav_select {
    display: flex;
    align-self: center;
  }
}
.StickyTabs-content_tabs_nav_select > span {
  display: block;
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav_select > span {
    display: flex;
    align-items: center;
  }
}
.StickyTabs-content_tabs_nav_select_heading_title {
  color: var(--primary-green);
  font-size: 18px;
  font-weight: bold;
  padding-right: 7px;
}
.StickyTabs-content_tabs_nav_select_heading_title .StickyTabs-content_tabs_nav_item_link-icon svg {
  display: block;
}
.StickyTabs-content_tabs_nav_select_heading_title .StickyTabs-content_tabs_nav_item_link-icon svg path {
  stroke: var(--primary-green);
}
.StickyTabs-content_tabs_nav_select_heading_title .StickyTabs-content_tabs_nav_item_link-icon-Self-Service-Portal svg path, .StickyTabs-content_tabs_nav_select_heading_title .StickyTabs-content_tabs_nav_item_link-icon-Employee-Experience---Engagement svg path, .StickyTabs-content_tabs_nav_select_heading_title .StickyTabs-content_tabs_nav_item_link-icon-Business-Intelligence---Reporting svg path, .StickyTabs-content_tabs_nav_select_heading_title .StickyTabs-content_tabs_nav_item_link-icon-HR-Chatbots--Helpdesk svg path, .StickyTabs-content_tabs_nav_select_heading_title .StickyTabs-content_tabs_nav_item_link-icon-Integrations svg path, .StickyTabs-content_tabs_nav_select_heading_title .StickyTabs-content_tabs_nav_item_link-icon-IGA---Entra-ID---AD-Automation svg path, .StickyTabs-content_tabs_nav_select_heading_title .StickyTabs-content_tabs_nav_item_link-icon-Benefits-Administration svg path {
  stroke: transparent;
  fill: var(--primary-green);
}
.StickyTabs-content_tabs_nav_select_heading_title .StickyTabs-content_tabs_nav_item_link-icon-HCM-Lifecycle-Wizards svg path:first-child {
  stroke: transparent;
  fill: transparent;
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav_select_heading_title .active-item-arrow-icon {
    display: none;
  }
}
.StickyTabs-content_tabs_nav_select_heading_icon {
  transform: rotate(0);
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav.StickyTabs-content_tabs_nav--dropdown_active + .StickyTabs-content_tabs_content {
    height: 430px;
    opacity: 0;
  }
}
.StickyTabs-content_tabs_nav.StickyTabs-content_tabs_nav--dropdown_active .StickyTabs-content-Dropdown-menu {
  display: block;
}
.StickyTabs-content_tabs_nav.StickyTabs-content_tabs_nav--dropdown_active .StickyTabs-content_tabs_nav_select_heading_icon {
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav .StickyTabs-content-Dropdown-menu {
    background-color: #fff;
    display: none;
    position: absolute;
    top: 72px;
    width: 100%;
    padding: 1px 15px;
  }
}
.StickyTabs-content_tabs_nav_item_link {
  color: var(--shade-black-70);
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  max-width: 362px;
  padding: 8px 32px 8px 8px;
  position: relative;
  text-decoration: none;
  transition: all 0.5s;
  width: 100%;
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav_item_link {
    display: flex;
    max-width: 100%;
    width: 100%;
  }
}
.StickyTabs-content_tabs_nav_item_link:before, .StickyTabs-content_tabs_nav_item_link:after {
  border-radius: 4px;
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  transition: all 0.3s;
}
.StickyTabs-content_tabs_nav_item_link:before {
  height: calc(100% + 2px);
  bottom: -1px;
  left: -1px;
  right: -1px;
  top: -1px;
  background: #0A884B;
  background: linear-gradient(to top, #0A884B 0%, #488ACC 100%);
  z-index: 1;
  width: calc(100% + 2px);
}
.StickyTabs-content_tabs_nav_item_link:after {
  background-color: var(--neutral-white);
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}
.StickyTabs-content_tabs_nav_item_link .active-item-arrow-icon svg {
  transition: all 0.3s;
  opacity: 0;
}
.StickyTabs-content_tabs_nav_item_link:hover {
  color: var(--shade-black-70);
  text-decoration: none;
  background-color: #f8f8f8;
}
.StickyTabs-content_tabs_nav_item_link:hover .active-item-arrow-icon svg {
  opacity: 1;
}
.StickyTabs-content_tabs_nav_item_link:active, .StickyTabs-content_tabs_nav_item_link:focus, .StickyTabs-content_tabs_nav_item_link:visited {
  color: var(--shade-black-70);
  text-decoration: none;
}
.StickyTabs-content_tabs_nav_item_link > div {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}
.StickyTabs-content_tabs_nav_item_link-subtitle, .StickyTabs-content_tabs_nav_item_link-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.08px;
}
.StickyTabs-content_tabs_nav_item_link-subtitle {
  font-weight: bolder;
  line-height: 1.1;
}
.StickyTabs-content_tabs_nav_item_link-title {
  line-height: 1.6;
}
.StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav {
  color: var(--alpha-black);
  border-radius: 4px;
}
.StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav.StickyTabs-content_tabs_nav_item_link-Self-Service-Portal .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav.StickyTabs-content_tabs_nav_item_link-Employee-Experience---Engagement .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav.StickyTabs-content_tabs_nav_item_link-Business-Intelligence---Reporting .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav.StickyTabs-content_tabs_nav_item_link-HR-Chatbots--Helpdesk .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav.StickyTabs-content_tabs_nav_item_link-Integrations .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav.StickyTabs-content_tabs_nav_item_link-IGA---Entra-ID---AD-Automation .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav.StickyTabs-content_tabs_nav_item_link-Benefits-Administration .StickyTabs-content_tabs_nav_item_link-icon svg path {
  fill: var(--alpha-black);
}
.StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav.StickyTabs-content_tabs_nav_item_link-HCM-Lifecycle-Wizards .StickyTabs-content_tabs_nav_item_link-icon svg path:first-child {
  stroke: transparent;
  fill: transparent;
}
.StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav:before {
  opacity: 1;
}
.StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav:after {
  opacity: 0.9;
}
.StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav .active-item-arrow-icon {
  display: block;
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav .active-item-arrow-icon {
    display: none;
  }
}
.StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav .active-item-arrow-icon svg {
  opacity: 1;
}
.StickyTabs-content_tabs_nav_item_link.StickyTabs-content_tabs_nav_item_link--activeNav .active-item-arrow-icon svg path {
  stroke: var(--primary-green);
  stroke-opacity: 1;
}
.StickyTabs-content_tabs_nav_item_link > span {
  position: relative;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.StickyTabs-content_tabs_nav_item_link .active-item-arrow-icon {
  bottom: 0;
  display: block;
  height: 24px;
  margin: auto;
  position: absolute;
  right: -20px;
  top: 0;
  width: 24px;
}
.StickyTabs-content_tabs_nav_item_link-icon {
  width: 24px;
  height: 24px;
}
.StickyTabs-content_tabs_nav_item_link-icon svg {
  transition: all 0.5s;
}
.StickyTabs-content_tabs_nav_item_link-icon svg,
.StickyTabs-content_tabs_nav_item_link-icon img {
  display: block;
  width: 100%;
  height: auto;
}
.StickyTabs-content_tabs_nav_item_link-subtitle, .StickyTabs-content_tabs_nav_item_link-title {
  display: block;
  line-height: 1.4;
  margin-left: 8px;
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_nav_item_link-subtitle, .StickyTabs-content_tabs_nav_item_link-title {
    letter-spacing: 0.2px;
    line-height: 1.8;
  }
}
.StickyTabs-content_tabs_nav_item_link-subtitle {
  font-size: 13px;
  font-weight: bolder;
  line-height: 1.1;
}
.StickyTabs-content_tabs_nav_item_link-Self-Service-Portal:hover .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link-Employee-Experience---Engagement:hover .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link-Business-Intelligence---Reporting:hover .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link-HR-Chatbots--Helpdesk:hover .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link-Integrations:hover .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link-IGA---Entra-ID---AD-Automation:hover .StickyTabs-content_tabs_nav_item_link-icon svg path, .StickyTabs-content_tabs_nav_item_link-Benefits-Administration:hover .StickyTabs-content_tabs_nav_item_link-icon svg path {
  stroke: transparent;
  fill: var(--alpha-black);
}
.StickyTabs-content_tabs_nav_item_link-HCM-Lifecycle-Wizards:hover .StickyTabs-content_tabs_nav_item_link-icon svg path:first-child {
  stroke: transparent;
  fill: transparent;
}
.StickyTabs-content_tabs_content {
  max-width: 1077px;
  width: 100%;
  position: relative;
}
.StickyTabs-content_tabs_content:before {
  content: "";
  display: block;
  height: 100px;
  /* Adjust this to match the height of your fixed header */
  margin-top: -100px;
  /* Same value as height */
  visibility: hidden;
}
@media (max-width: 1850px) {
  .StickyTabs-content_tabs_content {
    max-width: calc(100% - 426px);
    width: 100%;
  }
}
@media (max-width: 1599px) {
  .StickyTabs-content_tabs_content {
    max-width: 67%;
  }
}
@media (max-width: 1440px) {
  .StickyTabs-content_tabs_content {
    max-width: 776px;
  }
}
@media (max-width: 1280px) {
  .StickyTabs-content_tabs_content {
    max-width: 60%;
  }
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_content {
    max-width: 100%;
    padding-top: 20px;
  }
}
.StickyTabs-content_tabs_content_item {
  display: none;
}
.StickyTabs-content_tabs_content_item.StickyTabs-content_tabs_content_item--activeTab {
  display: block;
}
.StickyTabs-content_tabs_content_item-title {
  color: var(--primary-green);
  margin-top: 0;
  margin-bottom: 24px;
}
@media (max-width: 479px) {
  .StickyTabs-content_tabs_content_item-title {
    margin-bottom: 32px;
  }
}
.StickyTabs-content_tabs_content_item-description {
  color: var(--fl-global-text-color);
  font-family: "Exo 2", sans-serif;
  font-size: var(--fl-global-text-font-size);
  font-weight: var(--fl-global-text-font-weight);
  line-height: var(--fl-global-text-line-height);
}
.StickyTabs-content_tabs_content_item-description > h2:first-child,
.StickyTabs-content_tabs_content_item-description > h3:first-child,
.StickyTabs-content_tabs_content_item-description > h4:first-child,
.StickyTabs-content_tabs_content_item-description > h5:first-child,
.StickyTabs-content_tabs_content_item-description > h6:first-child {
  margin-top: 0;
}
.StickyTabs-content_tabs_content_item-description h5 {
  margin-bottom: 20px;
}
.StickyTabs-content_tabs_content_item-description ul {
  margin-top: 24px;
  margin-bottom: 24px;
}
.StickyTabs .StickyTabs-content_tabs_content_item-description ul {
  padding-left: 0;
}
.StickyTabs-content_tabs_content_item-description li {
  /*line-height: 32px;*/
  position: relative;
  padding-left: 30px;
  margin-bottom: 24px;
}
.StickyTabs-content_tabs_content_item-description li:last-child {
  margin-bottom: 0;
}
.StickyTabs-content_tabs_content_item-description li:after {
  bottom: 0;
  color: #0a884b;
  content: "";
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: 400;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 20px;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.StickyTabs-content_tabs_content_item-description.bottom {
  color: var(--fl-global-text-color);
  font-size: var(--fl-global-text-font-size);
  font-weight: var(--fl-global-text-font-weight);
  line-height: var(--fl-global-text-line-height);
}
.StickyTabs-content_tabs_content_item-large-image, .StickyTabs-content_tabs_content_item-large-video, .StickyTabs-content_tabs_content_item-button {
  margin-top: 24px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_content_item-large-image, .StickyTabs-content_tabs_content_item-large-video, .StickyTabs-content_tabs_content_item-button {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_content_item-large-image.bottom, .StickyTabs-content_tabs_content_item-large-video.bottom, .StickyTabs-content_tabs_content_item-button.bottom {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.StickyTabs-content_tabs_content_item-large-image {
  position: relative;
}
.StickyTabs-content_tabs_content_item-large-image img {
  display: block;
  height: auto;
  width: 100%;
}
.StickyTabs-content_tabs_content_item-large-video {
  position: relative;
}
.StickyTabs-content_tabs_content_item-counter-details {
  display: flex;
  gap: 83.5px;
}
@media (max-width: 1599px) {
  .StickyTabs-content_tabs_content_item-counter-details {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_content_item-counter-details {
    gap: 43px;
  }
}
@media (max-width: 520px) {
  .StickyTabs-content_tabs_content_item-counter-details {
    gap: 0;
    display: block;
  }
}
@media (max-width: 991px) {
  .StickyTabs-content_tabs_content_item-counter-details.counter {
    margin-top: 40px;
  }
}
.StickyTabs-content_tabs_content_item-counter-details-detail {
  flex: 1 1;
  width: auto;
}
@media (max-width: 520px) {
  .StickyTabs-content_tabs_content_item-counter-details-detail {
    width: 100%;
    margin-bottom: 20px;
  }
}
.StickyTabs-content_tabs_content_item-counter-details-detail-counter {
  display: flex;
  font-family: "Exo 2", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -2.11px;
  line-height: 1;
}
@media (max-width: 1030px) {
  .StickyTabs-content_tabs_content_item-counter-details-detail-counter {
    font-size: 3rem;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .StickyTabs-content_tabs_content_item-counter-details-detail-counter {
    line-height: 1.4;
    letter-spacing: -1.06px;
  }
}
.StickyTabs-content_tabs_content_item-counter-details-detail-counter > span {
  display: inline-block;
  vertical-align: middle;
}
.StickyTabs-content_tabs_content_item-counter-details-detail-counter-number {
  color: var(--secondary-washed-black);
}
.StickyTabs-content_tabs_content_item-counter-details-detail-counter-symbol {
  color: var(--base-blue);
  letter-spacing: -2.11px;
}
.StickyTabs-content_tabs_content_item-counter-details-detail-description {
  padding-top: 8px;
}
@media (max-width: 520px) {
  .StickyTabs-content_tabs_content_item-counter-details-detail-description {
    max-width: 215px;
    width: 100%;
  }
}
.StickyTabs-content_tabs_content_item-counter-details-detail-description p {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: -0.1px;
  line-height: 25.6px;
}
.StickyTabs-video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media only screen and (max-width: 991px) {
  .StickyTabs-video {
    border-radius: 15px;
  }
}
.StickyTabs-video--play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
  background-image: url('data:image/svg+xml; utf8, <svg width="28" height="28" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.75 2.25 14.25 9l-10.5 6.75V2.25z" fill="%230A884B"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.StickyTabs-video--play:hover {
  background-color: #0A884B;
  background-image: url('data:image/svg+xml; utf8, <svg width="28" height="28" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.75 2.25 14.25 9l-10.5 6.75V2.25z" fill="%23FFFFFF"/></svg>');
}
@media only screen and (max-width: 767px) {
  .StickyTabs-video--play {
    left: -10px;
  }
}
.StickyTabs-video--pause {
  background-image: url('data:image/svg+xml; utf8, <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.75 5h-4.5v18h4.5V5zM20.75 5h-4.5v18h4.5V5z" fill="%230A884B"/></svg>');
}
.StickyTabs-video--pause:hover {
  background-color: #0A884B;
  background-image: url('data:image/svg+xml; utf8, <svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.75 5h-4.5v18h4.5V5zM20.75 5h-4.5v18h4.5V5z" fill="%23FFFFFF"/></svg>');
}
.StickyTabs .mejs-container {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.StickyTabs .mejs-container .mejs-controls {
  background: rgba(0, 0, 0, 0);
}
.StickyTabs .mejs-mediaelement {
  padding: 0px 0px 0px 0px;
}
.StickyTabs .StickyTabs-content_tabs_content_item-accordion-mobile {
  display: none;
}
@media (max-width: 991px) {
  .StickyTabs.StickyTabs--accordion .StickyTabs-content_tabs_nav_select,
  .StickyTabs.StickyTabs--accordion .StickyTabs-content-Dropdown-menu,
  .StickyTabs.StickyTabs--accordion .StickyTabs-content_tabs_content_item-heading {
    display: none !important;
  }
  .StickyTabs.StickyTabs--accordion .StickyTabs-content_tabs_content_item-top-details {
    padding-top: 12px;
  }
  .StickyTabs.StickyTabs--accordion .StickyTabs-content_tabs_content_item-accordion-mobile {
    align-items: center;
    background-color: #fff;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 16px 20px;
    position: relative;
  }
  .StickyTabs.StickyTabs--accordion .StickyTabs-content_tabs_content_item-accordion-mobile-icon {
    height: 24px;
    width: 24px;
  }
  .StickyTabs.StickyTabs--accordion .StickyTabs-content_tabs_content_item-accordion-mobile-title {
    color: var(--primary-green);
    font-size: 20px;
    margin-left: 16px;
    margin-right: auto;
  }
  .StickyTabs.StickyTabs--accordion .StickyTabs-content_tabs_content_item-accordion-mobile-toggle {
    align-items: center;
    display: flex;
    transform-origin: center;
    transition: 0.2s;
  }
  .StickyTabs.StickyTabs--accordion .StickyTabs-content_tabs_content_item-accordion-mobile.open .StickyTabs-content_tabs_content_item-accordion-mobile-toggle {
    transform: rotate(180deg);
  }
  .StickyTabs.StickyTabs--accordion .StickyTabs-content_tabs_content_item {
    display: none;
  }
}

.fl-builder-content-primary .StickyTabs li:before {
  top: -1px;
}
/*# sourceMappingURL=frontend.css.map */
<br />
<b>Warning</b>:  Attempt to read property "counter_tab_details" on array in <b>/home/runcloud/webapps/elevaterhr-dev/wp-content/plugins/bb-plugin/classes/class-fl-builder-css.php</b> on line <b>702</b><br />
 .fl-node-2ykq73pwti6c > .fl-module-content {
	margin-top:64px;
}
@media ( max-width: 1440px ) {
 .fl-node-2ykq73pwti6c.fl-module > .fl-module-content {
	margin-top:64px;
}
}
@media ( max-width: 767px ) {
 .fl-node-2ykq73pwti6c.fl-module > .fl-module-content {
	margin-top:32px;
}
}
	.fl-builder-content .fl-node-el6rtozgwhi5 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-el6rtozgwhi5 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-row .fl-col .fl-node-315bwcmytzs9 h1.fl-heading a,
.fl-row .fl-col .fl-node-315bwcmytzs9 h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-315bwcmytzs9 h1.fl-heading .fl-heading-text *,
.fl-node-315bwcmytzs9 h1.fl-heading .fl-heading-text {
	color: #171717;
}
.fl-node-315bwcmytzs9.fl-module-heading .fl-heading {
	text-transform: capitalize;
}
@media(max-width: 991px) {
	.fl-node-315bwcmytzs9.fl-module-heading .fl-heading {
		text-align: center;
	}
}
	.fl-builder-content .fl-node-9bylw7o0n1ca .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-9bylw7o0n1ca .fl-module-content .fl-rich-text * {
		color: #488acc;
	}
	/*variables*/
/*$Viewport-hh: 320px;
$Viewport-xs: 480px;
$Viewport-sm: 768px;
$Viewport-md: 992px;
$Viewport-lg: 1200px;
$Viewport-xl: 1600px;*/
/*html, body {
    overflow-x: hidden;
}
.ProductReview-overflowX {
    @media screen and (max-width: 900px) {
        overflow-x: hidden;
        max-width: 100vw;
    }
}*/
body {
  overflow-x: hidden;
}

@media screen and (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
}

/*mixins*/
.ProductReview {
  position: relative;
  width: 100%;
  min-width: 740px;
  /*overflow-x: hidden;*/
  /*height: 824px;*/
  padding: 90px 0px 60px 0px;
  /*background-image: url(/wp-content/themes/elevatehr2023/assets/img/_ProductReview_3.jpg);
  background-position: center center;
  background-position: center 65px;
  background-repeat: no-repeat;
  @include ProductReview-inside-border(purple);*/
}
@media screen and (max-width: 479px) {
  .ProductReview {
    padding: 40px 0px 20px 0px;
  }
}

.ProductReview-topImage {
  position: absolute;
  z-index: 3;
  max-width: 292px;
  width: 23.55%;
  height: auto;
  display: block;
  opacity: 1;
  top: 0px;
  left: 0px;
}

.ProductReview-topImage--shadow {
  box-shadow: -75px 110px 40px 5px rgba(0, 0, 0, 0.27);
}

.ProductReview-mainImage {
  position: relative;
  z-index: 2;
  max-width: 822px;
  width: 66.3%;
  height: auto;
  display: block;
  margin: 0px auto 0px auto;
  opacity: 1;
  padding: 0px 0px 0px 0px;
}

.ProductReview-bottomImage {
  position: absolute;
  z-index: 3;
  max-width: 421px;
  width: 33.95%;
  height: auto;
  display: block;
  opacity: 1;
  bottom: 0px;
  right: 0px;
}

.ProductReview-topImage,
.ProductReview-bottomImage {
  padding: 20px;
  overflow: hidden;
  border-radius: 30px;
}
.ProductReview-topImage:before, .ProductReview-topImage:after,
.ProductReview-bottomImage:before,
.ProductReview-bottomImage:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 30px;
  z-index: 0;
}
.ProductReview-topImage:before,
.ProductReview-bottomImage:before {
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.ProductReview-topImage:after,
.ProductReview-bottomImage:after {
  background-color: rgba(88, 116, 124, 0.2);
  filter: blur(10px);
}
.ProductReview-topImage img,
.ProductReview-bottomImage img {
  position: relative;
  z-index: 1;
}

/*titles*/
.ProductReview-titleWrapper {
  position: absolute;
  z-index: 1;
  opacity: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 67px;
  /*@include ProductReview-inside-border(red);*/
}
@media screen and (max-width: 1350px) {
  .ProductReview-titleWrapper {
    margin-top: 20px;
  }
}

.ProductReview-lines {
  position: relative;
  width: 55px;
  height: 180px;
  /*@media screen and (max-width: ($Viewport-lg - 1px)) {
      height: 160px;
  }
  @media screen and (max-width: ($Viewport-md - 1px)) {
      height: 120px;
  }
  @media screen and (max-width: ($Viewport-sm - 1px)) {
      width: 38px;
      height: 90px;
  }
  @media screen and (max-width: 600px) {
      height: 70px;
  }
  @media screen and (max-width: ($Viewport-xs - 1px)) {
      height: 60px;
  } */
}
.ProductReview-lines::before {
  position: absolute;
  content: "";
  border: solid 1px #f8f7f4;
  border-radius: 2000px;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 767px) {
  .ProductReview-lines::before {
    width: 15px;
    height: 15px;
  }
}

.ProductReview-btnAndTitle {
  position: relative;
  left: -59px;
  top: -35px;
}
@media screen and (max-width: 1200px) {
  .ProductReview-btnAndTitle {
    left: calc(50% - 30px);
    top: -75px;
  }
}

.ProductReview-title {
  font-family: "Exo 2", sans-serif;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  position: relative;
  top: -10px;
  text-align: center;
  padding: 0px 0px 0px 0px;
}
@media screen and (max-width: 991px) {
  .ProductReview-title {
    font-family: "Exo 2", sans-serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .ProductReview-title {
    font-family: "Exo 2", sans-serif;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.4;
  }
}

.ProductReview-btn {
  position: relative;
  width: 220px;
  display: block;
  font-family: "Exo 2", sans-serif;
  color: #171717;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.6;
  text-transform: capitalize;
  text-decoration: none !important;
  text-align: center;
  padding: 12px 30px 12px 0px;
  border-radius: 100px;
  border: solid 1px #FFFFFF;
  background-color: #FFFFFF;
}
.ProductReview-btn::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  margin: 1px 0px 0px 10px;
  background: url('data:image/svg+xml; utf8, <svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m7.5 17 10-10m0 0h-10m10 0v10" stroke="%23171717" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
}
.ProductReview-btn:hover {
  background-color: #0a884b;
  border-color: #ffffff;
  color: #ffffff;
}
.ProductReview-btn:hover:after {
  background-image: url("/wp-content/themes/elevatehr2023/assets/images/button-wrrow-right-white.svg");
}

@media screen and (max-width: 1200px) {
  .ProductReview-titleWrapperLeft {
    left: -35px;
  }
}
@media screen and (max-width: 991px) {
  .ProductReview-titleWrapperLeft {
    left: -105px;
  }
}
@media screen and (max-width: 767px) {
  .ProductReview-titleWrapperLeft {
    left: -80px;
  }
}
.ProductReview-titleWrapperLeft .ProductReview-lines {
  margin-left: 89%;
  margin-top: -57px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.ProductReview-titleWrapperLeft .ProductReview-lines::before {
  left: -23px;
  top: -10px;
}
@media screen and (max-width: 767px) {
  .ProductReview-titleWrapperLeft .ProductReview-lines::before {
    left: -14px;
    top: -8px;
  }
}

.ProductReview-titleWrapperCenter {
  left: 49%;
  transform: translateX(-49%);
  margin-top: 10px;
}
.ProductReview-titleWrapperCenter .ProductReview-btnAndTitle {
  left: 0px;
  top: -25px;
}
.ProductReview-titleWrapperCenter .ProductReview-lines {
  width: 1px;
  left: 50%;
  margin-left: 5px;
  margin-top: 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.ProductReview-titleWrapperCenter .ProductReview-lines::before {
  left: -11px;
  top: -22px;
}
@media screen and (max-width: 767px) {
  .ProductReview-titleWrapperCenter .ProductReview-lines::before {
    left: -8px;
    top: -15px;
  }
}
@media screen and (max-width: 1350px) {
  .ProductReview-titleWrapperCenter {
    margin-top: -32px;
  }
}

.ProductReview-titleWrapperRight {
  right: 0px;
}
@media screen and (max-width: 1200px) {
  .ProductReview-titleWrapperRight {
    right: -35px;
  }
}
@media screen and (max-width: 991px) {
  .ProductReview-titleWrapperRight {
    right: -95px;
  }
}
.ProductReview-titleWrapperRight .ProductReview-btnAndTitle {
  left: 57px;
}
@media screen and (max-width: 1200px) {
  .ProductReview-titleWrapperRight .ProductReview-btnAndTitle {
    left: -80px;
  }
}
.ProductReview-titleWrapperRight .ProductReview-lines {
  left: 0%;
  margin-top: -58px;
  margin-left: -33px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.ProductReview-titleWrapperRight .ProductReview-lines::before {
  left: 55px;
  top: -10px;
}
@media screen and (max-width: 767px) {
  .ProductReview-titleWrapperRight .ProductReview-lines::before {
    left: 54px;
    top: -8px;
  }
}

/*body .ProductReview * {
    color: #FF0000 !important;
}*/
/*# sourceMappingURL=frontend.css.map */
 .fl-node-8oxmdnwaieu2 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:230px;
	margin-left:0px;
}
@media ( max-width: 991px ) {
 .fl-node-8oxmdnwaieu2.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:120px;
}
}
@media ( max-width: 767px ) {
 .fl-node-8oxmdnwaieu2.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:120px;
}
}
.fl-node-z8qowby3g264, .fl-node-z8qowby3g264 .fl-photo {
	text-align: center;
}
.TransitionSectionDark {
  position: relative;
}
.TransitionSectionDark .CloudTransition {
  position: absolute;
  width: 100%;
  top: -100px;
  left: 0;
  z-index: 1;
}
@media (min-width: 992px) {
  .TransitionSectionDark .CloudTransition {
    overflow-x: clip !important;
  }
}
@media (max-width: 991px) {
  .TransitionSectionDark .CloudTransition {
    overflow-x: visible !important;
  }
}
@media (min-width: 2400px) {
  .TransitionSectionDark .CloudTransition {
    top: -150px;
  }
}
@media (min-width: 1200px) and (max-width: 1720px) {
  .TransitionSectionDark .CloudTransition {
    top: -50px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .TransitionSectionDark .CloudTransition {
    top: 0;
  }
}
@media (max-width: 767px) {
  .TransitionSectionDark .CloudTransition {
    top: -130px;
  }
}
.TransitionSectionDark .CloudTransition-section {
  height: 100px;
  background: #fff;
  margin-bottom: -1px;
}
.TransitionSectionDark .CloudTransition img {
  width: 100%;
  transform: rotate(180deg);
  -o-object-fit: cover;
     object-fit: cover;
}

.TransitionSectionLight {
  position: relative;
  z-index: 2;
}
.TransitionSectionLight .CloudTransition {
  position: absolute;
  width: 100%;
  top: 200px !important;
  left: 0;
  z-index: 1;
  transform: rotate(180deg);
}
@media (min-width: 1720px) and (max-width: 2399px) {
  .TransitionSectionLight .CloudTransition {
    top: 250px !important;
  }
}
@media (min-width: 2400px) {
  .TransitionSectionLight .CloudTransition {
    top: 350px !important;
  }
}
@media (max-width: 991px) {
  .TransitionSectionLight .CloudTransition {
    top: 100px !important;
  }
}
@media (max-width: 767px) {
  .TransitionSectionLight .CloudTransition {
    top: 0 !important;
  }
}
.TransitionSectionLight .CloudTransition img {
  width: 100%;
  transform: rotate(180deg);
  -o-object-fit: cover;
     object-fit: cover;
}

.CloudTransition-clouds {
  position: relative;
}
.CloudTransition-clouds img {
  position: absolute;
}

.CloudTransition-cloud1 {
  top: 50px;
}
@media (max-width: 767px) {
  .CloudTransition-cloud1 {
    top: 0;
  }
}

.CloudTransition-cloud3 {
  left: 75px;
}
@media (min-width: 992px) and (max-width: 1300px) {
  .CloudTransition-cloud3 {
    left: 250px;
  }
}
@media (max-width: 991px) {
  .CloudTransition-cloud3 {
    left: 0;
  }
}

.TransitionSectionFade {
  opacity: 0;
}

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

.CloudTransition-static_image {
  z-index: 1;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.CloudTransition-static_image_inverted {
  z-index: 1;
  position: absolute;
  width: 100%;
  top: 0px;
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  .CloudTransition-cloud, .CloudTransition-cloud1, .CloudTransition-cloud2, .CloudTransition-cloud3 {
    display: none;
  }
}
.CloudTransition-mobile {
  display: none;
}
@media (max-width: 767px) {
  .CloudTransition-mobile {
    display: block;
  }
}

.CloudTransition-tablet {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .CloudTransition-tablet {
    display: block;
    top: 90px;
  }
}

.TransitionSectionDark .CloudTransition-tablet {
  top: 0;
}

body {
  overflow-x: hidden;
}
/*# sourceMappingURL=frontend.css.map */

.fl-builder-content-7245 .fl-node-0gryzjno5t34 {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 16px;
	padding-right: 16px;
	padding-bottom: 16px;
	padding-left: 16px;
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(255,255,255,0.4);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
@media(max-width: 767px) {
	.fl-builder-content-7245 .fl-node-0gryzjno5t34 {
		padding-top: 24px;
		padding-right: 24px;
		padding-bottom: 24px;
		padding-left: 24px;
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
		border-bottom-left-radius: 16px;
		border-bottom-right-radius: 16px;
	}
}
	.fl-builder-content .fl-node-1mdr3z5ws4op .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-1mdr3z5ws4op .fl-module-content .fl-rich-text * {
		color: #171717;
	}
	.fl-builder-content .fl-node-1mdr3z5ws4op .fl-rich-text, .fl-builder-content .fl-node-1mdr3z5ws4op .fl-rich-text *:not(b, strong) {
	font-weight: 700;
}
	.fl-builder-content .fl-node-x90q2y3hb8dg .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-x90q2y3hb8dg .fl-module-content .fl-rich-text * {
		color: #171717;
	}
	.fl-builder-content .fl-node-x90q2y3hb8dg .fl-rich-text, .fl-builder-content .fl-node-x90q2y3hb8dg .fl-rich-text *:not(b, strong) {
	font-weight: 700;
}














.fl-node-e6yx38i0cgof.fl-button-wrap, .fl-node-e6yx38i0cgof .fl-button-wrap {
	text-align: left;
}
@media(max-width: 991px) {
	.fl-node-e6yx38i0cgof.fl-button-wrap, .fl-node-e6yx38i0cgof .fl-button-wrap {
		text-align: center;
	}
	.fl-builder-content .fl-node-e6yx38i0cgof a.fl-button, .fl-builder-content .fl-node-e6yx38i0cgof a.fl-button:visited, .fl-page .fl-builder-content .fl-node-e6yx38i0cgof a.fl-button, .fl-page .fl-builder-content .fl-node-e6yx38i0cgof a.fl-button:visited {
		text-align: center;
	}
}
@media ( max-width: 767px ) {
 .fl-node-e6yx38i0cgof.fl-module > .fl-module-content {
	margin-top:0px;
}
}
	.fl-builder-content .fl-node-3y8rub2jd461 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-3y8rub2jd461 .fl-module-content .fl-rich-text * {
		color: #171717;
	}
	.fl-builder-content .fl-node-3y8rub2jd461 .fl-rich-text, .fl-builder-content .fl-node-3y8rub2jd461 .fl-rich-text *:not(b, strong) {
	font-weight: 700;
}
.MountainTransition {
  background-color: transparent;
  font-size: 99px;
  height: 105vh;
  padding-top: 75px;
  position: relative;
  width: 100vw;
}
@media (min-width: 1260px) {
  .MountainTransition {
    min-height: 700px;
  }
}
@media (max-width: 1920px) {
  .MountainTransition {
    overflow: hidden;
    text-align: center;
  }
}
@media only screen and (min-device-width: 767px) and (max-device-width: 860px) and (orientation: portrait) {
  .MountainTransition {
    height: 830px;
  }
}
@media (max-width: 767px) {
  .MountainTransition {
    height: 750px;
  }
}
@media (max-width: 710px) {
  .MountainTransition {
    height: 700px;
  }
}
@media (max-width: 650px) {
  .MountainTransition {
    height: 650px;
  }
}
@media (max-width: 585px) {
  .MountainTransition {
    height: 610px;
  }
}
@media (max-width: 545px) {
  .MountainTransition {
    height: 560px;
  }
}
@media (max-width: 499px) {
  .MountainTransition {
    padding-top: 65px;
    height: 810px;
  }
}
@media (max-width: 480px) {
  .MountainTransition {
    height: 730px;
  }
}
@media (max-width: 425px) {
  .MountainTransition {
    height: 700px;
  }
}
@media (max-width: 405px) {
  .MountainTransition {
    height: 650px;
  }
}
@media (max-width: 390px) {
  .MountainTransition {
    padding-top: 45px;
  }
}
@media (max-width: 383px) {
  .MountainTransition {
    height: 605px;
  }
}
@media (max-width: 365px) {
  .MountainTransition {
    padding-top: 40px;
  }
}
@media (max-width: 350px) {
  .MountainTransition {
    height: 590px;
  }
}
@media (max-width: 340px) {
  .MountainTransition {
    height: 570px;
  }
}
@media (max-width: 330px) {
  .MountainTransition {
    height: 565px;
    padding-top: 35px;
  }
}
@media (max-width: 320px) {
  .MountainTransition {
    height: 550px;
  }
}
.MountainTransition.one_image_clouds-content {
  height: auto;
}
.MountainTransition.mountain_with_clouds-content .SVGwireframe svg {
  min-width: 1920px;
}
@media (max-width: 1025px) {
  .MountainTransition.mountain_with_clouds-content .SVGwireframe svg {
    min-width: 1400px;
  }
}
@media (max-width: 711px) {
  .MountainTransition.mountain_with_clouds-content .SVGwireframe svg {
    min-width: 20px;
  }
}
.MountainTransition.mountain_with_clouds-content .MountainTransition-svg-wrapper {
  min-width: 1920px;
}
@media (max-width: 1025px) {
  .MountainTransition.mountain_with_clouds-content .MountainTransition-svg-wrapper {
    min-width: 1400px;
  }
}
@media (max-width: 711px) {
  .MountainTransition.mountain_with_clouds-content .MountainTransition-svg-wrapper {
    min-width: 20px;
  }
}
@media (max-width: 1440px) {
  .MountainTransition-svg-wrapper {
    display: block;
    width: 135vw;
    position: relative;
    left: -20vw;
    right: auto;
    margin: auto;
  }
}
@media (max-width: 1199px) {
  .MountainTransition-svg-wrapper {
    width: 155vw;
    left: -26vw;
  }
}
@media (max-width: 1025px) {
  .MountainTransition-svg-wrapper {
    left: -19vw;
  }
}
@media (max-width: 991px) {
  .MountainTransition-svg-wrapper {
    width: 200vw;
    left: -39vw;
  }
}
@media (max-width: 499px) {
  .MountainTransition-svg-wrapper {
    width: 330vw;
    left: -97vw;
  }
}
@media (max-width: 1440px) {
  .MountainTransition-svg-wrapper-one-image {
    width: 105vw;
    left: -2.5vw;
  }
}
@media (max-width: 1199px) {
  .MountainTransition-svg-wrapper-one-image {
    width: 115vw;
    left: -7.5vw;
  }
}
@media (max-width: 1025px) {
  .MountainTransition-svg-wrapper-one-image {
    left: -7.5vw;
  }
}
@media (max-width: 991px) {
  .MountainTransition-svg-wrapper-one-image {
    width: 125vw;
    left: -12.5vw;
  }
}
@media (max-width: 499px) {
  .MountainTransition-svg-wrapper-one-image {
    width: 150vw;
    left: -25vw;
  }
}
.MountainTransition-svg-wrapper-one-image .mountBgOne {
  display: block;
  width: 100%;
}
.MountainTransition-green-background {
  background: #38654E;
  background: linear-gradient(to top, #38654E 76%, #FFFFFF 100%);
  bottom: -30px;
  display: block;
  height: 40vh;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: -1;
}
@media (min-width: 1925px) {
  .MountainTransition-green-background {
    height: 45vh;
    max-height: 485px;
  }
}
@media (max-width: 767px) {
  .MountainTransition-green-background {
    height: 36vh;
  }
}
@media screen and (max-width: 810px) and (min-height: 1010px) and (orientation: portrait) {
  .MountainTransition-green-background {
    height: 25vh;
  }
}
.MountainTransition-green-background-fade {
  bottom: -20px;
  left: 0;
  right: 0;
  opacity: 0.9;
}
@media (min-width: 1925px) {
  .MountainTransition-green-background-fade {
    width: 100%;
    display: block;
  }
  .MountainTransition-green-background-fade img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .MountainTransition-green-background-fade {
    bottom: 40px;
    left: -100px;
    right: -100px;
  }
}
.MountainTransition-green-background.MountainTransition-blue-background {
  background: #488acc;
  background: linear-gradient(to top, #488acc 76%, #FFFFFF 100%);
}
.MountainTransition-white-background {
  background-color: white;
  display: block;
  height: 500px;
  width: 100%;
}
.MountainTransition div {
  position: absolute;
}
.MountainTransition .scrollDist {
  left: 0;
  right: 0;
  top: 0;
}
.MountainTransition .svg-network.AnimatedWireframe {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .MountainTransition .svg-network.AnimatedWireframe {
    overflow: visible;
  }
}
.MountainTransition .svg-network.AnimatedWireframe:after {
  display: none;
  height: 0;
}
.MountainTransition .svg-network.AnimatedWireframe div {
  position: static;
}
.MountainTransition .svg-network.AnimatedWireframe .anim.AnimatedWireframeAnim {
  position: relative;
  width: 100%;
  height: 100%;
}
.MountainTransition .svg-network.AnimatedWireframe .anim.AnimatedWireframeAnim svg {
  position: relative;
  width: 80%;
  height: 100%;
  opacity: 0.8;
}
.MountainTransition .svg-network.AnimatedWireframe .anim.AnimatedWireframeAnim path {
  stroke-width: 1;
}
.MountainTransition .svg-network.AnimatedWireframe .anim.AnimatedWireframeAnim .dot {
  opacity: 0;
  fill: #488ACC, #1F8C43;
}
.MountainTransition .svg-network .SVGwireframe svg {
  top: -30px;
  left: 0;
  right: 0;
}
@media (max-width: 1440px) {
  .MountainTransition .svg-network .SVGwireframe svg {
    width: 135vw;
    left: -20vw;
  }
}
@media (max-width: 1199px) {
  .MountainTransition .svg-network .SVGwireframe svg {
    width: 155vw;
    left: -26vw;
  }
}
@media (max-width: 1025px) {
  .MountainTransition .svg-network .SVGwireframe svg {
    left: -19vw;
  }
}
@media (max-width: 991px) {
  .MountainTransition .svg-network .SVGwireframe svg {
    width: 200vw;
    left: -39vw;
    transform: translateX(0);
  }
}
@media (max-width: 499px) {
  .MountainTransition .svg-network .SVGwireframe svg {
    width: 210vw;
    left: -43vw;
  }
}
.MountainTransition .svg-network #tsparticles,
.MountainTransition .svg-network div.AnimatedWireframeWrap.AnimatedWireframeDots.AnimatedWireframeDotsWrapper,
.MountainTransition .svg-network #SVGwireframe-lottie,
.MountainTransition .svg-network #SVGwireframe-lottie-2 {
  height: 780px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
}
@media (max-width: 1800px) {
  .MountainTransition .svg-network #tsparticles,
  .MountainTransition .svg-network div.AnimatedWireframeWrap.AnimatedWireframeDots.AnimatedWireframeDotsWrapper,
  .MountainTransition .svg-network #SVGwireframe-lottie,
  .MountainTransition .svg-network #SVGwireframe-lottie-2 {
    width: 111vw;
    left: -5.5vw;
  }
}
@media (max-width: 1440px) {
  .MountainTransition .svg-network #tsparticles,
  .MountainTransition .svg-network div.AnimatedWireframeWrap.AnimatedWireframeDots.AnimatedWireframeDotsWrapper,
  .MountainTransition .svg-network #SVGwireframe-lottie,
  .MountainTransition .svg-network #SVGwireframe-lottie-2 {
    width: 135vw;
    left: -20vw;
  }
}
@media (max-width: 1366px) {
  .MountainTransition .svg-network #tsparticles,
  .MountainTransition .svg-network div.AnimatedWireframeWrap.AnimatedWireframeDots.AnimatedWireframeDotsWrapper,
  .MountainTransition .svg-network #SVGwireframe-lottie,
  .MountainTransition .svg-network #SVGwireframe-lottie-2 {
    width: 137vw;
    left: -19vw;
  }
}
@media (max-width: 1199px) {
  .MountainTransition .svg-network #tsparticles,
  .MountainTransition .svg-network div.AnimatedWireframeWrap.AnimatedWireframeDots.AnimatedWireframeDotsWrapper,
  .MountainTransition .svg-network #SVGwireframe-lottie,
  .MountainTransition .svg-network #SVGwireframe-lottie-2 {
    width: 155vw;
    left: -26vw;
  }
}
@media (max-width: 1025px) {
  .MountainTransition .svg-network #tsparticles,
  .MountainTransition .svg-network div.AnimatedWireframeWrap.AnimatedWireframeDots.AnimatedWireframeDotsWrapper,
  .MountainTransition .svg-network #SVGwireframe-lottie,
  .MountainTransition .svg-network #SVGwireframe-lottie-2 {
    left: -19vw;
  }
}
@media (max-width: 991px) {
  .MountainTransition .svg-network #tsparticles,
  .MountainTransition .svg-network div.AnimatedWireframeWrap.AnimatedWireframeDots.AnimatedWireframeDotsWrapper,
  .MountainTransition .svg-network #SVGwireframe-lottie,
  .MountainTransition .svg-network #SVGwireframe-lottie-2 {
    width: 200vw;
    left: -39vw;
    transform: translateX(0);
  }
}
@media (max-width: 499px) {
  .MountainTransition .svg-network #tsparticles,
  .MountainTransition .svg-network div.AnimatedWireframeWrap.AnimatedWireframeDots.AnimatedWireframeDotsWrapper,
  .MountainTransition .svg-network #SVGwireframe-lottie,
  .MountainTransition .svg-network #SVGwireframe-lottie-2 {
    width: 210vw;
    left: -43vw;
  }
}
.MountainTransition .svg-network #tsparticles canvas,
.MountainTransition .svg-network div.AnimatedWireframeWrap.AnimatedWireframeDots.AnimatedWireframeDotsWrapper canvas,
.MountainTransition .svg-network #SVGwireframe-lottie canvas,
.MountainTransition .svg-network #SVGwireframe-lottie-2 canvas {
  bottom: 0;
  display: block;
  height: 100%;
  left: -4%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

@keyframes dotBlink {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.main.one_image_clouds-content:before {
  background: linear-gradient(180deg, white, transparent);
  content: "";
  height: 100px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

#SVGwireframe-lottie {
  aspect-ratio: 1920/780;
  height: auto !important;
}

.MountainTransition .AnimatedWireframe svg > g > g:nth-child(1) {
  opacity: 0.9;
}

.MountainTransition .AnimatedWireframe svg > g > g:nth-child(2) {
  opacity: 0.5;
}

@media (min-width: 1801px) and (max-width: 1920px) {
  .ServiceMountain #SVGwireframe-lottie svg {
    min-width: 1920px;
  }
}
@media (min-width: 1441px) and (max-width: 1800px) {
  .ServiceMountain #SVGwireframe-lottie svg {
    height: auto !important;
    min-width: 2100px;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .ServiceMountain #SVGwireframe-lottie svg {
    height: auto !important;
    width: 1810px !important;
  }
}
/*# sourceMappingURL=frontend.css.map */
@media(max-width: 991px) {
	.fl-builder-content .fl-node-b3pix25uml86 .fl-rich-text, .fl-builder-content .fl-node-b3pix25uml86 .fl-rich-text *:not(b, strong) {
		letter-spacing: -0.25px;
		text-align: center;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-b3pix25uml86 .fl-rich-text, .fl-builder-content .fl-node-b3pix25uml86 .fl-rich-text *:not(b, strong) {
		line-height: 1.6;
	}
}
 .fl-node-b3pix25uml86 > .fl-module-content {
	margin-top:20px;
}
@media ( max-width: 767px ) {
 .fl-node-b3pix25uml86.fl-module > .fl-module-content {
	margin-top:20px;
}
}














.fl-node-l53dw2znhk6m.fl-button-wrap, .fl-node-l53dw2znhk6m .fl-button-wrap {
	text-align: left;
}
 .fl-node-l53dw2znhk6m > .fl-module-content {
	margin-top:32px;
}
@media ( max-width: 767px ) {
 .fl-node-l53dw2znhk6m.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
@media (max-width: 767px) { .fl-node-l53dw2znhk6m > .fl-module-content { margin-top:px; } }.fl-builder-content-7245 .fl-node-n2i3ou4a9k7y {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 16px;
	padding-right: 16px;
	padding-bottom: 16px;
	padding-left: 16px;
	background-color: #ffffff;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgba(255,255,255,0.4);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
@media(max-width: 767px) {
	.fl-builder-content-7245 .fl-node-n2i3ou4a9k7y {
		padding-top: 24px;
		padding-right: 24px;
		padding-bottom: 24px;
		padding-left: 24px;
		border-top-left-radius: 16px;
		border-top-right-radius: 16px;
		border-bottom-left-radius: 16px;
		border-bottom-right-radius: 16px;
	}
}
.fl-row .fl-col .fl-node-gwp6c8dkyuam h2.fl-heading a,
.fl-row .fl-col .fl-node-gwp6c8dkyuam h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-gwp6c8dkyuam h2.fl-heading .fl-heading-text *,
.fl-node-gwp6c8dkyuam h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-gwp6c8dkyuam.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-gwp6c8dkyuam > .fl-module-content {
	margin-bottom:32px;
}
@media (max-width: 767px) { .fl-node-gwp6c8dkyuam > .fl-module-content { margin-bottom:px; } }.fl-node-xhz3vb0yglrs, .fl-node-xhz3vb0yglrs .fl-photo {
	text-align: center;
}

.fl-builder-content-7245 .fl-node-iytdpj7o1cn4 {
	display: flex;
	flex-direction: row;
	gap: 16px;
}
@media(max-width: 991px) {
	.fl-builder-content-7245 .fl-node-iytdpj7o1cn4 {
		flex-direction: column;
	}
}
@media(max-width: 767px) {
	.fl-builder-content-7245 .fl-node-iytdpj7o1cn4 {
		gap: 24px;
	}
}














.fl-node-dbsg5mv72h0a.fl-button-wrap, .fl-node-dbsg5mv72h0a .fl-button-wrap {
	text-align: left;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-dbsg5mv72h0a a.fl-button {
		padding-top: 8px;
		padding-right: 33.5px;
		padding-bottom: 8px;
		padding-left: 33.5px;
	}
	.fl-builder-content .fl-node-dbsg5mv72h0a a.fl-button, .fl-builder-content .fl-node-dbsg5mv72h0a a.fl-button:visited, .fl-builder-content .fl-node-dbsg5mv72h0a a.fl-button:hover, .fl-builder-content .fl-node-dbsg5mv72h0a a.fl-button:focus, .fl-page .fl-builder-content .fl-node-dbsg5mv72h0a a.fl-button, .fl-page .fl-builder-content .fl-node-dbsg5mv72h0a a.fl-button:visited, .fl-page .fl-builder-content .fl-node-dbsg5mv72h0a a.fl-button:hover, .fl-page .fl-builder-content .fl-node-dbsg5mv72h0a a.fl-button:focus {
		border-top-left-radius: 25px;
		border-top-right-radius: 25px;
		border-bottom-left-radius: 25px;
		border-bottom-right-radius: 25px;
	}
}














.fl-node-xei4u6m0a35r.fl-button-wrap, .fl-node-xei4u6m0a35r .fl-button-wrap {
	text-align: left;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-xei4u6m0a35r a.fl-button {
		padding-top: 8px;
		padding-right: 33.5px;
		padding-bottom: 8px;
		padding-left: 33.5px;
	}
	.fl-builder-content .fl-node-xei4u6m0a35r a.fl-button, .fl-builder-content .fl-node-xei4u6m0a35r a.fl-button:visited, .fl-builder-content .fl-node-xei4u6m0a35r a.fl-button:hover, .fl-builder-content .fl-node-xei4u6m0a35r a.fl-button:focus, .fl-page .fl-builder-content .fl-node-xei4u6m0a35r a.fl-button, .fl-page .fl-builder-content .fl-node-xei4u6m0a35r a.fl-button:visited, .fl-page .fl-builder-content .fl-node-xei4u6m0a35r a.fl-button:hover, .fl-page .fl-builder-content .fl-node-xei4u6m0a35r a.fl-button:focus {
		border-top-left-radius: 25px;
		border-top-right-radius: 25px;
		border-bottom-left-radius: 25px;
		border-bottom-right-radius: 25px;
	}
}














.fl-node-kqadzhtuv16w.fl-button-wrap, .fl-node-kqadzhtuv16w .fl-button-wrap {
	text-align: left;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-kqadzhtuv16w a.fl-button {
		padding-top: 8px;
		padding-right: 33.5px;
		padding-bottom: 8px;
		padding-left: 33.5px;
	}
	.fl-builder-content .fl-node-kqadzhtuv16w a.fl-button, .fl-builder-content .fl-node-kqadzhtuv16w a.fl-button:visited, .fl-builder-content .fl-node-kqadzhtuv16w a.fl-button:hover, .fl-builder-content .fl-node-kqadzhtuv16w a.fl-button:focus, .fl-page .fl-builder-content .fl-node-kqadzhtuv16w a.fl-button, .fl-page .fl-builder-content .fl-node-kqadzhtuv16w a.fl-button:visited, .fl-page .fl-builder-content .fl-node-kqadzhtuv16w a.fl-button:hover, .fl-page .fl-builder-content .fl-node-kqadzhtuv16w a.fl-button:focus {
		border-top-left-radius: 25px;
		border-top-right-radius: 25px;
		border-bottom-left-radius: 25px;
		border-bottom-right-radius: 25px;
	}
}
.fl-builder-content-7245 .fl-node-3zimbjtc7pd4 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
}
@media(max-width: 991px) {
	.fl-builder-content-7245 .fl-node-3zimbjtc7pd4 {
		justify-content: center;
	}
}
@media(max-width: 767px) {
	.fl-builder-content-7245 .fl-node-3zimbjtc7pd4 {
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;
		gap: 16px;
	}
}
 .fl-node-3zimbjtc7pd4.fl-module-box {
	margin-top:40px;
}
@media ( max-width: 767px ) {
 .fl-node-3zimbjtc7pd4.fl-module-box.fl-module {
	margin-top:40px;
}
}
.fl-node-ugir3awv9jb2 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-ugir3awv9jb2 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
 .fl-node-ugir3awv9jb2 > .fl-module-content {
	margin-top:40px;
	margin-bottom:72px;
}
@media ( max-width: 991px ) {
 .fl-node-ugir3awv9jb2.fl-module > .fl-module-content {
	margin-top:48px;
}
}
@media ( max-width: 767px ) {
 .fl-node-ugir3awv9jb2.fl-module > .fl-module-content {
	margin-top:56px;
	margin-bottom:40px;
}
}
.fl-row .fl-col .fl-node-lbwfr9qomi2h h2.fl-heading a,
.fl-row .fl-col .fl-node-lbwfr9qomi2h h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-lbwfr9qomi2h h2.fl-heading .fl-heading-text *,
.fl-node-lbwfr9qomi2h h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-lbwfr9qomi2h.fl-module-heading .fl-heading {
	text-align: center;
}
@media ( max-width: 767px ) {
 .fl-node-lbwfr9qomi2h.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.SSCMMarquee-slick {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.SSCMMarquee-img {
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.SSCMMarquee-white img {
  filter: invert(1) brightness(5) saturate(0);
}
.SSCMMarquee-black img {
  filter: invert(1) brightness(0) saturate(0);
}
.SSCMMarquee-edge .slick-list::before,
.SSCMMarquee-edge .slick-list::after {
  content: '';
  display: block!important;
  width: 20%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
}
.SSCMMarquee-edge .slick-list::before {
  left: 0;
}
.SSCMMarquee-edge .slick-list::after {
  right: 0;
}
.SSCMMarquee-metrics {
  text-align: center;
  font-size: 20px;
}
.SSCMMarquee-content {
  height: auto !important;
  padding-left: calc(var(--SSCMMarquee-content--spacing) / 2);
  padding-right: calc(var(--SSCMMarquee-content--spacing) / 2);
}
.SSCMMarquee-slick .slick-track {
  display: flex;
  justify-content: stretch;
}
.SSCMMarquee-fake_slide {
  display: flex !important;
}

/*# sourceMappingURL=frontend.css.map */
.fl-node-lzpgihv4jcdn .SSCMMarquee-edge .slick-list::before {
	background: linear-gradient(270deg,rgba(255,255,255,0) 0, #38654e 100%);;
}
.fl-node-lzpgihv4jcdn .SSCMMarquee-edge .slick-list::after {
	background: linear-gradient(90deg,rgba(255,255,255,0) 0, #38654e 100%);;
}
.fl-node-lzpgihv4jcdn .SSCMMarquee-content {
	--SSCMMarquee-content--spacing: 96px;
}
.fl-node-lzpgihv4jcdn .SSCMMarquee-img {
	height: 45px;
}
@media(max-width: 1440px) {
	.fl-node-lzpgihv4jcdn .SSCMMarquee-content {
		--SSCMMarquee-content--spacing: 96px;
	}
}
@media(max-width: 991px) {
	.fl-node-lzpgihv4jcdn .SSCMMarquee-content {
		--SSCMMarquee-content--spacing: 96px;
	}
}
@media(max-width: 767px) {
	.fl-node-lzpgihv4jcdn .SSCMMarquee-content {
		--SSCMMarquee-content--spacing: 64px;
	}
}
 .fl-node-lzpgihv4jcdn > .fl-module-content {
	margin-top:72px;
	margin-right:-48px;
	margin-left:-48px;
}
@media ( max-width: 991px ) {
 .fl-node-lzpgihv4jcdn.fl-module > .fl-module-content {
	margin-top:64px;
	margin-right:0px;
	margin-left:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-lzpgihv4jcdn.fl-module > .fl-module-content {
	margin-top:32px;
	margin-right:0px;
	margin-left:0px;
}
}
.fl-row .fl-col .fl-node-it47yjqdf9av h2.fl-heading a,
.fl-row .fl-col .fl-node-it47yjqdf9av h2.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-it47yjqdf9av h2.fl-heading .fl-heading-text *,
.fl-node-it47yjqdf9av h2.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-it47yjqdf9av.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-it47yjqdf9av > .fl-module-content {
	margin-bottom:24px;
}
@media ( max-width: 991px ) {
 .fl-node-it47yjqdf9av.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
@media (max-width: 767px) { .fl-node-it47yjqdf9av > .fl-module-content { margin-bottom:px; } }	.fl-builder-content .fl-node-yu6opi9ncjzh .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-yu6opi9ncjzh .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-yu6opi9ncjzh .fl-rich-text, .fl-builder-content .fl-node-yu6opi9ncjzh .fl-rich-text *:not(b, strong) {
	text-align: center;
}
@media(max-width: 991px) {
	.fl-builder-content .fl-node-yu6opi9ncjzh .fl-rich-text, .fl-builder-content .fl-node-yu6opi9ncjzh .fl-rich-text *:not(b, strong) {
		letter-spacing: -0.25px;
	}
}
 .fl-node-yu6opi9ncjzh > .fl-module-content {
	margin-bottom:24px;
}
@media ( max-width: 991px ) {
 .fl-node-yu6opi9ncjzh.fl-module > .fl-module-content {
	margin-bottom:20px;
}
}
@media (max-width: 767px) { .fl-node-yu6opi9ncjzh > .fl-module-content { margin-bottom:px; } }/**
 * Horizontal Layout
 */
.fl-button-group-layout-horizontal .fl-button-group-buttons,
.fl-button-group-layout-horizontal.fl-button-group-buttons {
    display: flex;
    flex-wrap: wrap;
}

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

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

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

.fl-node-wit19skmpah4 .fl-button-group-layout-vertical .fl-button-group-buttons a.fl-button,
.fl-node-wit19skmpah4 .fl-button-group-layout-horizontal .fl-button-group-buttons a.fl-button {
	width: 283px;
}
.fl-node-wit19skmpah4 .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: flex-start}



		#fl-button-group-button-wit19skmpah4-0 a.fl-button > span,
		#fl-button-group-button-wit19skmpah4-0 a.fl-button > i {
			color: #171717;
		}
				#fl-button-group-button-wit19skmpah4-0 a.fl-button:hover > span,
		#fl-button-group-button-wit19skmpah4-0 a.fl-button:focus > span,
		#fl-button-group-button-wit19skmpah4-0 a.fl-button:hover > i,
		#fl-button-group-button-wit19skmpah4-0 a.fl-button:focus > i {
			color: #ffffff;
		}
		
	#fl-button-group-button-wit19skmpah4-0 a.fl-button {
									background: #ffffff;
					
			}

			#fl-button-group-button-wit19skmpah4-0 a.fl-button:hover,
		#fl-button-group-button-wit19skmpah4-0 a.fl-button:focus {
			background: rgba(10,136,75,0);
					}
				#fl-button-group-button-wit19skmpah4-0 a.fl-button:hover {
			border-color: #ffffff;
		}
				#fl-button-group-button-wit19skmpah4-1 a.fl-button > span,
		#fl-button-group-button-wit19skmpah4-1 a.fl-button > i {
			color: #ffffff;
		}
		
	#fl-button-group-button-wit19skmpah4-1 a.fl-button {
									background: rgba(255,0,0,0);
					
			}

			#fl-button-group-button-wit19skmpah4-1 a.fl-button:hover,
		#fl-button-group-button-wit19skmpah4-1 a.fl-button:focus {
			background: #0a884b;
					}
				#fl-button-group-button-wit19skmpah4-1 a.fl-button:hover {
			border-color: #0a884b;
		}
			.fl-builder-content .fl-node-wit19skmpah4 .fl-button,
	.fl-builder-content .fl-node-wit19skmpah4 .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-wit19skmpah4 .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: left;
}
.fl-node-wit19skmpah4 .fl-button-group-layout-horizontal .fl-button-group-buttons {
	justify-content: flex-start;
}
.fl-builder-content .fl-node-wit19skmpah4 .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 0px;
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
}
.fl-builder-content .fl-node-wit19skmpah4 .fl-button-group a.fl-button, .fl-builder-content .fl-node-wit19skmpah4 .fl-button-group a.fl-button:visited {
	text-transform: capitalize;
}
.fl-builder-content .fl-node-wit19skmpah4 .fl-button-group .fl-button-group-buttons .fl-button-group-button a.fl-button {
	padding-top: 12px;
}
.fl-builder-content .fl-node-wit19skmpah4 .fl-button-group .fl-button-group-buttons a.fl-button {
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}
.fl-builder-content .fl-node-wit19skmpah4 .fl-button-group .fl-button-group-buttons a.fl-button:hover {
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}
#fl-button-group-button-wit19skmpah4-0 a.fl-button {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
#fl-button-group-button-wit19skmpah4-1 a.fl-button {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}

/* Start Global CSS */
.h1, .h2, .h3, h1, h2, h3 {
    margin:0;
}
@media (min-width: 1441px) {
    .MiddleImage.image-left .fl-col-content {
        margin-right: auto !important;
    }
}
@media (max-width: 1440px) and (min-width: 992px) {
    .MiddleImage.image-left .fl-col-content {
        margin-left: 0 !important;
        margin-right: 15px !important;
    }
}
.hide-highlight .graphics-device__right,
.hide-highlight .graphics-device__left{
   display: none; 
}
.hide-highlight .graphics-device--tablet{
    padding:0;
}
.hide-highlight-right .graphics-device__right{
     display: none; 
}
.hide-highlight-left .graphics-device__left{
    display: none; 
}
@media(min-width:1200px){
    .CustomTabbed .SSCMSlider-slide_column--column_2{
        margin-top:48px;
        
    }
}
@media(max-width:767px){
    .FooterNavContainer .fl-col-group {
    display: flex !important;
    flex-direction: column;
}
@media(max-width:767px){
.mobile-triangle.mobile-triangle-custom .Triangle-PatternFree-bubble_image:first-of-type {
    display: none !important;
}
}
.two-popup-triangle.mobile-triangle .Triangle-PatternFree-bubble_image:first-of-type,
.two-popup-triangle.mobile-triangle .Triangle-PatternFree-bubble_image:last-of-type{
    display: block !important;
    width: 189px !important;
    top: 0px !important;
    left: 0px !important;
}
.two-popup-triangle.mobile-triangle .Triangle-PatternFree-bubble_image:last-of-type{
    top: unset !important;
    bottom: 0 !important;
    left: unset !important;
    right: 0 !important;
}
.two-popup-triangle .Triangle-PatternFree-has_bubble .Triangle-PatternFree-triangle_image:nth-of-type(2), 
.two-popup-triangle .Triangle-PatternFree-has_bubble .Triangle-PatternFree-triangle_image:first-of-type,
.two-popup-triangle .Triangle-PatternFree-has_bubble .Triangle-PatternFree-triangle_image:nth-of-type(2), 
.two-popup-triangle .Triangle-PatternFree-has_bubble .Triangle-PatternFree-triangle_image:first-of-type{
        top: 70px !important;
}
.two-popup-triangle .Triangle-PatternFree{
    position: static !important;
}
.two-popup-triangle .fl-module-content{
    position: relative;
}
}

.accordionLink {
  color: #171717;
  background-color: rgba(10,136,75,0);
  border-style: solid;
  border-width: 0;
  background-clip: border-box;
  border-color: #0a884b;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding-top: 12px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 12px;
  margin: 10px 0px 25px 0px;
  display: inline-block;
}
.accordionLink:hover {
  color: #ffffff;
  background-color: #0a884b;
}
.accordionLink:after {
    width: 25px;
    height: 25px;
    content: "\e91f";
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;
    padding: 0px 0px 0px 5px;
    font-size: 24px;
    position: relative;
    top: 4px;
    color: var(--primary-green);
}
.accordionLink:hover:after {
    color: #ffffff;
}
.SSCMAccordion-button-label, .SSCMAccordion-button-label:focus, .SSCMAccordion-button_icon_wrapper, .SSCMAccordion-button_icon_wrapper:focus {
    outline: none;
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.TheProductReview {
    min-height: 700px;
}
/* End Layout CSS */

@media (min-width: 767px) {
  .fl-node-rl7hk5zpx3nw .SSCMSlider-tabs_content {
    position: sticky;
    top: 141px;
  }
  .fl-node-rl7hk5zpx3nw .SSCMSlider {
    overflow: visible;
  }
  .fl-node-rl7hk5zpx3nw .SSCMSlider-tabs--left {
    height: 100%;
  }
}
.fl-node-rl7hk5zpx3nw .CustomTabbed div.SSCMSlider-slide_column.SSCMSlider-slide_column--column_2.SSCMSlider-slide_column--layout_columns {
  padding-left: 0 !important;
}
@media only screen and (max-width: 991px) {
  .fl-node-pst60uocn79q .ServicesCards-colInnerWrapper {
    height: 100%;
  }
}
.fl-node-5scxznluykwp .Triangle-PatternFree-item.Triangle-PatternFree-item_single-3.Triangle-PatternFree-show_on_mobile.Triangle-PatternFree-testimonial_text.fadeInPattern3 {
  font-size: 18px;
}
.fl-node-pbiq76fwaehy .SSCMSlider-content--layout_columns, .fl-node-pbiq76fwaehy .SSCMSlider-modal_content--layout_columns {
  flex-direction: column;
  width: 100%;
}
.fl-node-pbiq76fwaehy .SSCMSlider-slide_column--layout_columns {
  width: 100% !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
@media (min-width: 1441px) {
  .fl-node-pbiq76fwaehy .SSCMSlider-slide_column.SSCMSlider-slide_column--column_2.SSCMSlider-slide_column--layout_columns {
    margin-top: 64px;
  }
}
@media (min-width: 768px) {
  .fl-node-pbiq76fwaehy .SSCMSlider-tab {
    max-width: 258px;
  }
}
@media (max-width: 767px) {
  .fl-node-pbiq76fwaehy .SSCMSlider-tab {
    border: 0;
  }
}
@media only screen and (max-width: 991px) {
  .fl-node-gn2ths4zj5xv .ServicesCards-colInnerWrapper {
    height: 100%;
  }
}
.fl-node-2ykq73pwti6c .StickyTabs-content_tabs_content_item-description.bottom strong {
  display: block;
  margin-bottom: 16px;
}
