/**
 * 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 {
	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-snerx45gbua6 > .fl-row-content-wrap:after {
	background-image: linear-gradient(0deg, #000000 0%, rgba(255,255,255,0) 100%);
}
.fl-node-snerx45gbua6 > .fl-row-content-wrap {
	background-image: url(https://printthree.landings.promo/wp-content/uploads/sites/70/2026/01/banner-3-scaled.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-snerx45gbua6 .fl-row-content {
	max-width: 1200px;
}
.fl-node-snerx45gbua6 .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 100px;
	top: auto;
	bottom: 0;
	transform: scaleX(1) scaleY(-1);
}
.fl-node-snerx45gbua6 .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
@media(max-width: 1200px) {
	.fl-node-snerx45gbua6 > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 992px) {
	.fl-node-snerx45gbua6 > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 768px) {
	.fl-node-snerx45gbua6 > .fl-row-content-wrap {
		background-position: center center;
	}
}






.fl-node-fx1dlutkv52n .fl-row-content {
	max-width: 1200px;
}






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






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






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




.fl-node-pgkjmuh2tl6q {
	width: 60%;
}




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




.fl-node-2utrxe9qk036 {
	width: 100%;
}




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




.fl-node-6qj1lbuxkas7 {
	width: 33.333%;
}




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




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




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




.fl-node-7idx0u6nhe3z {
	width: 40%;
}




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




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




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




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




.fl-node-8duisn2pt754 {
	width: 33.334%;
}
.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-node-fhqgyuilmjxv > .fl-module-content {
	margin-bottom:0px;
}
 .fl-node-ru08gty7p9e4 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
img.mfp-img {
    padding-bottom: 40px !important;
}

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

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

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-pla3jfu8wkbz, .fl-node-pla3jfu8wkbz .fl-photo {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-pla3jfu8wkbz .fl-photo-content, .fl-node-pla3jfu8wkbz .fl-photo-img {
		width: 150px;
	}
}
 .fl-node-pla3jfu8wkbz > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-7g8ribc4s2lh, .fl-node-7g8ribc4s2lh .fl-photo {
	text-align: center;
}
 .fl-node-7g8ribc4s2lh > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-5t29hgvyaxl6, .fl-node-5t29hgvyaxl6 .fl-photo {
	text-align: center;
}
 .fl-node-5t29hgvyaxl6 > .fl-module-content {
	margin-bottom:0px;
}
 .fl-node-nx43as9o0d8z > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-r53m1u98nzpk, .fl-node-r53m1u98nzpk .fl-photo {
	text-align: center;
}
 .fl-node-r53m1u98nzpk > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-5kgrsz2qavhx, .fl-node-5kgrsz2qavhx .fl-photo {
	text-align: center;
}
 .fl-node-5kgrsz2qavhx > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-doa19btq3mvu, .fl-node-doa19btq3mvu .fl-photo {
	text-align: center;
}
 .fl-node-doa19btq3mvu > .fl-module-content {
	margin-bottom:0px;
}
 .fl-node-xbq0enlawv28 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-xbq0enlawv28.fl-module > .fl-module-content {
	margin-top:10px;
}
}
@media (max-width: 768px) { .fl-module-icon {
	text-align: center;
}
 }.fl-node-vjiz1w0cey26 .fl-icon i,
.fl-node-vjiz1w0cey26 .fl-icon i:before {
	color: rgb(255, 255, 255);
}




.fl-node-vjiz1w0cey26 .fl-icon i, .fl-node-vjiz1w0cey26 .fl-icon i:before {
	font-size: 110px;
}
.fl-node-vjiz1w0cey26 .fl-icon-wrap .fl-icon-text {
	height: 192.5px;
}
.fl-node-vjiz1w0cey26.fl-module-icon {
	text-align: center;
}
@media(max-width: 1200px) {
	.fl-node-vjiz1w0cey26 .fl-icon-wrap .fl-icon-text {
		height: 192.5px;
	}
}
@media(max-width: 992px) {
	.fl-node-vjiz1w0cey26 .fl-icon-wrap .fl-icon-text {
		height: 192.5px;
	}
}
@media(max-width: 768px) {
	.fl-node-vjiz1w0cey26 .fl-icon-wrap .fl-icon-text {
		height: 192.5px;
	}
}
 .fl-node-vjiz1w0cey26 > .fl-module-content {
	margin-bottom:0px;
}
	.fl-builder-content .fl-node-vwg143xmyfsz .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-vwg143xmyfsz .fl-module-content .fl-rich-text * {
		color: rgb(0, 0, 0);
	}
	.fl-builder-content .fl-node-vwg143xmyfsz .fl-rich-text, .fl-builder-content .fl-node-vwg143xmyfsz .fl-rich-text *:not(b, strong) {
	text-align: right;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-vwg143xmyfsz .fl-rich-text, .fl-builder-content .fl-node-vwg143xmyfsz .fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
.fl-node-ams1uf3j4zck, .fl-node-ams1uf3j4zck .fl-photo {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-ams1uf3j4zck .fl-photo-content, .fl-node-ams1uf3j4zck .fl-photo-img {
		width: 120px;
	}
}
/* Wrappers */
body.rtl .fl-module-testimonials .bx-viewport {
	direction: ltr;
}
body.rtl .fl-testimonials-wrap.compact .fl-slider-next {
	left: 18px;
	right: auto;
}
body.rtl .fl-testimonials-wrap.compact .fl-slider-prev {
	right: auto !important;
	left: 0;
}
body.rtl .fl-testimonials-wrap .fl-testimonial {
	direction: rtl;
}

.fl-module-testimonials {
	flex-grow: 1;
	place-self: stretch;
}

.fl-module-testimonials .bx-wrapper {
	margin: 0 auto 35px;
}
.fl-testimonials-wrap {
	position: relative;
}
.fl-testimonials-wrap button,
.fl-testimonials-wrap button:focus,
.fl-testimonials-wrap button:hover {
	all: unset;
	cursor: pointer;
}
.fl-testimonials-wrap .fl-testimonial {
	position: absolute;
	top: 0;
	visibility: hidden;
}
.fl-testimonials-wrap .fl-testimonial > blockquote {
	margin: 0;
}
.fl-testimonials-wrap .fl-testimonial:first-child,
.fl-testimonials-loaded .fl-testimonial {
	position: relative;
	visibility: visible;
}
.fl-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;
}
.fl-testimonials-wrap .fa:hover {
	opacity: 1;
}

/* Wide */
.fl-testimonials.wide {
	text-align: center;
}
.fl-testimonials-wrap.wide .fl-slider-next,
.fl-testimonials-wrap.wide .fl-slider-prev {
	position: absolute;
	top: 50%;
	margin-top:-10px;
	right: 0px;
}
.fl-testimonials-wrap.wide .fa {
	font-size: 23px;
	position: relative;
	z-index: 1;
}
.fl-testimonials-wrap.wide .fl-slider-prev {
	left: 0px !important;
}

/* Compact */
.fl-testimonials-wrap.compact h3 {
	margin: .3em 0;
}
.fl-testimonials-wrap.compact .fl-slider-next,
.fl-testimonials-wrap.compact .fl-slider-prev {
	position: absolute;
	top: 9px;
	right: 0;
}
.fl-testimonials-wrap.compact .fa {
	font-size: 17px;
}
.fl-testimonials-wrap.compact .fl-slider-prev {
	right: 18px !important;
}

/* Navigation Fixes */
.fl-testimonials-wrap .fl-slider-next a.disabled,
.fl-testimonials-wrap .fl-slider-prev a.disabled,
.fl-testimonials-wrap .bx-controls a.disabled,
.fl-testimonials-wrap .fl-slider-next button.disabled,
.fl-testimonials-wrap .fl-slider-prev button.disabled,
.fl-testimonials-wrap .bx-controls button.disabled {
	pointer-events: none;
}
.fl-testimonials-wrap .fl-slider-next button:focus,
.fl-testimonials-wrap .fl-slider-prev button:focus {
	outline: 1px auto -webkit-focus-ring-color;
}.fl-node-5ojg9fct14z8 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-5ojg9fct14z8 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-5ojg9fct14z8 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-5ojg9fct14z8 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #ffffff;
	opacity: 1;
}
.fl-node-5ojg9fct14z8 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-5ojg9fct14z8 .fl-testimonials-wrap .fas:hover,
.fl-node-5ojg9fct14z8 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-5ojg9fct14z8 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
/**
 * 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-p6mjlo8szxbh .pp-gf-content .gform_wrapper {
	max-width: 100%;
}

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


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

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

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

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

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

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

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

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


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

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

.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .ginput_container label,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper table.gfield_list thead th,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper span.ginput_product_price,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper span.ginput_product_price_label,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper span.ginput_quantity_label,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield_html {
		font-family: "Source Sans Pro", sans-serif;font-weight: 300;}


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


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

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

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


.fl-node-p6mjlo8szxbh .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-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield select,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield textarea {
		color: ##333333;
		background-color: ##ffffff;
		outline: none;
}


.fl-node-p6mjlo8szxbh .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-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield select {
	}

.fl-node-p6mjlo8szxbh .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-p6mjlo8szxbh .pp-gf-content .gform_wrapper .ginput_complex select {
		margin-bottom: 12px;
	}

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

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


.fl-node-p6mjlo8szxbh .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-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield select:focus,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield textarea:focus {
	border-color: ##719ece;
}

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

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

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

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

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

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

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


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

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


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

.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .validation_error,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_validation_errors > h2,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper li.gfield.gfield_error,
.fl-node-p6mjlo8szxbh .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-p6mjlo8szxbh .pp-gf-content .gform_wrapper .validation_error,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_validation_errors,
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_validation_errors > h2 {
			display: block !important;
	}

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

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

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

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

.fl-node-p6mjlo8szxbh .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-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield_error .ginput_container select,
.fl-node-p6mjlo8szxbh .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-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
					}
}

@media only screen and (max-width: 768px) {
	.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform-button,
	.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_footer .gform_button,
	.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper.gf_browser_ie .gform_footer .gform_button,
	.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_page_footer .button,
	.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper.gf_browser_ie .gform_page_footer .button {
						padding-left: 40px;
		padding-right: 40px;
			}
}
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform-button, .fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_footer .gform_button,
							.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_page_footer .button {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform-button,
							.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_footer .gform_button, 
							.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_page_footer .button {
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
}
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield .gfield_label {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
}
.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield .gfield_description {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
}
.fl-node-p6mjlo8szxbh .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-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield select,
						.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield textarea {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 400;
	text-align: left;
}
.fl-node-p6mjlo8szxbh .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-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gfield select,
							.fl-node-p6mjlo8szxbh .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-p6mjlo8szxbh .pp-gf-content {
		padding-bottom: 30px;
	}
	.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform-button,
							.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_footer .gform_button, 
							.fl-node-p6mjlo8szxbh .pp-gf-content .gform_wrapper .gform_page_footer .button {
		font-size: 16px;
	}
}
 .fl-node-p6mjlo8szxbh > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-8urx1qhynz7k > .fl-module-content {
	margin-top:20px;
}
@media ( max-width: 768px ) {
 .fl-node-8urx1qhynz7k.fl-module > .fl-module-content {
	margin-top:12px;
}
}
 .fl-node-w975arup0il2 > .fl-module-content {
	margin-top:20px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-w975arup0il2.fl-module > .fl-module-content {
	margin-top:12px;
}
}
.fl-node-kosrxlgw9pi3, .fl-node-kosrxlgw9pi3 .fl-photo {
	text-align: center;
}
 .fl-node-kosrxlgw9pi3 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-5mw8qti46snf, .fl-node-5mw8qti46snf .fl-photo {
	text-align: center;
}
 .fl-node-5mw8qti46snf > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-i1cnv3ad846u > .fl-module-content {
	margin-top:20px;
}
@media ( max-width: 768px ) {
 .fl-node-i1cnv3ad846u.fl-module > .fl-module-content {
	margin-top:12px;
}
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
/* ------------------------------ COLORS ------------------------------ */
/*
BLACK: #2C3230
GREY: #8D8D8D
RED: #E00001
*/
/* ------------------------------ COLORS ENDS ------------------------------ */
#gform_submit_button_1 {
    border-radius: 0px !important;
    background-color: #EA002A !important;
    font-size: 22px !important;
    padding: 15px 25px !important;
}


/* ------------------------------ SIZES ------------------------------ */
h1 {
    font-family: 'Raleway', serif !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    font-size: 55px !important;
    line-height: 1 !important;
    text-shadow: 0 0 30px #000000 !important;
}
h2 {
    font-family: 'Raleway', serif !important;
    font-size: 40px !important;
    color: #2C3230 !important;
    font-weight: 900 !important;
    line-height: 1.6 !important;
}
h3 {
    font-family: 'Raleway', serif !important;
    font-size: 24px !important;
    font-weight: 900 !important;
    color: #2C3230 !important;
}
h4 {
    font-family: 'Raleway', serif !important;
    font-weight: 900 !important;
    font-size: 22px !important;
}
h5 {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 900 !important;
}
h6 {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 900 !important;
}
p {
    font-family: 'Raleway', sans-serif !important;
    color: #8D8D8D !important;
    line-height: 1.8 !important;
    font-size: 16px !important;
}
body {
    font-family: 'Raleway', sans-serif !important;
    color: #8D8D8D !important;
    line-height: 1.8 !important;
    font-size: 16px !important;
}
/* ------------------------------ SIZES ENDS ------------------------------ */



/* ------------------------------ HERO ------------------------------ */
.svg_logo {
    max-width: 250px !important;
    margin-top: 10px !important;
}
.hero_maintext {
    padding-top: 280px !important;
    padding-bottom: 50px !important;
    padding-right: 50px !important;
}
.hero_maintext h3 {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-family: 'Open Sans', sans-serif !important;
    text-shadow: 0 0 10px #000000 !important;
}
.location .fas {
    margin-right: 10px !important;
    color: #E00001 !important;
}
.location {
    text-align: right !important;
    margin-right: 5px !important;
    margin-top: -10px !important;
}
.location h5 {
    margin-bottom: 0 !important;
}
.location h6 {
    margin-top: 5px !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;
    padding: 30px 60px 25px 60px !important;
    margin-top: -90px !important;
    margin-bottom: -100px !important;
    text-align: center !important;
    position: relative !important;
    z-index: 9 !important;
}
.form_text {
    margin-bottom: 20px !important;
}
/*.form_text .fas {*/
/*    color: #E00001 !important;*/
/*}*/
.form_text h2 {
    font-size: 30px !important;
    font-weight: 900 !important;
    font-family: 'Open Sans', sans-serif !important;
}
.form_text h2 a:hover {
    color: #E00001 !important;
}
.hide_this .gfield_label {
    display: none !important;
}
.gform_wrapper .gfield_checkbox li input, .gform_wrapper .gfield_checkbox li input[type=checkbox], .gform_wrapper .gfield_radio li input[type=radio] {
    display: -moz-inline-stack !important;
    display: inline-block !important;
    vertical-align: top !important;
    margin-right: 10px !important;
    border-radius: 0 !important;
    position: relative !important;
    z-index: 9 !important;
}
.gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked+label {
    font-weight: 300 !important;
}
/* ------------------------------ FORM ENDS ------------------------------ */



/* ------------------------------ MAIN TEXT ------------------------------ */
.right_text {
    margin-top: 60px !important;
}
.right_text h2 {
    margin-bottom: 30px !important;
}
.right_text h4 {
    margin-top: 40px !important;
}
.main_text ul {
    list-style: none !important;
}
.main_text ul li::before {
    content: "\25A0" !important;
    color: #e00001 !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 ------------------------------ */
.quote{
    margin-top: 50px !important;
}
.testimonials {
    background-color: #EA002A !important;
    margin-top: 0 !important;
    margin-bottom: 100px !important;
}
.testimonials h4 {
    color: #ffffff !important;
    font-family: 'Source Sans Pro', sans-serif !important;
    font-style: italic !important;
    font-weight: 200 !important;
    line-height: 1.6 !important;
}
.testimonials p {
    color: #ffffff !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 {
    margin-top: 150px !important;
    z-index: 3 !important;
    position: relative !important;
}
.services_text {
    max-width: 500px !important;
    margin-top: -120px !important;
}
.services_last {
    margin-top: -100px !important;
}
.services_middle {
    margin-top: -50px !important;
}
.services_first {
    margin-top: 0px !important;
}
/* ------------------------------ SERVICES ENDS ------------------------------ */



/* ------------------------------ FOOTER ------------------------------ */
.footer {
    background-color: #E9E9E9 !important;
    margin-top: 80px !important;
}
.footer_logo {
    max-width: 200px !important;
}
.footer_location {
    text-align: right !important;
    margin-top: 0 !important;
    color: #000000 !important;
}
.footer_location h5, .footer_location h6 {
    color: #000000 !important;
}
.footer_location .fas {
    margin-right: 10px !important;
    color: #E00001 !important;
}
/* ------------------------------ FOOTER ENDS ------------------------------ */



/* -------------------------------------------------------------------- */
/* ------------------------------ MOBILE ------------------------------ */
/* -------------------------------------------------------------------- */



@media all and (max-width:768px) {
    h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
    h2 {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }
    h3 {
        font-size: 20px !important;
    }
    h4 {
        font-size: 22px !important;
    }
    h5 {
        font-size: 16px !important;
    }
    p {
        font-size: 16px !important;
    }
    body {
        line-height: 1.8 !important;
    }
/* ---------- HERO ---------- */
    .svg_logo {
        max-width: 250px !important;
        margin: auto !important;
    }
    .hero::after {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        background-image: linear-gradient(to top, transparent 0%, white 100%) !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;
    }
/* ---------- FOOTER ---------- */
    .footer {
        margin-top: 20px !important;
    }
    .footer_logo {
        max-width: 200px !important;
        margin: auto !important;
    }
    .footer_location {
        text-align: center !important;
        margin-top: 0 !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-xbq0enlawv28 a:hover {
  color: #E00001 !important;
}
.fl-node-vwg143xmyfsz a:hover {
  color: #E00001 !important;
}
.fl-node-p6mjlo8szxbh .gform_required_legend {
  display: none !important;
}
.fl-node-p6mjlo8szxbh .gform_submission_error {
  font-size: 20px !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-snerx45gbua6 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-fx1dlutkv52n .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-glz72kmr31dc .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-8csnbo643vwg .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-an2tvplydr5f .fl-row-content {
				min-width: 0px;
			}
		