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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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





.fl-node-9kt2qfmd6lhz > .fl-row-content-wrap:after {
	background-color: rgba(0, 0, 0, 0.5);
}
.fl-node-9kt2qfmd6lhz > .fl-row-content-wrap {
	background-image: url(https://youngchefsacademy.landings.promo/wp-content/uploads/sites/71/2026/04/DSC09237-scaled.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-9kt2qfmd6lhz .fl-row-content {
	max-width: 1200px;
}
.fl-node-9kt2qfmd6lhz .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 100px;
	top: auto;
	bottom: 0;
	transform: scaleX(1) scaleY(-1);
}
.fl-node-9kt2qfmd6lhz .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
@media(max-width: 1200px) {
	.fl-node-9kt2qfmd6lhz > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 992px) {
	.fl-node-9kt2qfmd6lhz > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 768px) {
	.fl-node-9kt2qfmd6lhz > .fl-row-content-wrap {
		background-position: center center;
	}
}






.fl-node-p8crbqxzv0ld .fl-row-content {
	max-width: 1200px;
}
@media ( max-width: 768px ) {
 .fl-node-p8crbqxzv0ld.fl-row > .fl-row-content-wrap {
	padding-bottom:60px;
}
}






.fl-node-nplek6uzr2hj .fl-row-content {
	max-width: 1200px;
}
.fl-node-nplek6uzr2hj .fl-builder-top-edge-layer {
	top: -1px;
}
.fl-node-nplek6uzr2hj .fl-builder-top-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 100px;
	top: 0;
	bottom: auto;
	transform: scaleX(1) scaleY(1);
}
.fl-node-nplek6uzr2hj .fl-builder-top-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
.fl-node-nplek6uzr2hj .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 100px;
	top: auto;
	bottom: 0;
	transform: scaleX(-1) scaleY(-1);
}
.fl-node-nplek6uzr2hj .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
 .fl-node-nplek6uzr2hj > .fl-row-content-wrap {
	padding-top:60px;
}






.fl-node-pa93ys1ltfzo .fl-row-content {
	max-width: 1200px;
}
 .fl-node-pa93ys1ltfzo > .fl-row-content-wrap {
	margin-top:0px;
}
 .fl-node-pa93ys1ltfzo > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:60px;
}






.fl-node-erw6m3ia5lhc > .fl-row-content-wrap {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(179, 179, 179);
	border-top-width: 1px;
	border-bottom-width: 0px;
}
.fl-node-erw6m3ia5lhc .fl-row-content {
	max-width: 1200px;
}
 .fl-node-erw6m3ia5lhc > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:0px;
}




.fl-node-ix8gpj4wrhlz {
	width: 60%;
}
 .fl-node-ix8gpj4wrhlz > .fl-col-content {
	padding-right:60px;
}
@media ( max-width: 768px ) {
 .fl-node-ix8gpj4wrhlz.fl-col > .fl-col-content {
	padding-right:16px;
	padding-left:16px;
}
}




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




.fl-node-6h25iadju1t9 {
	width: 100%;
}
 .fl-node-6h25iadju1t9 > .fl-col-content {
	padding-bottom:80px;
}




.fl-node-29x17acv0hmw {
	width: 100%;
}




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




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




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




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




.fl-node-u0c4aomf1iv6 {
	width: 40%;
}
@media ( max-width: 768px ) {
 .fl-node-u0c4aomf1iv6.fl-col > .fl-col-content {
	margin-right:0px;
	margin-left:0px;
}
}
 .fl-node-u0c4aomf1iv6 > .fl-col-content {
	padding-top:40px;
	padding-right:60px;
	padding-bottom:40px;
	padding-left:60px;
}
@media ( max-width: 992px ) {
 .fl-node-u0c4aomf1iv6.fl-col > .fl-col-content {
	padding-top:20px;
	padding-right:24px;
	padding-bottom:20px;
	padding-left:24px;
}
}




.fl-node-49fwuxmrk78p {
	width: 25%;
}




.fl-node-5vq7emfw934l {
	width: 33.333%;
}
 .fl-node-5vq7emfw934l > .fl-col-content {
	margin-top:-50px;
}




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




.fl-node-7urzgsnc4vex {
	width: 50%;
}
 .fl-node-7urzgsnc4vex > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-7urzgsnc4vex.fl-col > .fl-col-content {
	padding-right:16px;
	padding-left:16px;
}
}




.fl-node-723ywog1zr0d {
	width: 33.334%;
}
 .fl-node-723ywog1zr0d > .fl-col-content {
	margin-top:-100px;
}
.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-euy6chqgdn9f .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-euy6chqgdn9f .fl-module-content .fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-euy6chqgdn9f .fl-rich-text, .fl-builder-content .fl-node-euy6chqgdn9f .fl-rich-text *:not(b, strong) {
	font-family: "Source Sans Pro", sans-serif;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-euy6chqgdn9f .fl-rich-text, .fl-builder-content .fl-node-euy6chqgdn9f .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-euy6chqgdn9f > .fl-module-content {
	margin-top:40px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media (max-width: 768px) { .fl-node-euy6chqgdn9f > .fl-module-content { margin-top:20px; } }img.mfp-img {
    padding-bottom: 40px !important;
}

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

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

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-wh03fpb2oux4, .fl-node-wh03fpb2oux4 .fl-photo {
	text-align: left;
}
.fl-node-wh03fpb2oux4 .fl-photo-content, .fl-node-wh03fpb2oux4 .fl-photo-img {
	width: 140px;
}
@media(max-width: 768px) {
	.fl-node-wh03fpb2oux4, .fl-node-wh03fpb2oux4 .fl-photo {
		text-align: center;
	}
	.fl-node-wh03fpb2oux4 .fl-photo-content, .fl-node-wh03fpb2oux4 .fl-photo-img {
		width: 120px;
	}
}
 .fl-node-wh03fpb2oux4 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-on6hrstga40v, .fl-node-on6hrstga40v .fl-photo {
	text-align: center;
}
 .fl-node-on6hrstga40v > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-0igmqvkear94, .fl-node-0igmqvkear94 .fl-photo {
	text-align: center;
}
 .fl-node-0igmqvkear94 > .fl-module-content {
	margin-bottom:0px;
}
 .fl-node-9nujckqh1v37 > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-0fhb5ueci76j, .fl-node-0fhb5ueci76j .fl-photo {
	text-align: center;
}
 .fl-node-0fhb5ueci76j > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-enqxfima9r81, .fl-node-enqxfima9r81 .fl-photo {
	text-align: center;
}
 .fl-node-enqxfima9r81 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-rz9ctp4sj513, .fl-node-rz9ctp4sj513 .fl-photo {
	text-align: center;
}
 .fl-node-rz9ctp4sj513 > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-ojqh7b81dsg6 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-ojqh7b81dsg6 .fl-module-content .fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-ojqh7b81dsg6 .fl-rich-text, .fl-builder-content .fl-node-ojqh7b81dsg6 .fl-rich-text *:not(b, strong) {
	text-align: right;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ojqh7b81dsg6 .fl-rich-text, .fl-builder-content .fl-node-ojqh7b81dsg6 .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-ojqh7b81dsg6 > .fl-module-content {
	margin-top:10px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-ojqh7b81dsg6.fl-module > .fl-module-content {
	margin-top:10px;
}
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }.fl-node-twng81k3uev5 .fl-icon i,
.fl-node-twng81k3uev5 .fl-icon i:before {
	color: rgba(255,255,255,0.1);
}




.fl-node-twng81k3uev5 .fl-icon i, .fl-node-twng81k3uev5 .fl-icon i:before {
	font-size: 110px;
}
.fl-node-twng81k3uev5 .fl-icon-wrap .fl-icon-text {
	height: 192.5px;
}
.fl-node-twng81k3uev5.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-twng81k3uev5 .fl-icon-wrap .fl-icon-text {
		height: 192.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-twng81k3uev5 .fl-icon-wrap .fl-icon-text {
		height: 192.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-twng81k3uev5 .fl-icon i, .fl-node-twng81k3uev5 .fl-icon i:before {
		font-size: 80px;
	}
	.fl-node-twng81k3uev5 .fl-icon-wrap .fl-icon-text {
		height: 140px;
	}
}
 .fl-node-twng81k3uev5 > .fl-module-content {
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-twng81k3uev5.fl-module > .fl-module-content {
	margin-top:60px;
}
}
	.fl-builder-content .fl-node-kxejga4rc0ws .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-kxejga4rc0ws .fl-module-content .fl-rich-text * {
		color: rgb(0, 0, 0);
	}
	.fl-builder-content .fl-node-kxejga4rc0ws .fl-rich-text, .fl-builder-content .fl-node-kxejga4rc0ws .fl-rich-text *:not(b, strong) {
	text-align: right;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-kxejga4rc0ws .fl-rich-text, .fl-builder-content .fl-node-kxejga4rc0ws .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
.fl-node-y0xt8ci9fp2v, .fl-node-y0xt8ci9fp2v .fl-photo {
	text-align: left;
}
.fl-node-y0xt8ci9fp2v .fl-photo-content, .fl-node-y0xt8ci9fp2v .fl-photo-img {
	width: 100px;
}
@media(max-width: 768px) {
	.fl-node-y0xt8ci9fp2v, .fl-node-y0xt8ci9fp2v .fl-photo {
		text-align: center;
	}
	.fl-node-y0xt8ci9fp2v .fl-photo-content, .fl-node-y0xt8ci9fp2v .fl-photo-img {
		width: 120px;
	}
}
.fl-builder-content .fl-node-35evbltaxip8 .fl-rich-text, .fl-builder-content .fl-node-35evbltaxip8 .fl-rich-text *:not(b, strong) {
	font-family: "Source Sans Pro", sans-serif;
}
 .fl-node-35evbltaxip8 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
} .fl-node-dakhnp08l93e > .fl-module-content {
	margin-top:60px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media (max-width: 768px) { .fl-node-dakhnp08l93e > .fl-module-content { margin-top:20px; } } .fl-node-19yzjdk5g87s > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-q9ins6vo1th7 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-mfd1zs7e56rg, .fl-node-mfd1zs7e56rg .fl-photo {
	text-align: center;
}
 .fl-node-mfd1zs7e56rg > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-5iw67ayvz2dc, .fl-node-5iw67ayvz2dc .fl-photo {
	text-align: center;
}
 .fl-node-5iw67ayvz2dc > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
	.fl-builder-content .fl-node-ixuaq1d9t0ch .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-ixuaq1d9t0ch .fl-module-content .fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	@media(max-width: 768px) {
	.fl-builder-content .fl-node-ixuaq1d9t0ch .fl-rich-text, .fl-builder-content .fl-node-ixuaq1d9t0ch .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-ixuaq1d9t0ch > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-ixuaq1d9t0ch.fl-module > .fl-module-content {
	margin-bottom:60px;
}
}
/* Clearfix */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.fl-row-fixed-width {
	min-width: 1px;
}

.pp-testimonials .sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
}

/* Grid Layout */
.pp-testimonials-grid-0 .pp-testimonials {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pp-testimonials-grid-1 .pp-testimonials {
    grid-template-columns: repeat(1,1fr);
    display: grid;
}

.pp-testimonials-grid-2 .pp-testimonials {
    grid-template-columns: repeat(2,1fr);
    display: grid;
}

.pp-testimonials-grid-3 .pp-testimonials {
    grid-template-columns: repeat(3,1fr);
    display: grid;
}

.pp-testimonials-grid-4 .pp-testimonials {
    grid-template-columns: repeat(4,1fr);
    display: grid;
}

.pp-testimonials-grid-5 .pp-testimonials {
    grid-template-columns: repeat(5,1fr);
    display: grid;
}

.pp-testimonials-grid-6 .pp-testimonials {
    grid-template-columns: repeat(6,1fr);
    display: grid;
}

.pp-masonry-grid .pp-testimonials {
	display: block !important;
}
.pp-masonry-grid .pp-testimonial {
	display: inline-block;
}

/* Default layout */
.fl-module .pp-testimonials-image img {
	border: 0 solid;
	width: 100%;
	margin: 0 auto;
	max-height: 150px;
	max-width: 150px;
}
.fl-module .carousel-enabled .pp-testimonials-image img {
	max-height: 100px;
	max-width: 100px;
}
.pp-testimonials {
	text-align: center;
}
.pp-testimonial {
	padding: 15px;
}
.pp-testimonials-no-heading .pp-testimonials-heading {
	display: none !important;
}
.pp-testimonials h3.pp-testimonials-title {
	font-weight: 400;
	margin-bottom: 15px;
	margin-top: 15px;
}
.pp-testimonials h4.pp-testimonials-subtitle {
	margin: 0;
	text-transform: none;
}
.pp-testimonials .pp-content-wrapper {
	background: transparent;
	position: relative;
}
.pp-testimonials .pp-testimonials-content p {
	margin-bottom: 15px;
}
.pp-testimonials .pp-testimonials-content p:last-of-type {
	margin-bottom: 0;
}
.pp-testimonials .pp-vertical-align {
	display: table;
}
.pp-testimonials .pp-vertical-align .pp-title-wrapper {
	display: table-cell;
	vertical-align: middle;
}

.pp-testimonials .pp-arrow-top {
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-bottom: 15px solid transparent;
	height: 0;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	text-align: center;
	top: -15px;
	width: 0;
}
.pp-testimonials .pp-arrow-bottom {
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
	border-top: 15px solid transparent;
	height: 0;
	left: 0;
	margin: 0 auto;
	position: absolute;
	right: 0;
	text-align: center;
	bottom: -15px;
	width: 0;
}
.pp-testimonials .pp-arrow-left {
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-right: 15px solid transparent;
	height: 0;
	left: -15px;
	position: absolute;
	top: 30px;
	width: 0;
}

/* Layouts */

/* Layout 1 */
.pp-testimonials .layout-1 {
	text-align: center;
}
.pp-testimonials .layout-1 .pp-testimonials-image img {
	margin-bottom: 20px;
}
.pp-testimonials .layout-1 .pp-testimonials-content p:last-of-type {
	margin-bottom: 15px;
}

/* Layout 2 */
.pp-testimonials .layout-2 {
	text-align: center;
}
.pp-testimonials .layout-2 .pp-testimonials-image {
	display: inline-block;
	margin-right: 25px;
}
.pp-testimonials .layout-2  .pp-vertical-align {
	margin: 0 auto;
}
.pp-testimonials .layout-2 .pp-content-wrapper {
	margin-bottom: 25px;
}

/* Layout 3 */
.pp-testimonials .layout-3 .pp-testimonials-image {
	float: left;
	margin-right: 30px;
	max-width: 150px;
	width: 22%;
}
.pp-testimonials .layout-3 .layout-3-content {
	float: left;
	text-align: left;
	width: 75%;
}
.pp-testimonials .layout-3.carousel-enabled .pp-testimonials-image {
	max-width: 100px;
}
.pp-testimonials .layout-3.carousel-enabled .pp-testimonials-image img {
	width: 100%;
}
.pp-testimonials .layout-3 .pp-testimonials-content p:last-of-type {
	margin-bottom: 15px;
}

/* Layout 4 */
.pp-testimonials .layout-4 {
	position: relative;
	padding-top: 50px;
}
.pp-testimonials .layout-4 .layout-4-content {
	background: #eee;
	padding: 50px;
	position: relative;
	z-index: 9;
}
.pp-testimonials .layout-4 .pp-testimonials-image {
	position: relative;
	z-index: 10;
	position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
}
.pp-testimonials .layout-4 .pp-testimonials-content {
	margin-top: 20px;
}
.pp-testimonials .layout-4 .pp-testimonials-content p:last-of-type {
	margin-bottom: 15px;
}
.pp-testimonials .layout-4-container .bx-wrapper {
	margin-bottom: 0;
}
.pp-testimonials .layout-4-container .bx-pager {
    bottom: 40px;
}
.pp-testimonials .layout-4-container.carousel-enabled .bx-pager {
	bottom: 30px;
}
.pp-testimonials .layout-4.no-image-inner .layout-4-content,
.pp-testimonials .layout-4.carousel-enabled.no-image-inner .layout-4-content {
	padding-top: 50px;
	top: 0;
}

/* Layout 5 */
.pp-testimonials .layout-5 {
	text-align: center;
}
.pp-testimonials .layout-5 .pp-testimonials-image {
	display: inline-block;
	margin-right: 25px;
}
.pp-testimonials .layout-5 .pp-vertical-align {
	margin: 0 auto;
	width: 100%;
}

.pp-testimonials .layout-5 .pp-testimonials-subtitle {
	margin-bottom: 20px;
}

/* Wrappers */
.pp-module-testimonials .bx-wrapper {
	margin: 0 auto 35px;
}
.pp-testimonials-wrap {
	position: relative;
}
.pp-testimonials-wrap.pp-testimonials-slider .pp-testimonial {
	position: absolute;
	top: 0;
	visibility: hidden;
}
.pp-testimonials-wrap.pp-testimonials-slider .pp-testimonial:first-child,
.pp-testimonials-slider .pp-testimonials-loaded .pp-testimonial {
	position: relative;
	visibility: visible;
}
.pp-testimonials-wrap .fa {
	opacity: 0.8;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.pp-testimonials-wrap .fa:hover {
	opacity: 1;
}
.pp-testimonials-wrap .pp-arrow-wrapper {
	margin-bottom: 10px;
	text-align: center;
}
.pp-testimonials-wrap .owl-theme .owl-nav button {
	box-shadow: none;
	outline: none;
	background: none !important;
	top: 0 !important;
}
.pp-testimonials-wrap .owl-theme .owl-nav button svg {
	width: 20px;
	height: 20px;
	box-shadow: none;
	outline: none;
	border-radius: 100%;
}

/* Flexbox */
.pp-testimonials-flexbox .owl-stage {
	display: flex;
}
.pp-testimonials-flexbox .owl-carousel .owl-item {
	display: flex;
    align-items: center;
    flex: 1 0 auto;
    padding: 0 20px;
}
.pp-testimonials-flexbox .pp-testimonial {
	display: flex;
	flex-direction: column;
    align-items: center;
	align-content: center;
	justify-content: center;
    width: 100%;
    height: 100%;
}
.pp-testimonials-flexbox .pp-testimonial .pp-content-wrapper {
	height: auto !important;
}@media (max-width: 768px) { .pp-testimonials .layout-3 .pp-testimonials-image {
    float: none;
    margin: 0 auto 20px;
    text-align: center;
    width: 100%;
}
.pp-testimonials .layout-3 .layout-3-content {
    float: none;
    text-align: center;
    width: 100% !important;
}
 }
	.fl-node-4qa20cksbv5y .pp-testimonials-wrap .bx-wrapper .bx-pager a {
		background: ##999999;	}
	.fl-node-4qa20cksbv5y .pp-testimonials-wrap .bx-wrapper .bx-pager a {
		opacity: 0.5;
	}
	.fl-node-4qa20cksbv5y .pp-testimonials-wrap .bx-wrapper .bx-pager a.active {
		background: ##999999;		opacity: 1;
	}
	.fl-node-4qa20cksbv5y .pp-testimonials-wrap .fa:hover,
	.fl-node-4qa20cksbv5y .pp-testimonials-wrap .fa {
			}
	.fl-node-4qa20cksbv5y .pp-testimonials-wrap .pp-arrow-wrapper {
		text-align: center;	}

	.fl-node-4qa20cksbv5y .pp-testimonials-wrap .owl-theme .owl-dots .owl-dot span {
		opacity: 1;
				background: ##999999;
				box-shadow: none;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-wrap .owl-theme .owl-dots .owl-dot.active span,
	.fl-node-4qa20cksbv5y .pp-testimonials-wrap .owl-theme .owl-dots .owl-dot:hover span {
				background: ##999999;
				opacity: 1;
		box-shadow: none;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-wrap .owl-theme .owl-nav {
		text-align: center;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-wrap .owl-theme .owl-nav button svg {
					width: 20px;
			height: 20px;
							}


.fl-node-4qa20cksbv5y .pp-testimonial {
	}

	.fl-node-4qa20cksbv5y .pp-testimonials .pp-content-wrapper {
		padding: 20px;
	}

	.fl-node-4qa20cksbv5y .pp-testimonial.layout-1 .pp-content-wrapper {
			}
	

.fl-node-4qa20cksbv5y .pp-testimonials-wrap .pp-testimonials-heading {
	color: #rgb(255, 255, 255);}
.fl-node-4qa20cksbv5y .pp-testimonial .pp-title-wrapper .pp-testimonials-title {
	color: #rgb(255, 255, 255);	margin-top: px;
	margin-bottom: px;
}
.fl-node-4qa20cksbv5y .pp-testimonial .pp-title-wrapper .pp-testimonials-subtitle {
	color: #rgb(255, 255, 255);	margin-top: px;
	margin-bottom: px;
}
.fl-node-4qa20cksbv5y .pp-testimonial .pp-testimonials-content {
	color: #rgb(255, 255, 255);
	margin-top: px;
	margin-bottom: px;
}
.fl-node-4qa20cksbv5y .pp-testimonial .pp-testimonials-image img {
	max-height: 100px;
	max-width: 100px;
}


.fl-node-4qa20cksbv5y.pp-masonry-grid .pp-testimonials {
		column-count: 3;
	}


@media only screen and ( max-width: 992px ) {
	.fl-node-4qa20cksbv5y .pp-testimonials-grid-md-1 .pp-testimonials {
		grid-template-columns: repeat(1,1fr);
		display: grid;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-grid-md-2 .pp-testimonials {
		grid-template-columns: repeat(2,1fr);
		display: grid;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-grid-md-3 .pp-testimonials {
		grid-template-columns: repeat(3,1fr);
		display: grid;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-grid-md-4 .pp-testimonials {
		grid-template-columns: repeat(4,1fr);
		display: grid;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-grid-md-5 .pp-testimonials {
		grid-template-columns: repeat(5,1fr);
		display: grid;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-grid-md-6 .pp-testimonials {
		grid-template-columns: repeat(6,1fr);
		display: grid;
	}
	.fl-node-4qa20cksbv5y.pp-masonry-grid .pp-testimonials {
			}
}

@media only screen and ( max-width: 768px ) {
	.fl-node-4qa20cksbv5y .pp-testimonials-grid-sm-1 .pp-testimonials {
		grid-template-columns: repeat(1,1fr);
		display: grid;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-grid-sm-2 .pp-testimonials {
		grid-template-columns: repeat(2,1fr);
		display: grid;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-grid-sm-3 .pp-testimonials {
		grid-template-columns: repeat(3,1fr);
		display: grid;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-grid-sm-4 .pp-testimonials {
		grid-template-columns: repeat(4,1fr);
		display: grid;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-grid-sm-5 .pp-testimonials {
		grid-template-columns: repeat(5,1fr);
		display: grid;
	}

	.fl-node-4qa20cksbv5y .pp-testimonials-grid-sm-6 .pp-testimonials {
		grid-template-columns: repeat(6,1fr);
		display: grid;
	}

	.fl-node-4qa20cksbv5y.pp-masonry-grid .pp-testimonials {
			}
}
.fl-node-4qa20cksbv5y .pp-testimonials-grid .pp-testimonials {
	grid-gap: 20px;
}
.fl-node-4qa20cksbv5y .pp-testimonial .pp-testimonials-content {
	font-size: 24px;
	font-style: italic;
}
 .fl-node-4qa20cksbv5y > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-w0efbq12cu6l > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-6w7nkhve5jdt > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
/**
 * This file should contain frontend styles that
 * will be applied to all module instances.
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pp-gf-content .gform_wrapper .ginput_complex span.ginput_full {
    display: block;
}

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

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

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

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


.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper ul li.gfield {
	list-style-type: none !important;
		margin-bottom: 40px;
	}

.fl-builder-content .fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_title,
.fl-builder-content .fl-node-k93refa6nd0c .pp-gf-content .form-title {
		display: none;
}

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

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

.fl-builder-content .fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper span.gform_description,
.fl-builder-content .fl-node-k93refa6nd0c .pp-gf-content .form-description {
		display: none;
}

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

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

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


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

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

.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .ginput_container label,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper table.gfield_list thead th,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper span.ginput_product_price,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper span.ginput_product_price_label,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper span.ginput_quantity_label,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield_html {
		}


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


.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield .gfield_description {
		color: ##000000;
	}

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

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


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


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

.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .ginput_complex input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=image]):not([type=file]),
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .ginput_complex select {
		margin-bottom: 12px;
	}

.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .ginput_complex span {
		margin-bottom: 16px;
	}

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


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

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

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

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

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

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

.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_footer {
		text-align: center;
						justify-content: center;
	}

.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform-button,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_footer .gform_button,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_page_footer .button,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
		width: auto;
			color: ##ffffff;
		background-color: ;
		padding-top: 15px;
	padding-bottom: 15px;
			padding-left: 35px;
	padding-right: 35px;
		white-space: normal;
}


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

.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform-button:hover,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_footer .gform_button:hover,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_page_footer .button:hover {
		color: ##ffffff;
		background: ;
}


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

.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .validation_error,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_validation_errors > h2,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper li.gfield.gfield_error,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
		color: ##ff0000 !important;
		border-color: transparent !important;
			border: none;
		padding-top: 0;
		padding-bottom: 0;
	}

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

.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield.gfield_error {
	background-color: transparent;
	width: 100%;
}

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

.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield_error .validation_message {
		display: block;
			color: ##ff0000;
		}

.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container,
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label {
	margin-top: 8px;
}

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


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

@media only screen and (max-width: 768px) {
	.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
						padding-left: 40px;
		padding-right: 40px;
			}
}
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform-button, .fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_footer .gform_button,
							.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_page_footer .button {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_title,
							.fl-node-k93refa6nd0c .form-title {
	text-align: left;
}
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper span.gform_description,
							.fl-node-k93refa6nd0c .form-description {
	text-align: left;
}
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform-button,
							.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_footer .gform_button, 
							.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_page_footer .button {
	font-weight: 700;
	font-size: 18px;
	text-transform: none;
}
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield .gfield_label {
	font-weight: 400;
	text-align: left;
}
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield .gfield_description {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
}
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
						.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield select,
						.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield textarea {
	font-weight: 400;
	text-align: left;
}
.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']),
							.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield select,
							.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gfield textarea {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-bottom-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	padding: 0px;
}
@media(max-width: 768px) {
	.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform-button,
							.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_footer .gform_button, 
							.fl-node-k93refa6nd0c .pp-gf-content .gform_wrapper .gform_page_footer .button {
		font-size: 16px;
	}
}
 .fl-node-k93refa6nd0c > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-d8ktzi650mvj > .fl-module-content {
	margin-top:0px;
}
 .fl-node-1oanufb98kml > .fl-module-content {
	margin-top:0px;
}
 .fl-node-q8upbngke64z > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-3pcx5qgjyuf7 > .fl-module-content {
	margin-top:0px;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
/* ------------------------------ COLORS ------------------------------ */
:root {
    --primary: #183B29;
    --secondary: #183b29;
    --tertiary: #C2D1C3;
    --cta: #F47523;
    
    --bodyText: #2D2A28;
    
    --headerFont: filson-pro, sans-serif;
    --bodyFont: filson-pro, sans-serif;
    
    --borderRadius: 5px;
    
    --black: #000000;
    --white: #ffffff;
}


/* ------------------------- SIZES STARTS ------------------------- */
h1 {
    font-family: var(--headerFont) !important;
    font-size: 70px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    color: var(--white) !important;
}
h2 {
    font-family: var(--headerFont) !important;
    font-size: 42px !important;
    font-weight: 600 !important;
    color: var(--bodyText) !important;
    line-height: 1.5 !important;
}
h3 {
    font-family: var(--headerFont) !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--bodyText) !important;
}
h4 {
    font-family: var(--headerFont) !important;
    font-weight: 700 !important;
}
h5 {
    font-family: var(--headerFont) !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

h6 {
    font-family: var(--headerFont) !important;
    font-size: 16px;
    font-weight: 700 !important;
}
p, li {
    font-family: var(--bodyFont) !important;
    color: var(--bodyText) !important;
    line-height: 2 !important;
    font-size: 16px !important;
    font-weight: 300 !important;
}
body {
    font-family: var(--bodyFont) !important;
    color: var(--bodyText) !important;
    line-height: 2 !important;
    font-size: 14px !important;
    font-weight: 300 !important;
}
/* ------------------------------ SIZES ENDS ------------------------------ */



/* ------------------------------ HERO ------------------------------ */

.hero_maintext h3 {
    font-weight: 600 !important;
    text-shadow: 0 0 10px #000000 !important;
}
.fas {
    color: var(--cta) !important;
}

.hero {
    position: relative !important;
    z-index: 1 !important;
}
/* ------------------------------ HERO ENDS ------------------------------ */



/* ------------------------------ FORM ------------------------------ */
.form_style {
    box-shadow: 0 0 12px rgba(0, 0, 0, .2) !important;
    background-color: #ffffff !important;
    margin-top: -90px !important;
    margin-bottom: -100px !important;
    text-align: center !important;
    position: relative !important;
    z-index: 9 !important;
}

.form_text h2 {
    font-size: 30px !important;
}

/* ------------------------------ FORM ENDS ------------------------------ */



/* ------------------------------ MAIN TEXT ------------------------------ */
.right_text h4 {
    margin-top: 40px !important;
}
.main_text ul {
    list-style: none !important;
}
.main_text ul li::before {
    content: "\25A0" !important;
    color: var(--cta) !important;
    font-weight: bold !important;
    margin-left: -30px !important;
    margin-right: 11px !important;
    font-size: 18px !important;
}
.main_text ul li {
    margin-top: 0 !important;
}
.top_right {
    border: solid 10px #ffffff !important;
    margin-top: 80px !important;
    margin-left: -100px !important;
    margin-right: 100px !important;
    z-index: 90 !important;
    position: relative;
}
.top_left {
    border: solid 10px #ffffff !important;
    margin-top: -50px !important;
    margin-right: 20px !important;
}
.bottom_left {
    border: solid 0px #ffffff !important;
    margin-left: -50px !important;
}
.bottom_right {
    margin-left: 10px !important;
    margin-right: 40px !important;
}
/* ------------------------------ MAIN TEXT ENDS ------------------------------ */



/* ------------------------------ TESTIMONIALS ------------------------------ */
.testimonials {
    background-color: var(--secondary) !important;
    margin-top: 0 !important;
    margin-bottom: 100px !important;
}

.testimonial {
    padding-top: 10px !important;
    padding-bottom: 100px !important;
    max-width: 800px !important;
    margin: auto !important;
    text-align: center !important;
    color: #ffffff !important;
    font-size: 20px !important;
    font-style: italic !important;
}
/* ------------------------------ TESTIMONIALS ENDS ------------------------------ */



/* ------------------------------ SERVICES ------------------------------ */
.services {
    z-index: 3 !important;
}


@media all and (max-width:768px) {
    

    h1 {
        font-size: 40px !important;
    }
    h2 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
    h3 {
        font-size: 20px !important;
    }
    h4 {
        font-size: 18px !important;
    }
    h5 {
        font-size: 16px !important;
    }
    p {
        font-size: 16px !important;
    }
    body {
        line-height: 1.8 !important;
    }
/* ---------- HERO ---------- */
    .hero::after {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
       
        height: 300px !important;
        width: 100% !important;
        content: '' !important;
    }
    .hero_maintext {
        padding-top: 30px !important;
        padding-bottom: 50px !important;
        padding-right: 0 !important;
        text-align: center !important;
    }
    .location {
        text-align: center !important;
        margin-right: 0 !important;
        margin-top: -20px !important;
    }
    .location h6 {
        margin-bottom: 30px !important;
    }
/* ---------- FORM ---------- */
    .form_style {
        padding: 10px 20px 0 20px !important;
        margin-top: -40px !important;
        margin-bottom: -600px !important;
        text-align: center !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
    .form_text h2 {
        font-size: 24px !important;
    }
/* ---------- MAIN TEXT ---------- */
    .main_text {
        margin-top: 500px !important;
    }
    .main_text ul li::before {
        font-size: 14px !important;
        margin-left: -25px !important;
        margin-right: 11px !important;
    }
    .main_text ul li {
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }
/* ---------- TESTIMONIALS ---------- */
    .quote{
        margin-top: 20px !important;
    }
    .testimonials {
        margin-top: -40px !important;
        margin-bottom: 0 !important;
    }
    .testimonial {
        margin-top: -50px !important;
        padding-bottom: 40px !important;
    }
/* ---------- SERVICES ---------- */
    .services {
        margin-top: 0 !important;
    }
    .services_text {
        margin-top: 0 !important;
    }
    .services_last {
        margin-top: 0 !important;
    }
    .services_middle {
        margin-top: 0 !important;
    }
    .services_first {
        margin-top: 0px !important;
    }

/* ---------- TABLET ---------- */
    .fl-col-small:not(.fl-col-small-full-width) {
        max-width: 600px !important;
    }
}

@media all and (max-width:620px) {
    .form_style {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }
    
}

/* End Layout CSS */

.fl-node-ojqh7b81dsg6 h6 .fas {
  font-size: 18px !important;
  vertical-align: center !important;
  align-items: center !important;
}
.fl-node-ojqh7b81dsg6 h6 {
  vertical-align: center !important;
  align-items: center !important;
  align-content: center !important;
  margin-top: 5px !important;
  font-size: 16px !important;
}
.fl-node-ojqh7b81dsg6 h5 {
  margin-bottom: 5px !important;
}
.fl-node-kxejga4rc0ws h6 .fas {
  font-size: 18px !important;
  vertical-align: center !important;
  align-items: center !important;
}
.fl-node-kxejga4rc0ws h6 {
  vertical-align: center !important;
  align-items: center !important;
  align-content: center !important;
  margin-top: 5px !important;
  font-size: 16px !important;
}
.fl-node-kxejga4rc0ws h5 {
  margin-bottom: 5px !important;
}
.fl-node-35evbltaxip8 a:hover {
  color: var(--cta) !important;
}
.fl-node-ixuaq1d9t0ch h3 {
  color: var(--white) !important;
}
.fl-node-4qa20cksbv5y p {
  font-size: 20px !important;
  color: var(--white) !important;
}
.fl-node-4qa20cksbv5y .pp-testimonials-title {
  font-size: 18px !important;
}
@media (max-width: 768px) {
  .fl-node-4qa20cksbv5y p, .fl-node-4qa20cksbv5y .pp-testimonials-title {
    font-size: 16px !important;
  }
}
.fl-node-k93refa6nd0c input[type=submit] {
  background-color: var(--cta) !important;
}
.fl-node-k93refa6nd0c input[type=submit]:hover {
  opacity: 80% !important;
}
.fl-node-k93refa6nd0c .gfield-choice-input {
  border: 1px solid #e0e0e0 !important;
}
.fl-node-k93refa6nd0c .gform_required_legend {
  display: none;
}
.fl-node-k93refa6nd0c .gform-field-label {
  text-align: left !important;
  font-weight: 500 !important;
  font-family: var(--bodyText) !important;
  line-height: 1.5 !important;
  margin-left: 5px !important;
}
.fl-node-k93refa6nd0c .gchoice {
  display: flex !important;
  gap: 10px !important;
  align-items: start !important;
}

                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-9kt2qfmd6lhz .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-p8crbqxzv0ld .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-nplek6uzr2hj .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-pa93ys1ltfzo .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-erw6m3ia5lhc .fl-row-content {
				min-width: 0px;
			}
		