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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1160px;
}
.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-go1bmnklzp8c > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-go1bmnklzp8c > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}



















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




.fl-node-elc6m57gn9wv {
	width: 100%;
}
.fl-node-elc6m57gn9wv > .fl-col-content {
	background-color: #fef1ec;
}
 .fl-node-elc6m57gn9wv > .fl-col-content {
	margin-bottom:0px;
}
 .fl-node-elc6m57gn9wv > .fl-col-content {
	padding-bottom:0px;
}




.fl-node-f8x3rqtwnhim {
	width: 100%;
}
.fl-node-f8x3rqtwnhim > .fl-col-content {
	background-color: #fef1ec;
}
 .fl-node-f8x3rqtwnhim > .fl-col-content {
	margin-bottom:20px;
}
 .fl-node-f8x3rqtwnhim > .fl-col-content {
	padding-bottom:0px;
}




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




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




.fl-node-5pa1dimt4hnf {
	width: 33.33%;
}




.fl-node-21p8x0jgz4mn {
	width: 100%;
}




.fl-node-4ibsgd6f5uwe {
	width: 100%;
}
.fl-node-4ibsgd6f5uwe > .fl-col-content {
	background-color: #fef1ec;
}
 .fl-node-4ibsgd6f5uwe > .fl-col-content {
	margin-bottom:20px;
}
 .fl-node-4ibsgd6f5uwe > .fl-col-content {
	padding-bottom:0px;
}




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




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




.fl-node-lqx827fi0z1t {
	width: 100%;
}
.fl-node-lqx827fi0z1t > .fl-col-content {
	background-color: #fef1ec;
}
 .fl-node-lqx827fi0z1t > .fl-col-content {
	margin-bottom:20px;
}
 .fl-node-lqx827fi0z1t > .fl-col-content {
	padding-bottom:0px;
}




.fl-node-tobwuez89j71 {
	width: 100%;
}
.fl-node-tobwuez89j71 > .fl-col-content {
	background-color: #fef1ec;
}
 .fl-node-tobwuez89j71 > .fl-col-content {
	margin-bottom:20px;
}
 .fl-node-tobwuez89j71 > .fl-col-content {
	padding-bottom:0px;
}




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




.fl-node-7blc0yokm98g {
	width: 100%;
}
.fl-node-7blc0yokm98g > .fl-col-content {
	background-color: #fef1ec;
}
 .fl-node-7blc0yokm98g > .fl-col-content {
	margin-bottom:0px;
}
 .fl-node-7blc0yokm98g > .fl-col-content {
	padding-bottom:0px;
}




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




.fl-node-5t69s2hy4vwz {
	width: 33.33%;
}




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




.fl-node-kencgoyuxpzs {
	width: 33.33%;
}
.ppbbm-simple-hero-section-wrapper {
    position: relative;
    min-height: 660px;
}

.ppbbm-simple-hero-section-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: center;
}

.ppbbm-simple-hero-section-bg:before {
    content: "";
    width: 100%;
    min-height: 435px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(31, 32, 33, 0) 20.67%, rgba(31, 32, 33, 0.8) 100%, #1F2021 100%);
}

.ppbbm-simple-hero-section-content {
    position: absolute;
    z-index: 1;
    bottom: 0;
    padding: 35px 135px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    left: 50%;
    transform: translateX(-50%);
}

.ppbbm-simple-hero-section-content-left .ppbbm-simple-hero-welcome-text {
    margin-bottom: -20px;
    font-family: 'High Summit';
    font-size: 52px;
    color: #FFFDFC;
    font-weight: 400;
    line-height: 1;
}

.ppbbm-simple-hero-section-content-left .ppbbm-simple-hero-heading-text {
    color: #FFFDFC;
    font-size: 48px;
    font-weight: 300;
    line-height: 1.4;
    text-transform: lowercase;
    margin-bottom: 0;
}

.ppbbm-simple-hero-section-content-right {
    max-width: 190px;
    text-align: center;
    width: 100%;
}

.ppbbm-simple-hero-section-content-right .button-small {
    display: block;
    margin: 0 auto 10px;
}

.ppbbm-simple-hero-section-content-right .ppbbm-simple-hero-plain-btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    text-decoration: underline;
    color: #FFFDFC;
    transition: all 0.2s ease-in-out;
}

.ppbbm-simple-hero-section-content-right .ppbbm-simple-hero-plain-btn:hover {
    text-decoration: none;
}

@media all and (min-width: 992px) and (max-width: 1099px) {
    .ppbbm-simple-hero-section-content {
        padding: 35px 80px;
    }
}

@media all and (min-width: 768px) and (max-width: 991px) {
    .ppbbm-simple-hero-section-wrapper {
        min-height: 550px;
    }
    .ppbbm-simple-hero-section-content {
        padding: 35px 40px;
    }
    .ppbbm-simple-hero-section-content-left .ppbbm-simple-hero-welcome-text {
        font-size: 42px;
        margin-bottom: -10px;
    }
    .ppbbm-simple-hero-section-content-left .ppbbm-simple-hero-heading-text {
        font-size: 36px;
    }
}

@media all and (max-width: 767px) {
    .ppbbm-simple-hero-section-wrapper {
        min-height: 550px;
    }
    .ppbbm-simple-hero-section-content-left .ppbbm-simple-hero-welcome-text {
        font-size: 42px;
        margin-bottom: 0px;
    }
    .ppbbm-simple-hero-section-content-left .ppbbm-simple-hero-heading-text {
        font-size: 36px;
        line-height: 1.2;
    }
    .ppbbm-simple-hero-section-content {
        padding: 35px 25px 50px;
        flex-direction: column;
    }
    .ppbbm-simple-hero-section-content-left {
        margin-bottom: 20px;
    }
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-9lutjv2bnzpr.fl-module-heading .fl-heading {
	text-align: left;
}
 .fl-node-9lutjv2bnzpr > .fl-module-content {
	margin-top:1%;
	margin-right:0%;
	margin-bottom:1%;
	margin-left:10%;
}
/**
 * Horizontal Layout
 */
.fl-button-group-layout-horizontal .fl-button-group-buttons,
.fl-button-group-layout-horizontal.fl-button-group-buttons {
    display: flex;
    flex-wrap: wrap;
}

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

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

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

.fl-node-aprcgh3boj6d .fl-button-group-layout-vertical .fl-button-group-buttons a.fl-button,
.fl-node-aprcgh3boj6d .fl-button-group-layout-horizontal .fl-button-group-buttons a.fl-button {
	width: 100%;
}
.fl-node-aprcgh3boj6d .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: flex-start}




	#fl-button-group-button-aprcgh3boj6d-0 a.fl-button {
		
			}

			#fl-button-group-button-aprcgh3boj6d-1 a.fl-button > span,
		#fl-button-group-button-aprcgh3boj6d-1 a.fl-button > i {
			color: #ffffff;
		}
		
	#fl-button-group-button-aprcgh3boj6d-1 a.fl-button {
									background: #024e79;
			border: 1px solid #00426d;		
			}

		.fl-builder-content .fl-node-aprcgh3boj6d .fl-button,
	.fl-builder-content .fl-node-aprcgh3boj6d .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-aprcgh3boj6d .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: left;
}
.fl-node-aprcgh3boj6d .fl-button-group-layout-horizontal .fl-button-group-buttons {
	justify-content: flex-start;
}
.fl-builder-content .fl-node-aprcgh3boj6d .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
 .fl-node-aprcgh3boj6d > .fl-module-content {
	margin-top:1%;
	margin-right:0%;
	margin-bottom:3%;
	margin-left:10%;
}
.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-07x24rsaw865 > .fl-module-content {
	margin-top:0%;
	margin-right:7%;
	margin-bottom:0%;
	margin-left:30%;
}
@media (max-width: 768px) { .fl-node-07x24rsaw865 > .fl-module-content { margin-left:20px; } } .fl-node-89iu6oglydb5 > .fl-module-content {
	margin-top:0%;
	margin-right:7%;
	margin-bottom:0%;
	margin-left:7%;
}
 .fl-node-q1wapobfcuet > .fl-module-content {
	margin-top:0%;
	margin-right:35%;
	margin-bottom:0%;
	margin-left:7%;
}
@media (max-width: 768px) { .fl-node-q1wapobfcuet > .fl-module-content { margin-right:20px; } }/* Post Slider */

/* Wrappers */
body.rtl .fl-module-post-carousel .bx-viewport {
	direction: ltr;
}
body.rtl .fl-post-carousel-post {
	direction: rtl;
}
.fl-module-post-carousel {
	flex-grow: 1;
	place-self: stretch;
}
.fl-module-post-carousel .bx-wrapper {
	max-width: 100% !important;
	margin: 0 auto 40px;
}
.fl-module-post-carousel .bx-controls {
	width: 100%;
	position: absolute;
	bottom: 0;
	margin-top: 20px;
}

.fl-post-carousel-navigation{
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 2;
	margin-top: -16px;
}
.fl-post-carousel-navigation a{
	position: absolute;
	display: inline-block;
	opacity: .7;
}
.fl-post-carousel-navigation a:hover{ opacity: 1; }

.fl-post-carousel-navigation .carousel-prev{ left: 0; }
.fl-post-carousel-navigation .carousel-next{ right: 0; }

.fl-post-carousel-navigation .fl-post-carousel-svg-container{
	position: relative;
	width: 32px;
	height: 32px;
}
.fl-post-carousel-navigation svg{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.fl-post-carousel-navigation path{ fill: #fff; }

.fl-post-carousel-navigation a.disabled,
.bx-controls a.disabled {
	pointer-events: none;
}

/*Module styles =======================================*/

/* Post Carousel */
.fl-post-carousel {
	margin: 0 auto;
	position: relative;
}

.fl-post-carousel-wrapper:before,
.fl-post-carousel-wrapper:after {
	content: '';
	display: table;
}
.fl-post-carousel-wrapper:after {
	clear: both;
}

.fl-post-carousel-post {
	position: absolute;
	top: 0;
	float: left;
	visibility: hidden;
	background: #fff;
}

.fl-post-carousel-loaded .fl-post-carousel-post {
	position: relative;
	visibility: visible;
	margin: 0;
	-webkit-backface-visibility: hidden; /* Safari */
	backface-visibility: hidden;
}

.fl-post-carousel-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-post-carousel-image .fl-photo-content {
	display: block;
}

/* Layout - post grid */
.fl-post-carousel-post {
	border: 1px solid #e6e6e6;
	border: 1px solid rgba(0,0,0,0.1);
}
.fl-post-carousel-text {
	padding: 20px;
}
.fl-post-carousel-title {
	padding-bottom: 7px;
}
.fl-post-carousel-content {
	font-size: 14px;
	line-height: 22px;
}
.fl-post-carousel-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
.fl-post-carousel-title {
	font-size: 20px;
	line-height: 26px;
	margin: 0 0 10px;
	padding: 0;
}
.fl-post-carousel-meta {
	font-size: 14px;
	margin: 0 0 10px;
	padding: 0;
}

/* Layout - post gallery */

.fl-post-carousel-gallery .fl-post-carousel-link {
	display: block;
	height: 100%;
	text-decoration: none;
}
.fl-post-carousel-gallery .fl-post-carousel-img {
	position: relative;
	z-index: 1;
}

.fl-post-carousel-gallery .fl-post-carousel-text-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	text-align: center;
	opacity: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}
.fl-post-carousel-gallery .fl-post-no-crop .fl-post-carousel-text-wrap,
.fl-post-carousel-gallery .fl-post-no-crop .fl-post-carousel-text{
	position: relative;
	padding: 20px;
	top: 0;
	left: 0;
	-webkit-transform: none;
	   -moz-transform: none;
	    -ms-transform: none;
	        transform: none;
}

.fl-post-carousel-gallery .fl-post-carousel-link:hover .fl-post-carousel-text-wrap,
.fl-post-carousel-gallery .fl-post-carousel-post.fl-post-no-thumb .fl-post-carousel-text-wrap {
	opacity: 1;
}

.fl-post-carousel-gallery .fl-post-carousel-text {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100%;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}

.fl-post-carousel-gallery .fl-post-carousel-title {
	margin: 0 0 5px 0;
}

/* slide ratio - for slides with no thumb */
.fl-post-carousel-gallery .fl-post-carousel-ratio{
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}
.fl-post-carousel-gallery .fl-post-carousel-ratio{ padding-bottom: 70%; }

.fl-post-carousel-gallery .fl-carousel-icon{
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.fl-post-carousel-gallery .fl-carousel-icon i,
.fl-post-carousel-gallery .fl-carousel-icon i:before{
	width: 24px;
	height: 24px;
	font-size: 24px;
}

/* Gallery Transitions */
.fl-post-carousel-gallery .fl-post-carousel-text,
.fl-post-carousel-gallery .fl-post-carousel-link:hover .fl-post-carousel-text,
.fl-post-carousel-gallery .fl-post-carousel-post.fl-post-no-thumb .fl-post-carousel-text{
	-webkit-transform: translate3d(-50%,-50%,0);
	   -moz-transform: translate3d(-50%,-50%,0);
	    -ms-transform: translate(-50%,-50%);
			transform: translate3d(-50%,-50%,0);
}

/* Common Styles */
body .fl-post-carousel-text a {
	text-decoration: none;
}

	.fl-node-ucgxjn0wst4p .fl-post-carousel-wrapper{
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		height: 100%;
	}

	

.fl-node-ucgxjn0wst4p .fl-post-carousel .fl-post-carousel-post {
	width: 33.33%;
}

.fl-node-ucgxjn0wst4p .fl-post-carousel .fl-post-carousel-post:nth-child(-n+3) {
	position: relative;
}



	.fl-builder-content .fl-node-ucgxjn0wst4p .fl-post-carousel-post{
		background-color: #ffffff;
	}




.fl-node-ucgxjn0wst4p .fl-post-carousel-text .fl-post-carousel-title, .fl-node-ucgxjn0wst4p .fl-post-carousel-text .fl-post-carousel-title a {
	color: #003b5c;
}
.fl-node-ucgxjn0wst4p .fl-post-carousel-title a:hover {
	color: #3aa7e4;
}
.fl-node-ucgxjn0wst4p .fl-post-carousel-meta a {
	color: #dc008b;
}
.fl-node-ucgxjn0wst4p .fl-post-carousel-meta a:hover {
	color: #942600;
}
.fl-node-ucgxjn0wst4p .fl-post-carousel-more {
	color: #dc008b;
	font-weight: 700;
}
.fl-node-ucgxjn0wst4p .fl-post-carousel-more:hover {
	color: #942600;
}
.ppbbm-explore-communities-section-wrapp {
    position: relative;
    padding: 110px 50px 150px 15px;
}

.ppbbm-explore-communities-section-wrapp:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FEECF6;
    z-index: -1;
    max-width: 935px;
}

.ppbbm-explore-communities-section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.ppbbm-explore-communities-section-title .ppbbm-explore-communities-section-title-sub-heading {
    font-family: 'High Summit';
    font-size: 48px;
    line-height: 1;
    color: #DC008B;
    margin-bottom: -25px;
}

.ppbbm-explore-communities-section-title .ppbbm-explore-communities-section-title-heading {
    margin-bottom: 0;
    font-size: 48px;
    font-weight: 200;
    text-transform: lowercase;
    color: #003B5C;
    line-height: 1.4;
}

.ppbbm-explore-communities-section-title .ppbbm-explore-communities-badge-img {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 265px;
    max-height: 265px;
    transform: translateY(-70%);
}

.ppbbm-explore-communities-wrapp {
    position: relative;
}

.swiper.ppbbm-explore-communities-wrapp-inner {
    max-width: 1100px;
    max-height: 620px;
    margin-left: 0;
}

.ppbbm-explore-communities-single-community {
    position: relative;
    min-height: 155px;
}

.ppbbm-explore-communities-single-community-content {
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(31, 32, 33, 0) 0%, rgba(31, 32, 33, 0.8) 100%);
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-content: center;
    width: 100%;
    min-height: 155px;
}

.ppbbm-explore-communities-single-community-img {
    min-height: 620px;
    background: #ccc;
    overflow: hidden;
}

.ppbbm-explore-communities-single-community-img img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 620px;
    min-height: 620px;
}

.ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title,
.ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title a,
.ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-tags,
.ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-right a {
    color: #FFFDFC;
}

.ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title,
.ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title a {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.2;
}

.ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title a:hover {
    text-decoration: none;
}

.ppbbm-explore-communities-single-community-content-tags {
    list-style: none;
    display: block;
    margin-bottom: 0;
}

.ppbbm-explore-communities-single-community-content-tags li {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
}

.ppbbm-explore-communities-single-community-content-tags li:not(:last-child) {
    margin-right: 25px;
}

.ppbbm-explore-communities-single-community-content-left,
.ppbbm-explore-communities-single-community-content-right {
    display: inline-flex;
    justify-content: center;
}

.ppbbm-explore-communities-single-community-content-left {
    flex-direction: column;
}

.ppbbm-explore-communities-single-community-content-right {
    align-items: center;
}

.ppbbm-explore-communities-single-community-content-right a {
    white-space: nowrap;
}

.ppbbm-explore-communities-slider-controls {
    position: absolute;
    top: 50%;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 250px;
    max-height: 520px;
    transform: translateY(-50%);
}

.ppbbm-explore-communities-slider-controls:before {
    content: '';
    width: 1px;
    height: 100%;
    left: 6px;
    top: 0;
    position: absolute;
    background-color: #C4C4C4;
}

.ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-pagination {
    position: absolute;
    transform: translateY(-50%);
    height: auto;
    bottom: auto;
    top: 50%;
    right: 0;
    left: auto;
    width: auto;
    color: #003B5C;
    font-size: 14px;
    font-weight: 600;
}

.ppbbm-explore-communities-navigation .ppbbm-explore-communities-prev,
.ppbbm-explore-communities-navigation .ppbbm-explore-communities-next {
    font-size: 20px;
    color: #DC008B;
    transition: all 0.1s ease-in-out;
}

.ppbbm-explore-communities-navigation .ppbbm-explore-communities-prev:hover,
.ppbbm-explore-communities-navigation .ppbbm-explore-communities-next:hover {
    color: #97005F;
    transition: all 0.1s ease-in-out;
}

.ppbbm-explore-communities-navigation {
    position: absolute;
    right: 10px;
    height: 87%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.ppbbm-explore-communities-navigation .ppbbm-explore-communities-prev {
    transform: rotate(90deg);
}

.ppbbm-explore-communities-navigation .ppbbm-explore-communities-next {
    transform: rotate(90deg);
    position: absolute;
    bottom: 0;
}

.ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider {
    width: 100% !important;
    max-width: 250px;
    max-height: 470px;
    height: 100%;
    position: absolute;
    top: 50%;
    right: auto;
    left: 0;
    transform: translateY(-50%);
}

.ppbbm-explore-communities-title-thumb-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.ppbbm-explore-communities-title-thumb-slider-single {
    font-size: 20px;
    font-weight: 400;
    color: #1F2021;
    line-height: 1.2;
    border-left: 12px solid transparent;
    display: flex;
    align-items: center;
    padding-left: 12px;
}

.ppbbm-explore-communities-title-thumb-slider-single.swiper-slide-thumb-active {
    font-weight: 600;
    text-decoration: underline;
    border-left: 12px solid #DC008B;
}

.ppbbm-explore-communities-title-thumb-slider-single .ppbbm-explore-communities-title-thumb-slider-single-title {
    cursor: pointer;
}

.ppbbm-explore-communities-navigation .ppbbm-explore-communities-m-prev,
.ppbbm-explore-communities-navigation .ppbbm-explore-communities-m-next {
    display: none;
}

@media all and (min-width: 1201px) and (max-width: 1439px) {
    .ppbbm-explore-communities-section-wrapp {
        padding: 100px 50px 100px 15px;
    }
    .ppbbm-explore-communities-section-wrapp:before {
        width: 65%;
    }
    .swiper.ppbbm-explore-communities-wrapp-inner {
        width: 78%;
    }
    .ppbbm-explore-communities-slider-controls {
        width: 20%;
        margin-left: 2%;
    }
    .ppbbm-explore-communities-single-community-content {
        padding: 12px 60px;
    }
}

@media all and (min-width: 1025px) and (max-width: 1200px) {
    .ppbbm-explore-communities-section-wrapp {
        padding: 100px 50px 100px 15px;
    }
    .ppbbm-explore-communities-section-wrapp:before {
        width: 65%;
    }
    .ppbbm-explore-communities-section-title .ppbbm-explore-communities-section-title-heading {
        font-size: 36px;
    }
    .ppbbm-explore-communities-section-title .ppbbm-explore-communities-section-title-sub-heading {
        font-size: 36px;
    }
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title,
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title a {
        font-size: 24px;
    }
    .ppbbm-explore-communities-single-community-content-tags li {
        font-size: 16px;
    }
    .ppbbm-explore-communities-single-community-content-tags li:not(:last-child) {
        margin-right: 15px;
    }
    .swiper.ppbbm-explore-communities-wrapp-inner {
        width: 78%;
    }
    .ppbbm-explore-communities-slider-controls {
        width: 20%;
        margin-left: 2%;
    }
    .ppbbm-explore-communities-single-community-content {
        padding: 12px 20px;
    }
    .ppbbm-explore-communities-title-thumb-slider-single {
        font-size: 16px;
    }
    .swiper.ppbbm-explore-communities-wrapp-inner {
        max-height: 500px;
    }
    .ppbbm-explore-communities-slider-controls {
        max-height: 370px;
    }
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider {
        max-height: 340px;
    }
}

@media all and (min-width: 992px) and (max-width: 1024px) {
    .ppbbm-explore-communities-section-wrapp {
        padding: 100px 50px 100px 15px;
    }
    .ppbbm-explore-communities-section-wrapp:before {
        width: 65%;
    }
    .ppbbm-explore-communities-section-title .ppbbm-explore-communities-section-title-heading {
        font-size: 36px;
    }
    .ppbbm-explore-communities-section-title .ppbbm-explore-communities-section-title-sub-heading {
        font-size: 36px;
    }
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title,
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title a {
        font-size: 24px;
    }
    .ppbbm-explore-communities-single-community-content-tags li {
        font-size: 16px;
    }
    .ppbbm-explore-communities-single-community-content-tags li:not(:last-child) {
        margin-right: 15px;
    }
    .swiper.ppbbm-explore-communities-wrapp-inner {
        width: 78%;
    }
    .ppbbm-explore-communities-slider-controls {
        width: 20%;
        margin-left: 2%;
    }
    .ppbbm-explore-communities-single-community-content {
        padding: 12px 20px;
    }
    .ppbbm-explore-communities-title-thumb-slider-single {
        font-size: 16px;
    }
    .swiper.ppbbm-explore-communities-wrapp-inner {
        max-height: 500px;
    }
    .ppbbm-explore-communities-slider-controls {
        max-height: 370px;
    }
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider {
        max-height: 340px;
    }
    .ppbbm-explore-communities-section-title .ppbbm-explore-communities-badge-img {
        max-width: 220px;
        max-height: 220px;
    }
}

@media all and (min-width: 768px) and (max-width: 991px) {
    .ppbbm-explore-communities-section-wrapp {
        padding: 0px 25px 0px 25px;
    }
    .ppbbm-explore-communities-section-wrapp:before {
        width: 100%;
        max-width: 100%;
        background-color: #fff;
    }
    .ppbbm-explore-communities-section-title .ppbbm-explore-communities-section-title-heading {
        font-size: 36px;
    }
    .ppbbm-explore-communities-section-title .ppbbm-explore-communities-section-title-sub-heading {
        font-size: 36px;
    }
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title,
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title a {
        font-size: 24px;
    }
    .ppbbm-explore-communities-single-community-content-tags li {
        font-size: 16px;
    }
    .ppbbm-explore-communities-single-community-content-tags li:not(:last-child) {
        margin-right: 15px;
    }
    .ppbbm-explore-communities-wrapp {
        padding-top: 100px;
    }
    .swiper.ppbbm-explore-communities-wrapp-inner {
        width: 100%;
    }
    .ppbbm-explore-communities-single-community-content {
        padding: 12px 20px;
    }
    .ppbbm-explore-communities-title-thumb-slider-single {
        font-size: 16px;
        justify-content: center;
        padding-bottom: 10px;
        text-align: center;
        border-left: 0px;
        width: auto !important;
        padding-left: 0;
    }
    .swiper.ppbbm-explore-communities-wrapp-inner {
        max-height: 100%;
    }
    .ppbbm-explore-communities-slider-controls {
        width: calc( 100% + 50px);
        top: 0;
        left: 0;
        max-width: calc( 100% + 50px);
        max-height: 70px;
        transform: translateY(0px);
        padding-left: 25px;
        padding-right: 25px;
        overflow: hidden;
        margin-left: -25px;
        margin-right: -25px;
    }
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider {
        max-height: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        position: absolute;
        top: 35px;
    }
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider:before,
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 15px;
        height: 100%;
        background-color: #ffffff;
        opacity: 0;
    }
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider:after {
        left: auto;
        right: 0;
    }
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider.showbefore:before,
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider.showafter:after {
        opacity: 1;
    }
    .ppbbm-explore-communities-slider-controls:before {
        left: 0;
        width: 100%;
        height: 1px;
        bottom: 10px;
        top: auto;
    }
    .ppbbm-explore-communities-single-community-content {
        min-height: 120px;
        position: static;
        background: #FEECF6;
    }
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title,
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title a,
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-tags {
        color: #1F2021;
    }
    .ppbbm-explore-communities-title-thumb-slider-single.swiper-slide-thumb-active {
        border-left: 0px solid #DC008B;
    }
    .ppbbm-explore-communities-title-thumb-slider-wrapper {
        overflow-x: scroll;
        transform: translate3d(0px, 0px, 0px) !important;
        padding-left: 15px;
    }
    .ppbbm-explore-communities-title-thumb-slider-single .ppbbm-explore-communities-title-thumb-slider-single-title {
        padding: 17px 15px;
        border-bottom: 12px solid transparent;
    }
    .ppbbm-explore-communities-title-thumb-slider-single.swiper-slide-thumb-active .ppbbm-explore-communities-title-thumb-slider-single-title {
        border-bottom: 12px solid #DC008B;
        margin-left: 0px;
    }
    .ppbbm-explore-communities-title-thumb-slider-wrapper .ppbbm-explore-communities-title-thumb-slider-single:last-of-type {
        margin-right: 30px;
    }
    .ppbbm-explore-communities-navigation {
        width: 100%;
        height: 100%;
        position: relative;
        transform: translateY(0);
        left: 0;
        right: 0;
        display: none;
    }
    .ppbbm-explore-communities-m-prev,
    .ppbbm-explore-communities-m-next {
        color: #DC008B;
        font-size: 25px;
    }
    .ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-m-prev,
    .ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-m-next {
        position: absolute;
        left: 0;
        top: -10px;
        transform: translateY(-50%);
        opacity: 0.9;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #FFFFFF 80%);
        width: 50px;
        height: 50px;
        line-height: 50px;
        z-index: 9;
        cursor: pointer;
        height: 100%;
    }
    .ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-m-next {
        left: auto;
        right: 0px;
        text-align: right;
        height: 100%;
    }
    .ppbbm-explore-communities-single-community-img {
        min-height: 400px;
    }
    .ppbbm-explore-communities-single-community-img img {
        max-height: 400px;
        min-height: 400px;
    }
    .ppbbm-explore-communities-section-title .ppbbm-explore-communities-badge-img,
    .ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-pagination,
    .ppbbm-explore-communities-navigation .ppbbm-explore-communities-prev,
    .ppbbm-explore-communities-navigation .ppbbm-explore-communities-next {
        display: none;
    }
    .ppbbm-explore-communities-navigation .ppbbm-explore-communities-prev,
    .ppbbm-explore-communities-navigation .ppbbm-explore-communities-next,
    .ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-m-prev,
    .ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-m-next {
        transform: rotate(0deg);
        position: absolute;
        top: 0px;
        left: 0px;
        background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #FFFFFF 80%);
        width: 40px;
        height: 50px;
        line-height: 50px;
        z-index: 9;
        cursor: pointer;
        height: 100%;
    }
    .ppbbm-explore-communities-navigation .ppbbm-explore-communities-next,
    .ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-m-next {
        bottom: auto;
        left: auto;
        right: 0px;
        text-align: right;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #FFFFFF 80%);
    }
    .ppbbm-explore-communities-prev.swiper-button-disabled,
    .ppbbm-explore-communities-next.swiper-button-disabled {
        visibility: hidden;
        opacity: 0;
    }
}

@media all and (max-width: 767px) {
    .ppbbm-explore-communities-section-wrapp {
        padding: 0px 0px 0px 0px;
    }
    .ppbbm-explore-communities-section-wrapp:before {
        width: 100%;
        max-width: 100%;
        background-color: #fff;
    }
    .ppbbm-explore-communities-section-title .ppbbm-explore-communities-section-title-heading {
        font-size: 36px;
    }
    .ppbbm-explore-communities-section-title .ppbbm-explore-communities-section-title-sub-heading {
        font-size: 42px;
    }
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title,
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title a {
        font-size: 28px;
    }
    .ppbbm-explore-communities-single-community-content-tags li {
        font-size: 18px;
    }
    .ppbbm-explore-communities-single-community-content-tags li:not(:last-child) {
        margin-right: 15px;
    }
    .ppbbm-explore-communities-wrapp {
        padding-top: 85px;
    }
    .swiper.ppbbm-explore-communities-wrapp-inner {
        width: 100%;
    }
    .ppbbm-explore-communities-single-community-content {
        padding: 12px 20px;
    }
    .ppbbm-explore-communities-title-thumb-slider-single {
        font-size: 20px;
        justify-content: center;
        padding-bottom: 10px;
        text-align: center;
        border-left: 0px;
        width: auto !important;
        padding-left: 0;
    }
    .swiper.ppbbm-explore-communities-wrapp-inner {
        max-height: 100%;
    }
    .ppbbm-explore-communities-slider-controls {
        width: 100%;
        top: 0;
        left: 0;
        max-width: 100%;
        max-height: 70px;
        transform: translateY(0px);
        padding-left: 25px;
        padding-right: 25px;
        overflow: hidden;
    }
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider {
        max-height: 100%;
        max-width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        position: absolute;
        top: 35px;
    }
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider:before,
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 15px;
        height: 100%;
        background-color: #ffffff;
        opacity: 0;
    }
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider:after {
        left: auto;
        right: 0;
    }
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider.showbefore:before,
    .ppbbm-explore-communities-wrapp .ppbbm-explore-communities-title-thumb-slider.showafter:after {
        opacity: 1;
    }
    .ppbbm-explore-communities-slider-controls:before {
        left: 0px;
        width: calc(100% - 0px);
        height: 1px;
        bottom: 5px;
        top: auto;
    }
    .ppbbm-explore-communities-single-community-content {
        min-height: 120px;
        position: static;
        background: #FEECF6;
        flex-direction: column;
        padding: 20px 25px 35px;
    }
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title,
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-title a,
    .ppbbm-explore-communities-single-community-content .ppbbm-explore-communities-single-community-content-tags {
        color: #1F2021;
    }
    .ppbbm-explore-communities-title-thumb-slider-single.swiper-slide-thumb-active {
        border-left: 0px solid #DC008B;
    }
    .ppbbm-explore-communities-title-thumb-slider-wrapper {
        overflow-x: scroll;
        transform: translate3d(0px, 0px, 0px) !important;
        padding-left: 15px;
    }
    .ppbbm-explore-communities-title-thumb-slider-wrapper .ppbbm-explore-communities-title-thumb-slider-single:last-of-type {
        margin-right: 30px;
    }
    .ppbbm-explore-communities-title-thumb-slider-single .ppbbm-explore-communities-title-thumb-slider-single-title {
        padding: 17px 15px;
        border-bottom: 12px solid transparent;
    }
    @supports (-webkit-touch-callout: none) {
        /* CSS specific to iOS devices */
        .ppbbm-explore-communities-title-thumb-slider-wrapper .ppbbm-explore-communities-title-thumb-slider-single:last-of-type .ppbbm-explore-communities-title-thumb-slider-single-title {
            margin-right: 25px !important;
        }
    }
    .ppbbm-explore-communities-title-thumb-slider-single.swiper-slide-thumb-active .ppbbm-explore-communities-title-thumb-slider-single-title {
        border-bottom: 12px solid #DC008B;
    }
    .ppbbm-explore-communities-section-title .ppbbm-explore-communities-badge-img,
    .ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-pagination {
        display: none;
    }
    .ppbbm-explore-communities-navigation {
        width: 100%;
        height: 100%;
        position: relative;
        transform: translateY(0);
        left: 0;
        right: 0;
        display: none;
    }
    .ppbbm-explore-communities-m-prev,
    .ppbbm-explore-communities-m-next {
        color: #DC008B;
        font-size: 25px;
    }
    .ppbbm-explore-communities-navigation .ppbbm-explore-communities-prev,
    .ppbbm-explore-communities-navigation .ppbbm-explore-communities-next {
        display: none;
    }
    .ppbbm-explore-communities-navigation .ppbbm-explore-communities-prev,
    .ppbbm-explore-communities-navigation .ppbbm-explore-communities-next,
    .ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-m-prev,
    .ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-m-next {
        position: absolute;
        left: 0px;
        top: 0px;
        transform: translateY(0%) rotate(0deg);
        opacity: 0.9;
        background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #FFFFFF 80%);
        width: 40px;
        height: 50px;
        line-height: 50px;
        z-index: 9;
        cursor: pointer;
        height: 100%;
    }
    .ppbbm-explore-communities-navigation .ppbbm-explore-communities-next,
    .ppbbm-explore-communities-slider-controls .ppbbm-explore-communities-m-next {
        left: auto;
        right: 0px;
        bottom: auto;
        text-align: right;
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #FFFFFF 80%);
        height: 100%;
    }
    .ppbbm-explore-communities-single-community-img {
        min-height: 220px;
    }
    .ppbbm-explore-communities-single-community-img img {
        max-height: 220px;
        min-height: 220px;
    }
    .ppbbm-explore-communities-single-community-content-right {
        justify-content: flex-start;
        margin-top: 30px;
    }
    .ppbbm-explore-communities-prev.swiper-button-disabled,
    .ppbbm-explore-communities-next.swiper-button-disabled {
        visibility: hidden;
        opacity: 0;
    }
}.fl-module-ppbbm-off-market-listings .listings-container {
	margin: 25px 0 0 0;
}

.fl-module-ppbbm-off-market-listings .listings-container .listing-card {
	padding: 0 25px;
	flex: 1 1 50%;
	max-width: 100%;
}

@media (min-width: 769px) {
	.fl-module-ppbbm-off-market-listings .listings-container {
		display: flex;
		flex-flow: row wrap;
		justify-content: space-evenly;
		max-width: 1300px;
		margin: auto;
		padding-top: 25px;
	}

	.fl-module-ppbbm-off-market-listings .listings-container .listing-card {
		flex: 0 0 100%;
	}
}

@media (min-width: 993px) {
	.fl-module-ppbbm-off-market-listings .listings-container .listing-card {
		max-width: 430px;
	}
}

.mfp-popup-open {
	#main {
		filter: blur(5px);
	}

	.mfp-bg {
		background: #012F48;
		mix-blend-mode: multiply;
		opacity: 0.9;
	}
}/*.ppbbm-gravity-form-section-wrapp img.gform_ajax_spinner {
	display: none !important;
}*/

.ui-datepicker {
	background-color: #fff;
	padding: 10px 20px;
	border-radius: 5px;
}

.ui-datepicker th, .ui-datepicker td {
	padding: 10px;
}

.ui-datepicker-title {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	margin-bottom: 10px;
}

.ui-datepicker td .ui-state-default, .ui-datepicker td .ui-state-default{
	color: #003b5c;
}

.ui-datepicker-header .ui-datepicker-prev.ui-corner-all, .ui-datepicker-header .ui-datepicker-next.ui-corner-all{
	color: #003b5c;
	cursor: pointer;
}

.ui-datepicker-header .ui-datepicker-next.ui-corner-all {
	margin-left: 20px;
}

.ppbbm-gravity-form-section-wrapp {
	padding: 80px 130px;
	background-color: #FFF2F8;
}

.ppbbm-gravity-form-section-wrapp .gform_title {
	color: #003B5C;
	font-size: 32px;
	font-weight: 300;
	line-height: 1.4;
	text-transform: lowercase;
	margin-bottom: 30px;
}

.ppbbm-gravity-form-section-wrapp form{
	padding: 0 20px;
}

.ppbbm-gravity-form-section-wrapp .gfield {
	margin-bottom: 20px;
}

.ppbbm-gravity-form-section-wrapp .gfield input[type="text"], .ppbbm-gravity-form-section-wrapp .gfield input[type="password"], .ppbbm-gravity-form-section-wrapp .gfield input[type="email"], .ppbbm-gravity-form-section-wrapp .gfield input[type="url"], .ppbbm-gravity-form-section-wrapp .gfield input[type="date"], .ppbbm-gravity-form-section-wrapp .gfield input[type="month"], .ppbbm-gravity-form-section-wrapp .gfield input[type="time"], .ppbbm-gravity-form-section-wrapp .gfield input[type="datetime"], .ppbbm-gravity-form-section-wrapp .gfield input[type="datetime-local"], .ppbbm-gravity-form-section-wrapp .gfield input[type="week"], .ppbbm-gravity-form-section-wrapp .gfield input[type="number"], .ppbbm-gravity-form-section-wrapp .gfield input[type="search"], .ppbbm-gravity-form-section-wrapp .gfield input[type="tel"], .ppbbm-gravity-form-section-wrapp .gfield input[type="color"], .ppbbm-gravity-form-section-wrapp .gfield select, .ppbbm-gravity-form-section-wrapp .gfield textarea {
	width: 100%;
	border-radius: 11px;
	border: 2px solid #ddd;
	background-color: #fff;
	color: #1F2021;
	padding: 7px 45px;
	height: auto;
}

.ppbbm-gravity-form-section-wrapp .gfield_label, .ppbbm-gravity-form-section-wrapp label {
	font-size: 12px;
	font-weight: 600;
	line-height: 1.75;
	margin-bottom: 10px;
}

.ppbbm-gravity-form-section-wrapp .gchoice label {
	color: #000000;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
}

.ppbbm-gravity-form-section-wrapp input[type="submit"] {
	display: block;
	text-align: center;
	padding: 6px 30px;
	color: #FFFDFC;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 600;
}

.ppbbm-gravity-form-section-wrapp .validation_error {
	background-color: transparent;
	border-radius: 8px;
	border: 2px solid #D40003;
}

.ppbbm-gravity-form-section-wrapp .gform_wrapper.gform_validation_error .gform_submission_error {
	color: #D40003;
	margin-bottom: 0;
}

@media all and (min-width: 1101px) and (max-width: 1440px) {
    
}

@media all and (min-width: 992px) and (max-width: 1100px) {
    
}

@media all and (min-width: 768px) and (max-width: 991px) {
    .ppbbm-gravity-form-section-wrapp {
		padding: 50px 60px;
		background-color: #FFF2F8;
	}
}

@media all and (max-width: 767px) {
    .ppbbm-gravity-form-section-wrapp {
		padding: 30px 25px;
	}
	.ppbbm-gravity-form-section-wrapp .gform_title {
		font-size: 28px;
	}
	.ppbbm-gravity-form-section-wrapp .gfield input[type="text"], .ppbbm-gravity-form-section-wrapp .gfield input[type="password"], .ppbbm-gravity-form-section-wrapp .gfield input[type="email"], .ppbbm-gravity-form-section-wrapp .gfield input[type="url"], .ppbbm-gravity-form-section-wrapp .gfield input[type="date"], .ppbbm-gravity-form-section-wrapp .gfield input[type="month"], .ppbbm-gravity-form-section-wrapp .gfield input[type="time"], .ppbbm-gravity-form-section-wrapp .gfield input[type="datetime"], .ppbbm-gravity-form-section-wrapp .gfield input[type="datetime-local"], .ppbbm-gravity-form-section-wrapp .gfield input[type="week"], .ppbbm-gravity-form-section-wrapp .gfield input[type="number"], .ppbbm-gravity-form-section-wrapp .gfield input[type="search"], .ppbbm-gravity-form-section-wrapp .gfield input[type="tel"], .ppbbm-gravity-form-section-wrapp .gfield input[type="color"], .ppbbm-gravity-form-section-wrapp .gfield select, .ppbbm-gravity-form-section-wrapp .gfield textarea{
		padding: 7px 25px 7px 15px;
	}
	.ppbbm-gravity-form-section-wrapp .gfield .gfield_checkbox li {
		display: flex;
		align-items: flex-start;
		margin-bottom: 15px;
	}
	.ppbbm-gravity-form-section-wrapp .gfield_checkbox input, .ppbbm-gravity-form-section-wrapp .gfield_radio input {
		margin-top: 5px;
	}
	.ppbbm-gravity-form-section-wrapp .gchoice label {
		margin: 0;
	}

	.ppbbm-gravity-form-section-wrapp input[type="submit"] {
		width: 100%;
	}
}.fl-node-w2l9ncfoipma .ppbbm-gravity-form-section-wrapp {
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	background-color: #e3f5ff;
}
 .fl-node-w2l9ncfoipma > .fl-module-content {
	margin-top:1%;
	margin-right:10%;
	margin-bottom:1%;
	margin-left:1%;
}
.fl-row .fl-col .fl-node-z1tcw69rml7p h1.fl-heading a,
.fl-row .fl-col .fl-node-z1tcw69rml7p h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-z1tcw69rml7p h1.fl-heading .fl-heading-text *,
.fl-node-z1tcw69rml7p h1.fl-heading .fl-heading-text {
	color: #003b5c;
}
.fl-node-z1tcw69rml7p.fl-module-heading .fl-heading {
	text-align: left;
}
 .fl-node-z1tcw69rml7p > .fl-module-content {
	margin-top:20%;
	margin-right:20%;
	margin-bottom:1%;
	margin-left:10%;
}
.fl-node-26dkoesh98tp .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #fef1ec;
	max-width: 100%;
	margin: auto;
}

			.fl-node-2qlr46fs0abg .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #fef1ec;
	max-width: 100%;
	margin: auto;
}

			.fl-node-dls7x50t4ipq .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #fef1ec;
	max-width: 100%;
	margin: auto;
}

			.fl-node-ux9i813mwnhp .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #fef1ec;
	max-width: 100%;
	margin: auto;
}

			.fl-node-gefy5w7uq9zx .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #fef1ec;
	max-width: 100%;
	margin: auto;
}

			.fl-node-w5ec8uy4itng .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #fef1ec;
	max-width: 100%;
	margin: auto;
}

			.ppbbm-cta-with-bg-wrapper {
    position: relative;
    padding-top: 125px;
    padding-bottom: 140px;
}

.ppbbm-cta-with-bg-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
}

.ppbbm-cta-with-bg-bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 32, 33, 0.4);
}

.ppbbm-cta-with-bg-content-wrapper {
    position: relative;
    margin: 0 auto;
    text-align: center;
    padding: 0 35px;
    z-index: 1;
}

.ppbbm-cta-with-bg-content-wrapper .ppbbm-cta-with-bg-heading {
    font-weight: 300;
    text-align: center;
    color: #FFFDFC;
    font-size: 48px;
    line-height: 1.4;
    text-transform: lowercase;
    margin-bottom: 0;
}

.ppbbm-cta-with-bg-content-wrapper .ppbbm-cta-with-bg-intro-text {
    color: #FFFDFC;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 45px;
    margin-top: 25px;
    text-align: left;
}

.ppbbm-cta-with-bg-content-wrapper .ppbbm-cta-with-bg-intro-text p:last-child {
    margin-bottom: 0;
}

.ppbbm-cta-with-bg-content-wrapper .button {
    display: inline-block;
    text-decoration: none;
}

@media all and (min-width: 992px) and (max-width: 1100px) {}

@media all and (min-width: 768px) and (max-width: 991px) {}

@media all and (max-width: 767px) {
    .ppbbm-cta-with-bg-wrapper {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    .ppbbm-cta-with-bg-content-wrapper .ppbbm-cta-with-bg-intro-text {
        margin-bottom: 70px;
    }
}
.ppbbm-cta-with-bg-content-wrapper {
	max-width: 1160px;
}
.ppbbm-relocation-services-wrapper {
    position: relative;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ppbbm-relocation-services-content-left {
    max-width: 760px;
    padding-left: 135px;
    padding-right: 70px;
    width: 100%;
}

.ppbbm-relocation-services-content-right {
    display: block;
    padding-right: 100px;
    width: 100%;
}

.ppbbm-relocation-services-content-right .ppbbm-relocation-services-single-box {
    display: inline-flex;
    width: 45%;
    max-width: 270px;
    margin-left: 25px;
}

.ppbbm-relocation-services-content-left .ppbbm-relocation-services-heading {
    font-weight: 300;
    color: #003B5C;
    font-size: 48px;
    line-height: 1.4;
    text-transform: lowercase;
    margin-bottom: 0;
}

.ppbbm-relocation-services-content-left .ppbbm-relocation-services-description-text {
    color: #000000;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 25px;
    margin-top: 5px;
    text-align: left;
}

.ppbbm-relocation-services-content-left .ppbbm-relocation-services-description-text p {
    color: #000000;
}

.ppbbm-relocation-services-content-left .ppbbm-relocation-services-description-text p:last-child {
    margin-bottom: 0;
}

.ppbbm-relocation-services-single-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ppbbm-relocation-services-single-box:not(:last-child) {
    margin-bottom: 30px;
}

.ppbbm-relocation-services-single-box-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #1F2021;
}

.ppbbm-relocation-services-single-box-icon {
    font-size: 38px;
    line-height: 1.2;
    color: #003B5C;
}

@media all and (min-width: 1101px) and (max-width: 1440px) {
    .ppbbm-relocation-services-content-left {
        padding-left: 50px;
    }
    .ppbbm-relocation-services-content-right {
        padding-right: 50px;
    }
    .ppbbm-relocation-services-content-right .ppbbm-relocation-services-single-box {
        width: 44%;
        margin-left: 15px;
    }
}

@media all and (min-width: 992px) and (max-width: 1100px) {
    .ppbbm-relocation-services-content-left {
        padding-left: 35px;
        padding-right: 35px;
    }
    .ppbbm-relocation-services-content-right {
        padding-right: 35px;
    }
    .ppbbm-relocation-services-content-right .ppbbm-relocation-services-single-box {
        margin-left: 15px;
        width: 44%;
    }
}

@media all and (min-width: 768px) and (max-width: 991px) {
    .ppbbm-relocation-services-wrapper {
        flex-direction: column;
    }
    .ppbbm-relocation-services-content-left {
        max-width: 600px;
        padding-left: 0;
        padding-right: 0;
        margin: auto auto 50px;
    }
    .ppbbm-relocation-services-content-left .ppbbm-relocation-services-heading {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .ppbbm-relocation-services-content-left .ppbbm-relocation-services-description-text {
        font-size: 18px;
    }
    .ppbbm-relocation-services-content-right {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    .ppbbm-relocation-services-content-right .ppbbm-relocation-services-single-box {
        margin-left: 15px;
        margin-right: 15px;
        max-width: 44%;
    }
}

@media all and (max-width: 767px) {
    .ppbbm-relocation-services-wrapper {
        flex-direction: column;
    }
    .ppbbm-relocation-services-content-left {
        margin-bottom: 50px;
        padding-left: 25px;
        padding-right: 25px;
    }
    .ppbbm-relocation-services-content-right {
        padding-right: 0;
    }
    .ppbbm-relocation-services-content-left .ppbbm-relocation-services-heading {
        font-size: 36px;
        margin-bottom: 15px;
    }
    .ppbbm-relocation-services-content-left .ppbbm-relocation-services-description-text {
        font-size: 18px;
    }
    .ppbbm-relocation-services-single-box {
        padding: 0 10px;
        max-width: 42%;
        gap: 0;
    }
    .ppbbm-relocation-services-single-box-content {
        padding-left: 10px;
    }
    .ppbbm-relocation-services-content-right .ppbbm-relocation-services-single-box {
        margin-left: 15px;
    }
}

@media all and (max-width: 570px) {
    .ppbbm-relocation-services-content-right .ppbbm-relocation-services-single-box {
        margin-left: 0;
        width: 100%;
    }
    .ppbbm-relocation-services-single-box {
        padding: 0;
    }
    .ppbbm-relocation-services-content-right {
        padding-right: 25px;
        padding-left: 25px;
    }
} .fl-node-s63hrify48z0 > .fl-module-content {
	margin-top:5%;
	margin-right:0%;
	margin-bottom:0%;
	margin-left:0%;
}
	.fl-builder-content .fl-node-b7gh2pmu3lrw .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-b7gh2pmu3lrw .fl-module-content .fl-rich-text * {
		color: #003b5c;
	}
	 .fl-node-b7gh2pmu3lrw > .fl-module-content {
	margin-top:1%;
	margin-right:10%;
	margin-bottom:1%;
	margin-left:10%;
}
 .fl-node-wg074bftjih1 > .fl-module-content {
	margin-top:1%;
	margin-right:20%;
	margin-bottom:1%;
	margin-left:10%;
}














.fl-node-prv2zgnhyiu4.fl-button-wrap, .fl-node-prv2zgnhyiu4 .fl-button-wrap {
	text-align: center;
}
 .fl-node-prv2zgnhyiu4 > .fl-module-content {
	margin-top:0%;
	margin-right:0%;
	margin-bottom:4%;
	margin-left:3%;
}
.fl-node-kvahjpciseuf.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-kvahjpciseuf > .fl-module-content {
	margin-top:1%;
	margin-right:0%;
	margin-bottom:1%;
	margin-left:1%;
}
.fl-row .fl-col .fl-node-gbz51c3dhu6s h1.fl-heading a,
.fl-row .fl-col .fl-node-gbz51c3dhu6s h1.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-gbz51c3dhu6s h1.fl-heading .fl-heading-text *,
.fl-node-gbz51c3dhu6s h1.fl-heading .fl-heading-text {
	color: #024e79;
}
.fl-node-gbz51c3dhu6s.fl-module-heading .fl-heading {
	text-align: center;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */


                                
        
                                
        
                                
        
                                
        
        .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;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        
        
        
        