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

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:before,
.fl-module:after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

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

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

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

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

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

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

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

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

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

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

/* Full Height Rows */
.fl-row-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 {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

/* Full height align bottom */
.fl-row-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 {
	align-items: flex-end;
	justify-content: flex-end;
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
}

/* 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 {
	align-items: center;
	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-module,
.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;
}

/* Modules
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}

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

.fl-builder-module-template {
	margin: 0 auto;
	max-width: 1100px;
	padding: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
@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-row-fixed-width {
	max-width: 1100px;
}
.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, :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-tqpeumib96k1 {
	color: #ffffff;
}
.fl-builder-content .fl-node-tqpeumib96k1 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-tqpeumib96k1 a {
	color: #ffffff;
}

.fl-builder-content .fl-node-tqpeumib96k1 a:hover {
	color: #ffffff;
}

.fl-builder-content .fl-node-tqpeumib96k1 h1,
.fl-builder-content .fl-node-tqpeumib96k1 h2,
.fl-builder-content .fl-node-tqpeumib96k1 h3,
.fl-builder-content .fl-node-tqpeumib96k1 h4,
.fl-builder-content .fl-node-tqpeumib96k1 h5,
.fl-builder-content .fl-node-tqpeumib96k1 h6,
.fl-builder-content .fl-node-tqpeumib96k1 h1 a,
.fl-builder-content .fl-node-tqpeumib96k1 h2 a,
.fl-builder-content .fl-node-tqpeumib96k1 h3 a,
.fl-builder-content .fl-node-tqpeumib96k1 h4 a,
.fl-builder-content .fl-node-tqpeumib96k1 h5 a,
.fl-builder-content .fl-node-tqpeumib96k1 h6 a {
	color: #ffffff;
}



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

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

/* Full height iPad with portrait orientation. */
@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
	.fl-node-tqpeumib96k1.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
	.fl-node-tqpeumib96k1.fl-row-full-height > .fl-row-content-wrap {
		min-height: 768px;
	}
}
/* Full height iPhone 5. You can also target devices with aspect ratio. */
@media screen and (aspect-ratio: 40/71) {
	.fl-node-tqpeumib96k1.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-tqpeumib96k1 > .fl-row-content-wrap:after {
	background-image: linear-gradient(135deg, #3b414f 17%, rgba(255,255,255,0) 94%);
}
.fl-node-tqpeumib96k1 > .fl-row-content-wrap {
	background-image: url(https://chinesesources.org/wp-content/uploads/2025/01/Bingding-Wood-Fired-Kiln.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-tqpeumib96k1.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 100vh;
}
@media(max-width: 992px) {
	.fl-node-tqpeumib96k1.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 100vh;
	}
}
@media(max-width: 768px) {
	.fl-node-tqpeumib96k1.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 50vh;
	}
}






.fl-node-47ci3yhk2lto > .fl-row-content-wrap {
	background-color: #b8b09b;
}
 .fl-node-47ci3yhk2lto > .fl-row-content-wrap {
	padding-top:6%;
	padding-bottom:3%;
}






.fl-node-17sixmcgewn0 > .fl-row-content-wrap {
	background-color: #e9e6d5;
}
 .fl-node-17sixmcgewn0 > .fl-row-content-wrap {
	margin-top:10px;
}
 .fl-node-17sixmcgewn0 > .fl-row-content-wrap {
	padding-top:5%;
	padding-right:5%;
	padding-bottom:5%;
	padding-left:5%;
}
@media ( max-width: 768px ) {
 .fl-node-17sixmcgewn0.fl-row > .fl-row-content-wrap {
	padding-right:5%;
	padding-left:5%;
}
}
.fl-node-m6oyba8csgrl {
	color: #ffffff;
}
.fl-builder-content .fl-node-m6oyba8csgrl *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-m6oyba8csgrl a {
	color: #ffffff;
}

.fl-builder-content .fl-node-m6oyba8csgrl a:hover {
	color: #ffffff;
}

.fl-builder-content .fl-node-m6oyba8csgrl h1,
.fl-builder-content .fl-node-m6oyba8csgrl h2,
.fl-builder-content .fl-node-m6oyba8csgrl h3,
.fl-builder-content .fl-node-m6oyba8csgrl h4,
.fl-builder-content .fl-node-m6oyba8csgrl h5,
.fl-builder-content .fl-node-m6oyba8csgrl h6,
.fl-builder-content .fl-node-m6oyba8csgrl h1 a,
.fl-builder-content .fl-node-m6oyba8csgrl h2 a,
.fl-builder-content .fl-node-m6oyba8csgrl h3 a,
.fl-builder-content .fl-node-m6oyba8csgrl h4 a,
.fl-builder-content .fl-node-m6oyba8csgrl h5 a,
.fl-builder-content .fl-node-m6oyba8csgrl h6 a {
	color: #ffffff;
}



.fl-node-m6oyba8csgrl > .fl-row-content-wrap {
	background-image: url(https://chinesesources.org/wp-content/uploads/2025/01/china-ceramic-journey-taoxichuan-avenue.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-m6oyba8csgrl > .fl-row-content-wrap {
	padding-top:75px;
	padding-right:30px;
	padding-bottom:130px;
	padding-left:30px;
}






.fl-node-evdhuwsn5ibk {
	color: rgba(255,255,255,0.9);
}
.fl-builder-content .fl-node-evdhuwsn5ibk *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

.fl-builder-content .fl-node-evdhuwsn5ibk a {
	color: rgba(255,255,255,0.9);
}

.fl-builder-content .fl-node-evdhuwsn5ibk a:hover {
	color: rgba(255,255,255,0.9);
}

.fl-builder-content .fl-node-evdhuwsn5ibk h1,
.fl-builder-content .fl-node-evdhuwsn5ibk h2,
.fl-builder-content .fl-node-evdhuwsn5ibk h3,
.fl-builder-content .fl-node-evdhuwsn5ibk h4,
.fl-builder-content .fl-node-evdhuwsn5ibk h5,
.fl-builder-content .fl-node-evdhuwsn5ibk h6,
.fl-builder-content .fl-node-evdhuwsn5ibk h1 a,
.fl-builder-content .fl-node-evdhuwsn5ibk h2 a,
.fl-builder-content .fl-node-evdhuwsn5ibk h3 a,
.fl-builder-content .fl-node-evdhuwsn5ibk h4 a,
.fl-builder-content .fl-node-evdhuwsn5ibk h5 a,
.fl-builder-content .fl-node-evdhuwsn5ibk h6 a {
	color: rgba(255,255,255,0.9);
}



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

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

/* Full height iPad with portrait orientation. */
@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
	.fl-node-evdhuwsn5ibk.fl-row-full-height > .fl-row-content-wrap {
		min-height: 1024px;
	}
}
/* Full height iPad with landscape orientation. */
@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
	.fl-node-evdhuwsn5ibk.fl-row-full-height > .fl-row-content-wrap {
		min-height: 768px;
	}
}
/* Full height iPhone 5. You can also target devices with aspect ratio. */
@media screen and (aspect-ratio: 40/71) {
	.fl-node-evdhuwsn5ibk.fl-row-full-height > .fl-row-content-wrap {
		min-height: 500px;
	}
}
.fl-node-evdhuwsn5ibk > .fl-row-content-wrap {
	background-color: #F0F4F8;
	background-image: url(https://chinesesources.org/wp-content/uploads/2025/01/agency-service.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-evdhuwsn5ibk > .fl-row-content-wrap:after {
	background-image: linear-gradient(90deg, #3b414f 12%, rgba(255,255,255,0) 94%);
}
.fl-node-evdhuwsn5ibk.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 50vh;
}
@media(max-width: 992px) {
	.fl-node-evdhuwsn5ibk.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 40vh;
	}
}
@media(max-width: 768px) {
	.fl-node-evdhuwsn5ibk.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 40vh;
	}
}
 .fl-node-evdhuwsn5ibk > .fl-row-content-wrap {
	padding-top:6%;
	padding-bottom:6%;
}






.fl-node-ntk792mrs03c > .fl-row-content-wrap {
	background-color: #e9e6d5;
}
.fl-animated.fl-fade-left {
	animation: fl-fade-left 1s ease;
	-webkit-animation: fl-fade-left 1s ease;
}
@-webkit-keyframes fl-fade-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}






.fl-node-u58exkh1r2oy > .fl-row-content-wrap {
	background-color: #e5e5e5;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}






.fl-node-prq6nfjvukyo > .fl-row-content-wrap {
	background-color: #e5e5e5;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-prq6nfjvukyo > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:60px;
}






.fl-node-50lkphtgcmn6 > .fl-row-content-wrap:after {
	background-color: #303036;
}
.fl-node-50lkphtgcmn6 > .fl-row-content-wrap {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-builder-mobile .fl-node-50lkphtgcmn6 > .fl-row-content-wrap {
	background-image: url(https://content-pages.demos.wpbeaverbuilder.com/wp-content/uploads/sites/26/2016/09/coffee-cup-mug-apple.jpg);
	background-position: center center;
	background-attachment: scroll;
}
 .fl-node-50lkphtgcmn6 > .fl-row-content-wrap {
	padding-top:80px;
	padding-bottom:80px;
}




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




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




.fl-node-idwfv39lbr8s {
	width: 100%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-idwfv39lbr8s {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-idwfv39lbr8s {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-idwfv39lbr8s > .fl-col-content {
	padding-right:10%;
}
@media ( max-width: 992px ) {
 .fl-node-idwfv39lbr8s.fl-col > .fl-col-content {
	padding-right:0px;
}
}




.fl-node-08bmxln7cg43 {
	width: 100%;
}




.fl-node-kf0nso5z361p {
	width: 16.65%;
}




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




.fl-node-9yb1v0fnj372 {
	width: 100%;
}




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




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




.fl-node-3p0964c8oqik {
	width: 55%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-3p0964c8oqik {
		width: 70% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-3p0964c8oqik {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-a2n7qdmpjyxw {
	width: 50%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-a2n7qdmpjyxw {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-a2n7qdmpjyxw > .fl-col-content {
	padding-right:10%;
}
@media ( max-width: 992px ) {
 .fl-node-a2n7qdmpjyxw.fl-col > .fl-col-content {
	padding-right:0px;
}
}




.fl-node-bxt36wu7p5yz {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-bxt36wu7p5yz {
		width: 70% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-bxt36wu7p5yz {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-6v8dj3yh0zsk {
	width: 50%;
}




.fl-node-9k4ny03a2vum {
	width: 45%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-9k4ny03a2vum {
		width: 30% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media ( max-width: 992px ) {
 .fl-node-9k4ny03a2vum.fl-col > .fl-col-content {
	margin-left:0px;
}
}




.fl-node-138molax2ijw {
	width: 16.65%;
}




.fl-node-oadt0wg95kyr {
	width: 50%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-oadt0wg95kyr {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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




.fl-node-ceu5joq643dk {
	width: 50%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-ceu5joq643dk {
		width: 30% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ceu5joq643dk {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-9y0r3sme24tv {
	width: 16.65%;
}




.fl-node-51h6jnlbze82 {
	width: 16.65%;
}




.fl-node-ez8l624an3gj {
	width: 16.65%;
}




.fl-node-ylcvubns3ejf {
	width: 16.65%;
}
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-923ny5phe8lk .fl-photo {
	text-align: center;
}

.fl-accordion-button {
	cursor: pointer;
	display: table;
}
.fl-accordion-button:focus,
.fl-accordion-button-icon:focus,
.fl-accordion-button-icon:active {
	outline: 0
}

.fl-accordion-button-label {
	display: table-cell;
	width: 100%;
	border: none;
	background: none;
	text-align: left;
	outline: 1px;
	text-decoration: none;
}

.fl-accordion-button-label:focus,
.fl-accordion-button-label:active,
.fl-accordion-button-icon:focus,
.fl-accordion-button-icon:active {
	background: none;
	outline-color: -webkit-focus-ring-color;
	outline-style: auto;
	text-decoration: none;
}

.fl-accordion-button-label:hover,
.fl-accordion-button-icon:hover {
	text-decoration: none;
}

.fl-accordion-button-icon {
	display: table-cell;
	line-height: inherit;
	padding-left: 15px;
	vertical-align: middle;
}

.fl-accordion-button-icon-left {
	padding-left: 0;
	padding-right: 10px;
}

.fl-accordion-button-icon-left, .fl-accordion-button-icon-right {
	opacity: .5;
}

.fl-accordion-content {
	display: none;
}
.fl-accordion-item {
	overflow: hidden;
}

/* Small */
.fl-accordion-small .fl-accordion-button {
	padding: 10px 15px;
}
.fl-accordion-small .fl-accordion-content {
	padding: 0 30px 10px 15px;
}

/* Medium */
.fl-accordion-medium .fl-accordion-button {
	padding: 15px 20px;
}
.fl-accordion-medium .fl-accordion-button-label {
	font-size: 20px;
}
.fl-accordion-medium .fl-accordion-content {
	padding: 0 40px 15px 20px;
}

/* Large */
.fl-accordion-large .fl-accordion-button {
	padding: 20px 25px;
}
.fl-accordion-large .fl-accordion-button-label {
	font-size: 26px;
}
.fl-accordion-large .fl-accordion-content {
	padding: 0 50px 25px 25px;
}

.rtl .fl-accordion-item .fl-accordion-button-label,
.rtl .fl-accordion-item .fl-accordion-content * {
	text-align: right;
}
.rtl .fl-accordion-item .fl-accordion-button-icon {
	padding-left: 0;
}

.fl-node-f9hqbvygkcld .fl-accordion-item {
	margin-bottom: 10px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
.fl-node-f9hqbvygkcld .fl-accordion-button, .fl-node-f9hqbvygkcld .fl-accordion-button-label {
	font-size: 18px;
	text-align: center;
}
.fl-node-f9hqbvygkcld .fl-accordion-content {
	font-size: 16px;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-wqkm9sxyib07.fl-module-heading .fl-heading {
	font-size: 28px;
	text-align: center;
}
.fl-node-xfq3ol5cta7k .fl-photo {
	text-align: center;
}
.fl-node-xfq3ol5cta7k .fl-photo-img {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.25);
}
.fl-node-qx6ziynp19gl.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-qx6ziynp19gl > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-ezd4svtg0h2u .fl-photo {
	text-align: center;
}
.fl-node-lkyqz35osnuf .fl-photo {
	text-align: center;
}
.fl-node-zctx5bhs7k3o .fl-photo {
	text-align: center;
}
.fl-node-rs8q1flzpovj .fl-photo {
	text-align: center;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
 .fl-node-gs3tndmjwu2q > .fl-module-content {
	margin-right:80px;
	margin-left:80px;
}
@media (max-width: 768px) { .fl-node-gs3tndmjwu2q > .fl-module-content { margin-left:20px;margin-right:20px; } }.fl-node-708gfzmrwpst .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #cccccc;
	max-width: 100%;
	margin: auto;
}

			/* Stacked Alignment
---------------------------------------------------*/

.fl-cta-left {
	text-align: left;
}
.fl-cta-center {
	text-align: center;
}
.fl-cta-right {
	text-align: right;
}

/* Inline Alignment
---------------------------------------------------*/

.fl-cta-inline {
	display: table;
	width: 100%;
}
.fl-cta-inline .fl-cta-text,
.fl-cta-inline .fl-cta-button {
	display: table-cell;
	vertical-align: middle;
}
.fl-cta-inline .fl-cta-text {
	width: 70%;
}
.fl-cta-inline .fl-cta-button {
	padding-left: 30px;
	text-align: center;
	width: 30%;
}

/* Title
---------------------------------------------------*/

body h1.fl-cta-title,
body h2.fl-cta-title,
body h3.fl-cta-title,
body h4.fl-cta-title,
body h5.fl-cta-title,
body h6.fl-cta-title {
	margin: 0;
	padding: 0 0 10px 0;
}

/* Button
---------------------------------------------------*/

.fl-cta-stacked .fl-cta-button {
	padding-top: 20px;
}@media (max-width: 768px) { /* Inline Alignment
---------------------------------------------------*/

.fl-cta-inline {
	display: block;
	text-align: center;
}
.fl-cta-inline .fl-cta-text,
.fl-cta-inline .fl-cta-button {
	display: block;
}
.fl-cta-inline .fl-cta-text {
	width: auto;
}
.fl-cta-inline .fl-cta-button {
	padding-left: 0;
	padding-top: 20px;
	width: auto;
} }







.fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover,
.fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover span.fl-button-text,
.fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover *,
.fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover,
.fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover span.fl-button-text,
.fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover * {
	color: #0a0a0a;
}





.fl-builder-content .fl-node-p62hlvsxy5n0 .fl-button,
.fl-builder-content .fl-node-p62hlvsxy5n0 .fl-button * {
	transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
}


.fl-builder-content .fl-node-p62hlvsxy5n0 .fl-button-wrap a.fl-button {
	padding-top: 12px;
	padding-right: 24px;
	padding-bottom: 12px;
	padding-left: 24px;
}
.fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button, .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button, .fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:visited {
	font-size: 18px;
	line-height: 18px;
	background-color: #303036;
}
.fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button, .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:visited, .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover, .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button, .fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:focus {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #f3f3f3;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover, .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:focus {
	border-color: #f3f3f3;
}
.fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-p62hlvsxy5n0 a.fl-button:hover {
	background-color: #5e8c97;
}
.fl-node-p62hlvsxy5n0 .fl-module-content {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-builder-content .fl-node-p62hlvsxy5n0 .fl-cta-title {
	color: #ffffff;
	font-size: 27px;
}
.fl-builder-content .fl-node-p62hlvsxy5n0 .fl-cta-wrap .fl-cta-text-content * {
	color: #ffffff;
}
 .fl-node-p62hlvsxy5n0 > .fl-module-content {
	margin-top:40px;
}
@media (max-width: 768px) { .fl-node-p62hlvsxy5n0 > .fl-module-content { margin-top:20px; } }













.fl-node-04cvtdpq51rm .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-04cvtdpq51rm .fl-button-wrap a.fl-button {
	padding-top: 15px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 30px;
}
.fl-builder-content .fl-node-04cvtdpq51rm a.fl-button, .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:visited, .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:hover, .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:focus, .fl-page .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button, .fl-page .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:visited, .fl-page .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:hover, .fl-page .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:focus {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.2);
}
.fl-builder-content .fl-node-04cvtdpq51rm a.fl-button, .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:visited, .fl-page .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button, .fl-page .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:visited {
	background-color: #303036;
}
.fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:hover, .fl-page .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:hover, .fl-page .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-04cvtdpq51rm a.fl-button:hover {
	background-color: #5e8c97;
}
@media ( max-width: 768px ) {
 .fl-node-04cvtdpq51rm.fl-module > .fl-module-content {
	margin-bottom:30px;
}
}
 .fl-node-cx4tsqy5o8li > .fl-module-content {
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-cx4tsqy5o8li.fl-module > .fl-module-content {
	margin-bottom:0px;
}
}
 .fl-node-z8d31i2lekj5 > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-05q3cxtelngk .fl-photo {
	text-align: center;
}
.fl-node-05q3cxtelngk .fl-photo-img {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.25);
}
 .fl-node-icebktoj9x6w > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-73s5ec9ut1dw .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #cccccc;
	max-width: 100%;
	margin: auto;
}

			.fl-node-71ynwdg54uml.fl-module-heading .fl-heading {
	text-align: left;
}
.fl-builder-content .fl-node-qfra4eu2vt8j .fl-rich-text, .fl-builder-content .fl-node-qfra4eu2vt8j .fl-rich-text *:not(b, strong) {
	font-size: 1.1em;
}
/* 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 .fl-testimonial {
	position: absolute;
	top: 0;
	visibility: hidden;
}
.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 {
	pointer-events: none;
}
.fl-node-x0ih1qga8e2f .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-x0ih1qga8e2f .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-x0ih1qga8e2f .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-x0ih1qga8e2f .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-x0ih1qga8e2f .fl-testimonials-wrap .fas:hover,
.fl-node-x0ih1qga8e2f .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-x0ih1qga8e2f .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-x0ih1qga8e2f > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
 .fl-node-aqlxpytfv15e > .fl-module-content {
	margin-top:0px;
}
.fl-node-ylsg5d879fwb .fl-photo {
	text-align: center;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
/* ## TESTIMONIALS LEFT ALIGNED ## */

.bb-testimonials p {
  margin-bottom: 40px;
}
.bb-testimonials img {
  border-radius: 100%;
  height: 80px;
  width: 80px;
  margin-top: -10px;
}

/* ## TESTIMONIALS CENTERED ## */

.bb-testimonials-centered p {
  margin-bottom: 20px;
}
.bb-testimonials-centered img {
  border-radius: 100%;
  height: 80px;
  width: 80px;
  margin-top: 10px;
}
/*#######################################################*/

/* ## TESTIMONIALS ## */

/* The following rules provide some useful layout abilities - namely to have
an avatar image for the each testimonial, and to have either a centered style
or a left aligned style. You'll need to apply the appropriate class to your
module, and remember to align your avatar images left when adding them into the 
text editor */

/* ## TESTIMONIALS LEFT ALIGNED ## */

.bb-testimonials p {
  margin-bottom: 30px;
}
.bb-testimonials img {
  border-radius: 100%;
  height: 60px;
  width: 60px;
  margin-top: -5px !important;
}
/*#######################################################*/

/* ## TESTIMONIALS ## */

/* The following rules provide some useful layout abilities - namely to have
an avatar image for the each testimonial, and to have either a centered style
or a left aligned style. You'll need to apply the appropriate class to your
module, and remember to align your avatar images left when adding them into the 
text editor */

/* ## TESTIMONIALS LEFT ALIGNED ## */

.bb-testimonials p {
  margin-bottom: 40px;
}
.bb-testimonials img {
  border-radius: 100%;
  height: 80px;
  width: 80px;
  margin-top: -10px;
}

/* ## TESTIMONIALS CENTERED ## */

.bb-testimonials-centered p {
  margin-bottom: 20px;
}
.bb-testimonials-centered img {
  border-radius: 100%;
  height: 80px;
  width: 80px;
  margin-top: 10px;
}

/*#######################################################*/

/* ## BB COUNTDOWN ## */

/* Align the countdown text to the left */
.bb-countdown-align-left .fl-countdown {
    text-align: left;
}
/* End Layout CSS */

