/**
 * 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;
}
.fl-col-content {
	/**
	 * This rule was added to prevent margin collapsing for
	 * modules without wrappers to ensure consistency with
	 * how margins have always worked in the builder.
	 */
	display: flex;
	flex-direction: column;
}

/* 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;
}
.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;
}
@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: 1400px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 15px;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-left: 15px;
}
:root {
	--fl-global-text-color: #000000;
	--fl-global-text-font-size: 16px;
	--fl-global-text-line-height: 2;
	--fl-global-text-font-size-large: 14px;
	--fl-global-text-line-height-large: 1.8;
	--fl-global-h1-color: #000000;
	--fl-global-h1-line-height: 1.8;
	--fl-global-h1-line-height-responsive: 1.6;
	--fl-global-h2-color: #000000;
	--fl-global-h2-line-height: 1.8;
	--fl-global-h2-line-height-responsive: 1.6;
	--fl-global-h3-color: #000000;
	--fl-global-h3-line-height: 1.8;
	--fl-global-h3-line-height-responsive: 1.6;
	--fl-global-h4-color: #000000;
	--fl-global-h4-line-height: 1.8;
	--fl-global-h4-line-height-responsive: 1.6;
	--fl-global-h5-color: #000000;
	--fl-global-h5-line-height: 1.8;
	--fl-global-h5-line-height-responsive: 1.6;
	--fl-global-h6-color: #000000;
	--fl-global-h6-line-height: 1.8;
	--fl-global-h6-line-height-responsive: 1.6;
	--fl-global-link-color: #007ae5;
	--fl-global-link-hover-color: #00bbf4;
	--fl-global-button-color: #ffffff;
	--fl-global-button-hover-color: #ffffff;
	--fl-global-button-background: #007ae5;
	--fl-global-button-hover-background: #004ea8;
	--fl-global-button-border-style: none;
	--fl-global-button-background-clip: border-box;
	--fl-global-button-border-top-left-radius: 50px;
	--fl-global-button-border-top-right-radius: 50px;
	--fl-global-button-border-bottom-left-radius: 50px;
	--fl-global-button-border-bottom-right-radius: 50px;
}
.fl-builder-content:not(.fl-builder-empty) {
	color: #000000;
	font-size: 16px;
	line-height: 2;
}
.fl-builder-content h1, .fl-builder-content h1 a, .fl-builder-content h1 span {
	color: #000000;
}
.fl-builder-content h1 {
	line-height: 1.8;
}
.fl-builder-content h2, .fl-builder-content h2 a, .fl-builder-content h2 span {
	color: #000000;
}
.fl-builder-content h2 {
	line-height: 1.8;
}
.fl-builder-content h3, .fl-builder-content h3 a, .fl-builder-content h3 span {
	color: #000000;
}
.fl-builder-content h3 {
	line-height: 1.8;
}
.fl-builder-content h4, .fl-builder-content h4 a, .fl-builder-content h4 span {
	color: #000000;
}
.fl-builder-content h4 {
	line-height: 1.8;
}
.fl-builder-content h5, .fl-builder-content h5 a, .fl-builder-content h5 span {
	color: #000000;
}
.fl-builder-content h5 {
	line-height: 1.8;
}
.fl-builder-content h6, .fl-builder-content h6 a, .fl-builder-content h6 span {
	color: #000000;
}
.fl-builder-content h6 {
	line-height: 1.8;
}
.fl-builder-content a:not(.fl-builder-submenu-link) {
	color: #007ae5;
}
.fl-builder-content a:not(.fl-builder-submenu-link):hover {
	color: #00bbf4;
}
.fl-builder-content button:not(.fl-menu-mobile-toggle), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content a.fl-button, .fl-builder-content button:not(.fl-menu-mobile-toggle) *, .fl-builder-content input[type=button] *, .fl-builder-content input[type=submit] *, .fl-builder-content a.fl-button *, .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-builder-content button:visited *, .fl-builder-content input[type=button]:visited *, .fl-builder-content input[type=submit]:visited *, .fl-builder-content a.fl-button:visited *, .fl-page .fl-builder-content button:not(.fl-menu-mobile-toggle), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content a.fl-button, .fl-page .fl-builder-content button:not(.fl-menu-mobile-toggle) *, .fl-page .fl-builder-content input[type=button] *, .fl-page .fl-builder-content input[type=submit] *, .fl-page .fl-builder-content a.fl-button *, .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content button:visited *, .fl-page .fl-builder-content input[type=button]:visited *, .fl-page .fl-builder-content input[type=submit]:visited *, .fl-page .fl-builder-content a.fl-button:visited * {
	color: #ffffff;
}
.fl-builder-content button:not(.fl-menu-mobile-toggle):hover, .fl-builder-content input[type=button]:hover, .fl-builder-content input[type=submit]:hover, .fl-builder-content a.fl-button:hover, .fl-builder-content button:not(.fl-menu-mobile-toggle):hover *, .fl-builder-content input[type=button]:hover *, .fl-builder-content input[type=submit]:hover *, .fl-builder-content a.fl-button:hover *, .fl-page .fl-builder-content button:not(.fl-menu-mobile-toggle):hover, .fl-page .fl-builder-content input[type=button]:hover, .fl-page .fl-builder-content input[type=submit]:hover, .fl-page .fl-builder-content a.fl-button:hover, .fl-page .fl-builder-content button:not(.fl-menu-mobile-toggle):hover *, .fl-page .fl-builder-content input[type=button]:hover *, .fl-page .fl-builder-content input[type=submit]:hover *, .fl-page .fl-builder-content a.fl-button:hover * {
	color: #ffffff;
}
.fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-menu-mobile-toggle), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content a.fl-button, .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-menu-mobile-toggle), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content a.fl-button, .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
	background-color: #007ae5;
}
.fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-menu-mobile-toggle):hover, .fl-builder-content input[type=button]:hover, .fl-builder-content input[type=submit]:hover, .fl-builder-content a.fl-button:hover, .fl-page .fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-menu-mobile-toggle):hover, .fl-page .fl-builder-content input[type=button]:hover, .fl-page .fl-builder-content input[type=submit]:hover, .fl-page .fl-builder-content a.fl-button:hover {
	background-color: #004ea8;
}
.fl-builder-content button:not(.fl-menu-mobile-toggle), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content a.fl-button, .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content button:not(.fl-menu-mobile-toggle), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content a.fl-button, .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
}
@media(max-width: 1200px) {
	.fl-builder-content:not(.fl-builder-empty) {
		font-size: 14px;
		line-height: 1.8;
	}
}
@media(max-width: 768px) {
	.fl-builder-content h1 {
		line-height: 1.6;
	}
	.fl-builder-content h2 {
		line-height: 1.6;
	}
	.fl-builder-content h3 {
		line-height: 1.6;
	}
	.fl-builder-content h4 {
		line-height: 1.6;
	}
	.fl-builder-content h5 {
		line-height: 1.6;
	}
	.fl-builder-content h6 {
		line-height: 1.6;
	}
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }




 .fl-node-3j58ul9zt2kc > .fl-row-content-wrap {
	margin-top:120px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-3j58ul9zt2kc.fl-row > .fl-row-content-wrap {
	margin-top:100px;
}
}





@media ( max-width: 768px ) {
 .fl-node-jyzckqn8uw79.fl-row > .fl-row-content-wrap {
	padding-right:15px;
	padding-left:15px;
}
}









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




.fl-node-y21klumhf7rx {
	width: 66%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-y21klumhf7rx {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-y21klumhf7rx > .fl-col-content {
	margin-right:60px;
}
@media ( max-width: 992px ) {
 .fl-node-y21klumhf7rx.fl-col > .fl-col-content {
	margin-right:0px;
}
}




.fl-node-kjw6yxtdh391 {
	width: 100%;
}
.fl-node-kjw6yxtdh391 > .fl-col-content {
	background-image: linear-gradient(90deg, #1b7cc6 0%, #3eb2d9 100%);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-kjw6yxtdh391 > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-kjw6yxtdh391.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
 .fl-node-kjw6yxtdh391 > .fl-col-content {
	padding-top:30px;
	padding-right:30px;
	padding-bottom:30px;
	padding-left:30px;
}
@media ( max-width: 768px ) {
 .fl-node-kjw6yxtdh391.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-kmb13r4ansey {
	width: 100%;
}
.fl-node-kmb13r4ansey > .fl-col-content {
	background-color: rgb(247, 247, 247);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-kmb13r4ansey > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
 .fl-node-kmb13r4ansey > .fl-col-content {
	padding-top:60px;
	padding-right:60px;
	padding-bottom:60px;
	padding-left:60px;
}




.fl-node-39t6h7qlojd2 {
	width: 50%;
}




.fl-node-1n8exjmcpdou {
	width: 50%;
}




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




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




.fl-node-dya1owtpv4ek {
	width: 100%;
}
.fl-node-dya1owtpv4ek > .fl-col-content {
	background-color: rgb(247, 247, 247);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-dya1owtpv4ek > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
 .fl-node-dya1owtpv4ek > .fl-col-content {
	padding-top:15px;
	padding-right:15px;
	padding-bottom:15px;
	padding-left:15px;
}




.fl-node-2uidoaebrz17 {
	width: 100%;
}
 .fl-node-2uidoaebrz17 > .fl-col-content {
	margin-bottom:15px;
}
@media ( max-width: 768px ) {
 .fl-node-2uidoaebrz17.fl-col > .fl-col-content {
	margin-bottom:30px;
}
}




.fl-node-ta6psi83v7m5 {
	width: 100%;
}
.fl-node-ta6psi83v7m5 > .fl-col-content {
	background-color: rgba(0, 187, 255, 0.12);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-ta6psi83v7m5 > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:0px;
	margin-left:15px;
}
@media ( max-width: 992px ) {
 .fl-node-ta6psi83v7m5.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ta6psi83v7m5.fl-col > .fl-col-content {
	margin-bottom:10px;
}
}
 .fl-node-ta6psi83v7m5 > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-7sridz0lp94m {
	width: 100%;
}
.fl-node-7sridz0lp94m > .fl-col-content {
	background-color: rgba(0, 187, 255, 0.12);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-7sridz0lp94m > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:0px;
	margin-left:15px;
}
@media ( max-width: 992px ) {
 .fl-node-7sridz0lp94m.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-7sridz0lp94m.fl-col > .fl-col-content {
	margin-bottom:10px;
}
}
 .fl-node-7sridz0lp94m > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-ye7i8ou4vbmg {
	width: 100%;
}
.fl-node-ye7i8ou4vbmg > .fl-col-content {
	background-color: rgba(0, 187, 255, 0.12);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-ye7i8ou4vbmg > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:0px;
	margin-left:15px;
}
@media ( max-width: 992px ) {
 .fl-node-ye7i8ou4vbmg.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ye7i8ou4vbmg.fl-col > .fl-col-content {
	margin-bottom:10px;
}
}
 .fl-node-ye7i8ou4vbmg > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-dval2c8mxy79 {
	width: 100%;
}
.fl-node-dval2c8mxy79 > .fl-col-content {
	background-color: rgba(0, 187, 255, 0.12);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-dval2c8mxy79 > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:0px;
	margin-left:15px;
}
@media ( max-width: 992px ) {
 .fl-node-dval2c8mxy79.fl-col > .fl-col-content {
	margin-bottom:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-dval2c8mxy79.fl-col > .fl-col-content {
	margin-bottom:10px;
}
}
 .fl-node-dval2c8mxy79 > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




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




.fl-node-1uj5dflp0ik6 {
	width: 100%;
}
.fl-node-1uj5dflp0ik6 > .fl-col-content {
	background-color: rgba(255, 0, 0, 0.05);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-1uj5dflp0ik6 > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}




.fl-node-nurye5z0qhic {
	width: 100%;
}
.fl-node-nurye5z0qhic > .fl-col-content {
	background-color: rgba(255, 0, 0, 0.05);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
 .fl-node-nurye5z0qhic > .fl-col-content {
	margin-top:15px;
	margin-right:15px;
	margin-bottom:15px;
	margin-left:15px;
}
@media ( max-width: 768px ) {
 .fl-node-nurye5z0qhic.fl-col > .fl-col-content {
	margin-bottom:30px;
}
}




.fl-node-txae5ijys2hk {
	width: 100%;
}
 .fl-node-txae5ijys2hk > .fl-col-content {
	padding-top:30px;
	padding-bottom:30px;
}




.fl-node-l05bme9uojvy {
	width: 23.13%;
}




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




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




.fl-node-0jgs58oqri9v {
	width: 50%;
}




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




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




.fl-node-pbvadtmjnsyo {
	width: 76.87%;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-nlky701bmftq.fl-module-heading, .fl-node-nlky701bmftq.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-nlky701bmftq.fl-module-heading, .fl-node-nlky701bmftq.fl-module-heading :where(a, q, p, span) {
		font-size: 20px;
	}
}
 .fl-node-nlky701bmftq.fl-module-heading {
	margin-bottom:0px;
}
img.mfp-img {
    padding-bottom: 40px !important;
}

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

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

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-jvaop1f08lse, .fl-node-jvaop1f08lse .fl-photo {
	text-align: center;
}
.fl-node-rpqmhfsn9tux, .fl-node-rpqmhfsn9tux .fl-photo {
	text-align: center;
}
.fl-node-rpqmhfsn9tux .fl-photo-content, .fl-node-rpqmhfsn9tux .fl-photo-img {
	width: 450px;
}
.fl-node-g78ezylxts4u, .fl-node-g78ezylxts4u .fl-photo {
	text-align: center;
}
.fl-node-g78ezylxts4u .fl-photo-img {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
@media ( max-width: 768px ) {
 .fl-node-g78ezylxts4u.fl-module-photo.fl-module {
	margin-bottom:0px;
}
}
.fl-node-mzuskg720c91, .fl-node-mzuskg720c91 .fl-photo {
	text-align: center;
}
.fl-node-mzuskg720c91 .fl-photo-img {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
@media ( max-width: 768px ) {
 .fl-node-mzuskg720c91.fl-module-photo.fl-module {
	margin-bottom:0px;
}
}
.fl-node-rxwk1a40cjuf, .fl-node-rxwk1a40cjuf .fl-photo {
	text-align: center;
}
.fl-node-rxwk1a40cjuf .fl-photo-img {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
@media ( max-width: 768px ) {
 .fl-node-rxwk1a40cjuf.fl-module-photo.fl-module {
	margin-bottom:0px;
}
}
.fl-node-lazok2yuw6eg, .fl-node-lazok2yuw6eg .fl-photo {
	text-align: center;
}
.fl-node-lazok2yuw6eg .fl-photo-img {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
@media ( max-width: 768px ) {
 .fl-node-lazok2yuw6eg.fl-module-photo.fl-module {
	margin-bottom:0px;
}
}
.fl-node-80mqja76uf5p, .fl-node-80mqja76uf5p .fl-photo {
	text-align: center;
}
.fl-node-80mqja76uf5p .fl-photo-img {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
@media ( max-width: 768px ) {
 .fl-node-80mqja76uf5p.fl-module-photo.fl-module {
	margin-bottom:0px;
}
}
.fl-node-9kpmswld6f23, .fl-node-9kpmswld6f23 .fl-photo {
	text-align: center;
}
.fl-node-9kpmswld6f23 .fl-photo-img {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
@media ( max-width: 768px ) {
 .fl-node-9kpmswld6f23.fl-module-photo.fl-module {
	margin-bottom:0px;
}
}
.fl-node-eazoqu2hxnbc, .fl-node-eazoqu2hxnbc .fl-photo {
	text-align: center;
}
.fl-node-eazoqu2hxnbc .fl-photo-img {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
@media ( max-width: 768px ) {
 .fl-node-eazoqu2hxnbc.fl-module-photo.fl-module {
	margin-bottom:0px;
}
}
.fl-node-t5mvnz7cuyq8.fl-module-heading, .fl-node-t5mvnz7cuyq8.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 18px;
}
 .fl-node-t5mvnz7cuyq8.fl-module-heading {
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-0pb218j3cdev.fl-module-html.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
.fl-builder-content .fl-node-pa2wg7u1ylke.fl-rich-text, .fl-builder-content .fl-node-pa2wg7u1ylke.fl-rich-text *:not(b, strong) {
	font-size: 16px;
	line-height: 1.6;
}
@media ( max-width: 768px ) {
 .fl-node-pirzm4bg2uyx.fl-module-html.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-node-8w6yhxc5m1ek.fl-module-heading, .fl-node-8w6yhxc5m1ek.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2;
}
 .fl-node-8w6yhxc5m1ek.fl-module-heading {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-yvng3uar10i9.fl-rich-text, .fl-builder-content .fl-node-yvng3uar10i9.fl-rich-text *:not(b, strong) {
	font-size: 14px;
}
 .fl-node-yvng3uar10i9.fl-module-rich-text {
	margin-top:5px;
	margin-bottom:5px;
}












.fl-builder-content .fl-node-ojhcnmi01zyr .fl-button,
.fl-builder-content .fl-node-ojhcnmi01zyr .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-node-ojhcnmi01zyr.fl-button-wrap, .fl-node-ojhcnmi01zyr .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:hover, .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:focus, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:hover, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:focus {
	border: 1px solid #002780;
}
.fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button, .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:visited, .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:hover, .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:focus, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:visited, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:hover, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button, .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:visited, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:visited {
	background-color: #007ae5;
}
.fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:hover, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:hover, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:hover {
	background-color: #00338c;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button, .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:visited, .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:hover, .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:focus, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:visited, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:hover, .fl-page .fl-builder-content .fl-node-ojhcnmi01zyr a.fl-button:focus {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
}
 .fl-node-ojhcnmi01zyr.fl-module-button {
	margin-top:0px;
}
.fl-node-ywf5lpzosn9g.fl-module-heading, .fl-node-ywf5lpzosn9g.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2;
}
 .fl-node-ywf5lpzosn9g.fl-module-heading {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-lk1en67m8qtd.fl-rich-text, .fl-builder-content .fl-node-lk1en67m8qtd.fl-rich-text *:not(b, strong) {
	font-size: 14px;
}
 .fl-node-lk1en67m8qtd.fl-module-rich-text {
	margin-top:5px;
	margin-bottom:5px;
}












.fl-builder-content .fl-node-oeifma1v9wyn .fl-button,
.fl-builder-content .fl-node-oeifma1v9wyn .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-node-oeifma1v9wyn.fl-button-wrap, .fl-node-oeifma1v9wyn .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:hover, .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:focus, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:hover, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:focus {
	border: 1px solid #002780;
}
.fl-builder-content .fl-node-oeifma1v9wyn a.fl-button, .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:visited, .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:hover, .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:focus, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:visited, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:hover, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.fl-builder-content .fl-node-oeifma1v9wyn a.fl-button, .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:visited, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:visited {
	background-color: #007ae5;
}
.fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:hover, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:hover, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:hover {
	background-color: #00338c;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-oeifma1v9wyn a.fl-button, .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:visited, .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:hover, .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:focus, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:visited, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:hover, .fl-page .fl-builder-content .fl-node-oeifma1v9wyn a.fl-button:focus {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
}
 .fl-node-oeifma1v9wyn.fl-module-button {
	margin-top:0px;
}
.fl-node-1j62t4lmzprg.fl-module-heading, .fl-node-1j62t4lmzprg.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2;
}
 .fl-node-1j62t4lmzprg.fl-module-heading {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-83ndlygwvrtx.fl-rich-text, .fl-builder-content .fl-node-83ndlygwvrtx.fl-rich-text *:not(b, strong) {
	font-size: 14px;
}
 .fl-node-83ndlygwvrtx.fl-module-rich-text {
	margin-top:5px;
	margin-bottom:5px;
}












.fl-builder-content .fl-node-fdrp53kj6xw1 .fl-button,
.fl-builder-content .fl-node-fdrp53kj6xw1 .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-node-fdrp53kj6xw1.fl-button-wrap, .fl-node-fdrp53kj6xw1 .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:hover, .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:focus {
	border: 1px solid #002780;
}
.fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button, .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:visited, .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:hover, .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button, .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:visited {
	background-color: #007ae5;
}
.fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:hover {
	background-color: #00338c;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button, .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:visited, .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:hover, .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-fdrp53kj6xw1 a.fl-button:focus {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
}
 .fl-node-fdrp53kj6xw1.fl-module-button {
	margin-top:0px;
}
.fl-node-5seumbj6kg7w.fl-module-heading, .fl-node-5seumbj6kg7w.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 1.2;
}
 .fl-node-5seumbj6kg7w.fl-module-heading {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-3gd617s2jtqv.fl-rich-text, .fl-builder-content .fl-node-3gd617s2jtqv.fl-rich-text *:not(b, strong) {
	font-size: 14px;
}
 .fl-node-3gd617s2jtqv.fl-module-rich-text {
	margin-top:5px;
	margin-bottom:5px;
}












.fl-builder-content .fl-node-ea518oqd2nts .fl-button,
.fl-builder-content .fl-node-ea518oqd2nts .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-node-ea518oqd2nts.fl-button-wrap, .fl-node-ea518oqd2nts .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-ea518oqd2nts a.fl-button:hover, .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:focus, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:hover, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:focus {
	border: 1px solid #002780;
}
.fl-builder-content .fl-node-ea518oqd2nts a.fl-button, .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:visited, .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:hover, .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:focus, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:visited, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:hover, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.fl-builder-content .fl-node-ea518oqd2nts a.fl-button, .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:visited, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:visited {
	background-color: #007ae5;
}
.fl-builder-content .fl-node-ea518oqd2nts a.fl-button:hover, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:hover, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:hover {
	background-color: #00338c;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ea518oqd2nts a.fl-button, .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:visited, .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:hover, .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:focus, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:visited, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:hover, .fl-page .fl-builder-content .fl-node-ea518oqd2nts a.fl-button:focus {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
}
 .fl-node-ea518oqd2nts.fl-module-button {
	margin-top:0px;
}
.pp-modal-wrap {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    z-index: -1;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.pp-modal-wrap.pp-modal-active {
	z-index: 99999;
	visibility: visible;
	opacity: 1;
}
.pp-modal-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
}
.pp-modal-button .sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
}

.pp-modal {
    display: block;
    position: relative;
    margin: auto auto;
    opacity: 1;
	outline: 0;
}
.pp-modal-container {
    height: 100%;
    width: 100%;
    position: fixed;
    overflow: auto;
    opacity: 0;
	z-index: 1;
}
.pp-modal.layout-fullscreen {
    max-width: 100%;
    height: auto;
    min-height: 100%;
    margin: 0;
}
/* .pp-modal.layout-standard:not(.position-auto) {
	top: 50%;
	transform: translateY(-50%);
} */
.pp-modal .pp-modal-content {
	height: inherit;
	overflow-y: auto;
	position: relative;
    z-index: 1;
    -webkit-overflow-scrolling: touch;
}
/* .pp-modal.layout-standard .pp-modal-content {
	max-height: 90vh;
} */
.pp-modal .pp-modal-body {
    overflow: hidden;
	height: inherit;
}
.pp-modal .pp-modal-header {
    display: table;
    width: 100%;
}
.pp-modal .pp-modal-title {
    margin: 0;
    display: table-cell;
    vertical-align: middle;
}

.pp-modal .pp-modal-frame iframe {
	width: 100%;
}

.pp-modal .pp-modal-video-embed {
	position: relative;
	padding-top: 56.25%;
	height: inherit;
}
.pp-modal .pp-modal-video-embed iframe,
.pp-modal .pp-modal-video-embed .wp-video,
.pp-modal .pp-modal-video-embed > video {
	height: 100%;
	width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.pp-modal .pp-modal-content.pp-modal-frame:before {
	background-position: 50%;
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3D(-50%, -50%, 0);
}

.pp-modal .pp-modal-content-inner {
	position: relative;
    height: 100%;
}

.pp-modal-trigger {
    display: inline-block;
    text-decoration: none;
    text-shadow: none;
}
.pp-modal-trigger .pp-button-icon {
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
    width: auto;
}
.pp-modal-trigger .pp-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.pp-modal-trigger .pp-modal-trigger-text {
    vertical-align: middle;
}
.pp-modal-close {
    position: relative;
    right: 10px;
    line-height: 0;
    cursor: pointer;
    display: table-cell;
    vertical-align: middle;
    top: 0;
    padding: 5px;
	-webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.pp-modal-close.box-top-right-out {
    position: absolute;
    right: -40px;
}
.pp-modal .pp-modal-close.box-top-left-out {
    position: absolute;
    left: -40px;
    right: 0;
}
.pp-modal-close.win-top-right {
    position: fixed;
}
.pp-modal-close.win-top-left {
    position: fixed;
    right: 0;
}
.pp-modal-close .bar-wrap {
    display: inline-block;
    position: relative;
}
.pp-modal-close .bar-wrap span {
    position: absolute;
    border-radius: 0;
    width: 100%;
    top: 49.5%;
    left: 0px;
}
.pp-modal-close .bar-wrap .bar-1 {
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
}
.pp-modal-close .bar-wrap .bar-2 {
    -webkit-transform: rotate(-225deg);
    -moz-transform: rotate(-225deg);
    transform: rotate(-225deg);
}
.pp-modal-wrap .modal-visible {
    opacity: 1;
}
.pp-modal .pp-modal-content .fl-row-content-wrap,
.pp-modal .pp-modal-content .fl-builder-module-template {
    padding: 0;
}
.fl-module-pp-modal-box {
    z-index: 2 !important;
}

.pp-modal-wrap .pp-flexbox {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.pp-modal-wrap .pp-flexbox.layout-vertical {
	flex-direction: column;
}
.pp-modal-wrap .pp-flexbox .pp-flexbox-item {
	align-self: stretch;
}
.pp-modal-wrap .pp-flexbox .pp-flexbox-item.object-fit-cover img {
	height: 100%;
	object-fit: cover;
}

@media only screen and (max-width: 768px) {
	.pp-modal-wrap .pp-flexbox {
		flex-direction: column;
	}
	.pp-modal-wrap .pp-flexbox .pp-flexbox-item {
		width: 100%;
	}
}@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }body:not(.fl-builder-edit) .fl-node-qpjdsemo75rn > .fl-module-content {
	margin: 0;
}

.fl-node-qpjdsemo75rn .pp-modal-button {
	text-align: left;
}
.fl-node-qpjdsemo75rn .pp-modal-trigger,
.fl-node-qpjdsemo75rn .pp-modal-button .pp-modal-trigger,
.fl-node-qpjdsemo75rn .pp-modal-button .pp-modal-trigger .pp-modal-trigger-icon {
		color: #ffffff;
			background-color: #428bca;
					text-align: center;
	text-decoration: none;
}


.fl-node-qpjdsemo75rn .pp-modal-trigger .pp-button-icon {
	}

.fl-builder-content .fl-node-qpjdsemo75rn .pp-modal-trigger:hover,
.fl-node-qpjdsemo75rn .pp-modal-trigger:hover {
        color: #f7f7f7;
			background-color: #444444;
	        border-color: #222222;
}


.fl-node-qpjdsemo75rn .pp-modal-height-auto,
#modal-qpjdsemo75rn.pp-modal-height-auto {
    display: block !important;
    position: absolute;
    top: -99999px;
    width: 550px;
    visibility: hidden;
}

.fl-node-qpjdsemo75rn .pp-modal-height-auto .pp-modal-overlay,
#modal-qpjdsemo75rn.pp-modal-height-auto .pp-modal-overlay {
    display: none !important;
}

.fl-node-qpjdsemo75rn .pp-modal,
#modal-qpjdsemo75rn .pp-modal {
			background-color: #ffffff;
	}




.fl-node-qpjdsemo75rn .pp-modal.layout-standard,
#modal-qpjdsemo75rn .pp-modal.layout-standard {
    width: 550px;
    		height: auto;
	    max-width: 90%;
}

.fl-node-qpjdsemo75rn .pp-modal .pp-modal-header,
#modal-qpjdsemo75rn .pp-modal .pp-modal-header {
			background-color: #ffffff;
	    border-bottom: 1px solid #eeeeee;
}

	.fl-node-qpjdsemo75rn .pp-modal .pp-modal-header,
	#modal-qpjdsemo75rn .pp-modal .pp-modal-header {
					border-top-left-radius: 10px;
						border-top-right-radius: 10px;
				}
	
.fl-node-qpjdsemo75rn .pp-modal .pp-modal-title,
#modal-qpjdsemo75rn .pp-modal .pp-modal-title {
    padding: 10px 15px;
    color: #444444;
}
.fl-node-qpjdsemo75rn .pp-modal .pp-modal-content,
#modal-qpjdsemo75rn .pp-modal .pp-modal-content {
        padding: 15px;
}
.fl-node-qpjdsemo75rn .pp-modal .pp-modal-content.pp-modal-frame:before,
#modal-qpjdsemo75rn .pp-modal .pp-modal-content.pp-modal-frame:before {
    background: url(https://fund100.jp/cms/wp-content/plugins/bbpowerpack/modules/pp-modal-box/loader.gif) no-repeat;
}
.fl-node-qpjdsemo75rn .pp-modal .pp-modal-content-inner,
#modal-qpjdsemo75rn .pp-modal .pp-modal-content-inner {
        overflow: hidden;
        padding: px;
}

.fl-node-qpjdsemo75rn .pp-modal-close,
#modal-qpjdsemo75rn .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-qpjdsemo75rn .pp-modal-close:hover,
#modal-qpjdsemo75rn .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-qpjdsemo75rn .pp-modal-close.box-top-right,
#modal-qpjdsemo75rn .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-qpjdsemo75rn .pp-modal-close.box-top-left,
#modal-qpjdsemo75rn .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-qpjdsemo75rn .pp-modal-close.win-top-right,
#modal-qpjdsemo75rn .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-qpjdsemo75rn .pp-modal-close.win-top-left,
#modal-qpjdsemo75rn .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-qpjdsemo75rn .pp-modal-close .bar-wrap,
#modal-qpjdsemo75rn .pp-modal-close .bar-wrap {
    width: 100%;
    height: 100%;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-qpjdsemo75rn .pp-modal-close .bar-wrap span,
#modal-qpjdsemo75rn .pp-modal-close .bar-wrap span {
    background: #ffffff;
    height: 2px;
    margin-top: -1px;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-qpjdsemo75rn .pp-modal-close:hover .bar-wrap span,
#modal-qpjdsemo75rn .pp-modal-close:hover .bar-wrap span {
    background: #dddddd;
    -webkit-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}
.fl-node-qpjdsemo75rn .pp-modal-container.fadeIn.animated,
#modal-qpjdsemo75rn .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-qpjdsemo75rn .pp-modal-container.fadeOut.animated,
#modal-qpjdsemo75rn .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-qpjdsemo75rn .has-overlay-animation .pp-modal-container,
#modal-qpjdsemo75rn.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

.fl-node-qpjdsemo75rn .pp-modal-wrap:not(.has-overlay-animation) .pp-modal-overlay,
#modal-qpjdsemo75rn:not(.has-overlay-animation) .pp-modal-overlay {
    		background-color: rgba(0,0,0,0.3);
		}

@media only screen and (max-width: 0px) {
    .fl-node-qpjdsemo75rn .pp-modal.layout-fullscreen,
    #modal-qpjdsemo75rn .pp-modal.layout-fullscreen {
        top: 0 !important;
        margin: 10px !important;
    }
    .fl-node-qpjdsemo75rn .pp-modal.layout-standard,
    #modal-qpjdsemo75rn .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .fl-node-qpjdsemo75rn .pp-modal.layout-standard,
    #modal-qpjdsemo75rn .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-qpjdsemo75rn .pp-modal-button {
	text-align: left;
}
.fl-node-qpjdsemo75rn .pp-modal-trigger, .fl-node-qpjdsemo75rn .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-qpjdsemo75rn .pp-modal, #modal-qpjdsemo75rn .pp-modal {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-qpjdsemo75rn .pp-modal.layout-fullscreen, #modal-qpjdsemo75rn .pp-modal.layout-fullscreen {
	margin-top: 30px;
	margin-right: 30px;
	margin-bottom: 30px;
	margin-left: 30px;
}
.fl-node-03udwmknbt6r, .fl-node-03udwmknbt6r .fl-photo {
	text-align: center;
}
.fl-node-03udwmknbt6r .fl-photo-content, .fl-node-03udwmknbt6r .fl-photo-img {
	width: 100px;
}
@media ( max-width: 768px ) {
 .fl-node-03udwmknbt6r.fl-module-photo.fl-module {
	margin-top:0px;
	margin-bottom:0px;
}
}
.fl-builder-content .fl-node-xerozjvdbm8n.fl-rich-text, .fl-builder-content .fl-node-xerozjvdbm8n.fl-rich-text *:not(b, strong) {
	font-size: 16px;
	line-height: 1.6;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-xerozjvdbm8n.fl-rich-text, .fl-builder-content .fl-node-xerozjvdbm8n.fl-rich-text *:not(b, strong) {
		font-size: 14px;
	}
}
.bb-box-input.input-small {
    width: 46px !important;
 }
.pp-dual-button-content .pp-dual-button {
    text-align: center;
}
.fl-module .pp-dual-button-content .pp-dual-button a.pp-button {
    overflow: hidden;
}
.fl-module .pp-dual-button-content .pp-dual-button-1 .pp-button {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}
.fl-module .pp-dual-button-content .pp-dual-button-1 .pp-button:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    -o-transition-property: transform;
    -ms-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fl-module .pp-dual-button-content .pp-dual-button-2 .pp-button {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}
.fl-module .pp-dual-button-content .pp-dual-button-2 .pp-button:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    -o-transition-property: transform;
    -ms-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.fl-module .pp-dual-button-content .pp-divider {
    display: table;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(50%,-50%);
    -moz-transform: translate(50%,-50%);
    -o-transform: translate(50%,-50%);
    -ms-transform: translate(50%,-50%);
    transform: translate(50%,-50%);
    line-height: 0;
    text-align: center;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    text-align: center;
    transition: border-color ease 500ms,background ease 500ms,color ease 500ms;
    z-index: 12;
}
.fl-module  .pp-dual-button-content .pp-divider-inner {
    display: table-cell;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
}
.fl-module .pp-dual-button-content .pp-custom-icon {
    display: inline-block;
    max-width: 100%;
    width: 1em;
}

.fl-module .pp-dual-button-content .pp-font-icon.dashicons,
.fl-module .pp-dual-button-content .pp-font-icon.dashicons-before:before{
    font-size: inherit;
    height: auto;
    line-height: inherit;
    width: auto;
}
.pp-dual-button-content .pp-dual-button {
    float:  left;
    position: relative;
}
.pp-button > span {
    height: auto;
    vertical-align: middle;
}

/* Hover effects */
.pp-dual-button-content .pp-button-effect-fade .pp-button {
	transition: background-color, color;
}

.pp-dual-button-content .pp-button-effect-sweep_right .pp-button:before {
	content: "";
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	-moz-transform-origin: 0 50%;
	-o-transform-origin: 0 50%;
	-ms-transform-origin: 0 50%;
	transform-origin: 0 50%;
}
.pp-dual-button-content .pp-button-effect-sweep_right .pp-button:hover:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.pp-dual-button-content .pp-button-effect-sweep_left .pp-button:before {
	content: "";
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	-o-transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
}
.pp-dual-button-content .pp-button-effect-sweep_left .pp-button:hover:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.pp-dual-button-content .pp-button-effect-sweep_bottom .pp-button:before {
	content: "";
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	-o-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
}
.pp-dual-button-content .pp-button-effect-sweep_bottom .pp-button:hover:before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.pp-dual-button-content .pp-button-effect-sweep_top .pp-button:before {
	content: "";
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 100%;
	-moz-transform-origin: 50% 100%;
	-o-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}
.pp-dual-button-content .pp-button-effect-sweep_top .pp-button:hover:before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.pp-dual-button-content .pp-button-effect-bounce_right .pp-button:before {
	content: "";
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	-moz-transform-origin: 0 50%;
	-o-transform-origin: 0 50%;
	-ms-transform-origin: 0 50%;
	transform-origin: 0 50%;
}
.pp-dual-button-content .pp-button-effect-bounce_right .pp-button:hover:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.pp-dual-button-content .pp-button-effect-bounce_left .pp-button:before {
	content: "";
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 100% 50%;
	-moz-transform-origin: 100% 50%;
	-o-transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
}
.pp-dual-button-content .pp-button-effect-bounce_left .pp-button:hover:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.pp-dual-button-content .pp-button-effect-bounce_bottom .pp-button:before {
	content: "";
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	-o-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
}
.pp-dual-button-content .pp-button-effect-bounce_bottom .pp-button:hover:before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.pp-dual-button-content .pp-button-effect-bounce_top .pp-button:before {
	content: "";
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 100%;
	-moz-transform-origin: 50% 100%;
	-o-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}
.pp-dual-button-content .pp-button-effect-bounce_top .pp-button:hover:before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.pp-dual-button-content .pp-button-effect-radial_out .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-radial_out .pp-button:before {
	content: "";
	border-radius: 100%;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}
.pp-dual-button-content .pp-button-effect-radial_out .pp-button:hover:before {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-o-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
}

.pp-dual-button-content .pp-button-effect-radial_in .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-radial_in .pp-button:before {
	content: "";
	border-radius: 100%;
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-o-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
}
.pp-dual-button-content .pp-button-effect-radial_in .pp-button:hover:before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.pp-dual-button-content .pp-button-effect-rectangle_out .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-rectangle_out .pp-button:before {
	content: "";
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}
.pp-dual-button-content .pp-button-effect-rectangle_out .pp-button:hover:before {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.pp-dual-button-content .pp-button-effect-rectangle_in .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-rectangle_in .pp-button:before {
	content: "";
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);	
}
.pp-dual-button-content .pp-button-effect-rectangle_in .pp-button:hover:before {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.pp-dual-button-content .pp-button-effect-shutter_in_horizontal .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_in_horizontal .pp-button:before {
	content: "";
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	-o-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;	
}
.pp-dual-button-content .pp-button-effect-shutter_in_horizontal .pp-button:hover:before {
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
}

.pp-dual-button-content .pp-button-effect-shutter_out_horizontal .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_out_horizontal .pp-button:before {
	content: "";
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-o-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	-o-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
}
.pp-dual-button-content .pp-button-effect-shutter_out_horizontal .pp-button:hover:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-o-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.pp-dual-button-content .pp-button-effect-shutter_in_vertical .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_in_vertical .pp-button:before {
	content: "";
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	-o-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
}
.pp-dual-button-content .pp-button-effect-shutter_in_vertical .pp-button:hover:before {
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
}

.pp-dual-button-content .pp-button-effect-shutter_out_vertical .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_out_vertical .pp-button:before {
	content: "";
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-o-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	-o-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
}
.pp-dual-button-content .pp-button-effect-shutter_out_vertical .pp-button:hover:before {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-o-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

.pp-dual-button-content .pp-button-effect-shutter_out_diagonal .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_out_diagonal .pp-button:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-o-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	height: 0;
	width: 0;
	z-index: -1;
}
.pp-dual-button-content .pp-button-effect-shutter_out_diagonal .pp-button:hover:after {
	height: 4000%;
    width: 100%;
}

.pp-dual-button-content .pp-button-effect-shutter_in_diagonal .pp-button {
	overflow: hidden;
}
.pp-dual-button-content .pp-button-effect-shutter_in_diagonal .pp-button:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-moz-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-o-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	transform: translateX(-50%) translateY(-50%) rotate(45deg) translateZ(0);
	height: 4000%;
	width: 100%;
	z-index: -1;
}
.pp-dual-button-content .pp-button-effect-shutter_in_diagonal .pp-button:hover:after {
	height: 4000%;
    width: 0;
}@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }
.fl-node-lgxy8dp6hk3c .pp-dual-button-inner {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content a.pp-button {
			border-width: 3px;
				border-style:  solid;
			text-decoration: none;
	box-shadow: none;
	display: block;
}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1 a.pp-button {
		background-color: rgb(255, 255, 255);
			color: #00338c;
			border-color: #00338c;
		position: relative;
	vertical-align: middle;
}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1 a.pp-button:hover {
		background-color: rgb(255, 255, 255);
			color: #00338c;
			border-color: #00338c;
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1 a.pp-button:hover span {
		color: #00338c;
	}

.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2 a.pp-button {
		background-color: #00338c;
			color: rgb(255, 255, 255);
			border-color: #00338c;
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2 a.pp-button:hover {
		background-color: rgba(0, 50, 138, 0.7);
			color: rgb(255, 255, 255);
			border-color: #00338c;
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2 a.pp-button:hover span {
		color: rgb(255, 255, 255);
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content a.pp-button .pp-font-icon {
	margin-left: 5px;
}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1 .pp-font-icon {
			font-size: 20px;
			color: #00338c;
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1 a.pp-button:hover .pp-font-icon {
		color: #00338c;
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1 .custom_icon {
			width:20px;
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2 .pp-font-icon {
			font-size: 20px;
			color: rgb(255, 255, 255);
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2 a.pp-button:hover .pp-font-icon {
		color: rgb(255, 255, 255);
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2 .custom_icon {
			width:20px;
	}
	.fl-node-lgxy8dp6hk3c .pp-dual-button-content {
		text-align: center;
	}

.fl-node-lgxy8dp6hk3c .pp-dual-button-1 .pp-custom-icon {
			width: 20px;
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-2 .pp-custom-icon {
			width: 20px;
	}

.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1 .pp-button,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1 .pp-button:before {
			transition-duration: 200ms;
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2 .pp-button,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2 .pp-button:before {
			transition-duration: 200ms;
	}

.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-sweep_right .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-sweep_left .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-sweep_bottom .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-sweep_top .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-bounce_right .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-bounce_left .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-bounce_bottom .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-bounce_top .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-radial_out .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-radial_in .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-rectangle_out .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-rectangle_in .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_horizontal .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_out_horizontal .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_vertical .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_out_vertical .pp-button:before {
		background: rgb(255, 255, 255);
			color: #00338c;
			border-color: #00338c;
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-sweep_right .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-sweep_left .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-sweep_bottom .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-sweep_top .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-bounce_right .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-bounce_left .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-bounce_bottom .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-bounce_top .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-radial_out .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-radial_in .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-rectangle_out .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-rectangle_in .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_horizontal .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_out_horizontal .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_vertical .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_out_vertical .pp-button:before {
		background: rgba(0, 50, 138, 0.7);
			color: rgb(255, 255, 255);
			border-color: #00338c;
	}

.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-radial_in .pp-button,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-rectangle_in .pp-button,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_horizontal .pp-button,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_vertical .pp-button,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_diagonal .pp-button {
		background: rgb(255, 255, 255);
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-radial_in .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-rectangle_in .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_horizontal .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_in_vertical .pp-button:before {
		background: rgb(255, 255, 255);
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-radial_in .pp-button,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-rectangle_in .pp-button,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_horizontal .pp-button,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_vertical .pp-button,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_diagonal .pp-button {
		background: rgba(0, 50, 138, 0.7);
	}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-radial_in .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-rectangle_in .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_horizontal .pp-button:before,
.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-2.pp-button-effect-shutter_in_vertical .pp-button:before {
		background: #00338c;
	}

.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-1.pp-button-effect-shutter_out_diagonal .pp-button:after {
		background: rgb(255, 255, 255);
			color: #00338c;
			border-color: #00338c;
				transition-duration: 200ms;
	}

@media only screen and ( max-width: 992px ) {
	}

@media only screen and ( max-width: 768px ) {
	}

@media only screen and ( max-width: 100px ) {
	.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button-inner {
		float: none;
		text-align: center;
		flex-direction: column;
	}
	.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button,
	.fl-node-lgxy8dp6hk3c .pp-dual-button-content .pp-dual-button .pp-button {
		display: block;
		float: none;
		margin: 0 auto;
		max-width: 100%;
	}
	
}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content {
	text-align: center;
}
.fl-node-lgxy8dp6hk3c .pp-dual-button-inner {
	gap: 10px;
}
.fl-node-lgxy8dp6hk3c .pp-dual-button-content a.pp-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	width: 300px;
}
@media(max-width: 1200px) {
	.fl-node-lgxy8dp6hk3c .pp-dual-button-content a.pp-button {
		width: 240px;
	}
}
@media(max-width: 768px) {
	.fl-node-lgxy8dp6hk3c .pp-dual-button-content a.pp-button {
		width: 130px;
	}
}
 .fl-node-lgxy8dp6hk3c > .fl-module-content {
	margin-bottom:0px;
}
.fl-builder-content .fl-node-v4hnae0d7cg3.fl-rich-text, .fl-builder-content .fl-node-v4hnae0d7cg3.fl-rich-text *:not(b, strong) {
	font-size: 14px;
	line-height: 1.4;
}
 .fl-node-v4hnae0d7cg3.fl-module-rich-text {
	margin-bottom:5px;
}
@media ( max-width: 768px ) {
 .fl-node-v4hnae0d7cg3.fl-module-rich-text.fl-module {
	margin-bottom:60px;
}
}
.fl-builder-content .fl-node-h3jadmb9ktsi.fl-rich-text, .fl-builder-content .fl-node-h3jadmb9ktsi.fl-rich-text *:not(b, strong) {
	font-weight: 600;
	font-size: 20px;
	text-align: center;
}
.fl-node-gsewa1xq5894.fl-module-heading, .fl-node-gsewa1xq5894.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
}
 .fl-node-gsewa1xq5894.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-gsewa1xq5894.fl-module-heading.fl-module {
	margin-bottom:10px;
}
}
@media (max-width: 768px) { .fl-node-gsewa1xq5894.fl-module-heading { margin-top:15px; } }











.fl-builder-content .fl-node-v7yupb0k1c9h .fl-button,
.fl-builder-content .fl-node-v7yupb0k1c9h .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-node-v7yupb0k1c9h.fl-button-wrap, .fl-node-v7yupb0k1c9h .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:hover, .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:focus, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:hover, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:focus {
	border: 1px solid #002780;
}
.fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button, .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:visited, .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:hover, .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:focus, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:visited, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:hover, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button, .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:visited, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:visited {
	background-color: #007ae5;
}
.fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:hover, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:hover, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:hover {
	background-color: #00338c;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button, .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:visited, .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:hover, .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:focus, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:visited, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:hover, .fl-page .fl-builder-content .fl-node-v7yupb0k1c9h a.fl-button:focus {
		border-style: none;
		border-width: 0;
		background-clip: border-box;
	}
}
 .fl-node-v7yupb0k1c9h.fl-module-button {
	margin-top:0px;
}
.fl-builder-content .fl-node-d8xm5uyteoql.fl-rich-text, .fl-builder-content .fl-node-d8xm5uyteoql.fl-rich-text *:not(b, strong) {
	font-size: 14px;
	line-height: 1.4;
}
 .fl-node-d8xm5uyteoql.fl-module-rich-text {
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-d8xm5uyteoql.fl-module-rich-text.fl-module {
	margin-bottom:10px;
}
}
.fl-row .fl-col h3.fl-node-fhapzugd3inv,
.fl-row .fl-col h3.fl-node-fhapzugd3inv a,
	h3.fl-node-fhapzugd3inv,
	h3.fl-node-fhapzugd3inv a {
	color: #1b7cc6;
}
.fl-node-fhapzugd3inv.fl-module-heading, .fl-node-fhapzugd3inv.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-fhapzugd3inv.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-fhapzugd3inv.fl-module-heading { margin-top:15px; } }.fl-builder-content .fl-node-u2i37lq0stke.fl-rich-text, .fl-builder-content .fl-node-u2i37lq0stke.fl-rich-text *:not(b, strong) {
	font-size: 14px;
	line-height: 1.4;
}
 .fl-node-u2i37lq0stke.fl-module-rich-text {
	margin-bottom:0px;
}
.fl-node-owv6ybd9fqtc.fl-module-heading, .fl-node-owv6ybd9fqtc.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 22px;
}
 .fl-node-owv6ybd9fqtc.fl-module-heading {
	margin-top:30px;
}
@media (max-width: 768px) { .fl-node-owv6ybd9fqtc.fl-module-heading { margin-top:15px; } }.fl-node-27lkifcan0t4, .fl-node-27lkifcan0t4 .fl-photo {
	text-align: center;
}
.fl-node-27lkifcan0t4 .fl-photo-content, .fl-node-27lkifcan0t4 .fl-photo-img {
	width: 100px;
}
.fl-node-bf5trm8qx9iv.fl-module-heading, .fl-node-bf5trm8qx9iv.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 22px;
}
 .fl-node-bf5trm8qx9iv.fl-module-heading {
	margin-top:30px;
}
@media (max-width: 768px) { .fl-node-bf5trm8qx9iv.fl-module-heading { margin-top:15px; } }.fl-builder-content .fl-node-ldkqcbi82fpe.fl-rich-text, .fl-builder-content .fl-node-ldkqcbi82fpe.fl-rich-text *:not(b, strong) {
	font-size: 14px;
	line-height: 1.4;
}
 .fl-node-ldkqcbi82fpe.fl-module-rich-text {
	margin-top:0px;
}
.fl-builder-content .fl-node-bq21c0xtn93h.fl-rich-text, .fl-builder-content .fl-node-bq21c0xtn93h.fl-rich-text *:not(b, strong) {
	font-size: 12px;
}
.fl-row .fl-col h3.fl-node-mduvp590blj7,
.fl-row .fl-col h3.fl-node-mduvp590blj7 a,
	h3.fl-node-mduvp590blj7,
	h3.fl-node-mduvp590blj7 a {
	color: #1b7cc6;
}
.fl-node-mduvp590blj7.fl-module-heading, .fl-node-mduvp590blj7.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-mduvp590blj7.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-mduvp590blj7.fl-module-heading { margin-top:15px; } }.fl-node-qupce1lzj6rv, .fl-node-qupce1lzj6rv .fl-photo {
	text-align: center;
}
.fl-node-qupce1lzj6rv .fl-photo-content, .fl-node-qupce1lzj6rv .fl-photo-img {
	width: 400px;
}
.fl-node-1u9gb38erjf2, .fl-node-1u9gb38erjf2 .fl-photo {
	text-align: center;
}
.fl-node-1u9gb38erjf2 .fl-photo-content, .fl-node-1u9gb38erjf2 .fl-photo-img {
	width: 400px;
}
.fl-node-x2niforec450.fl-module-heading, .fl-node-x2niforec450.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 22px;
}
 .fl-node-x2niforec450.fl-module-heading {
	margin-top:30px;
}
@media (max-width: 768px) { .fl-node-x2niforec450.fl-module-heading { margin-top:15px; } }.fl-node-ty39ip0uvcme, .fl-node-ty39ip0uvcme .fl-photo {
	text-align: center;
}
.fl-node-aucfbvq15jsh, .fl-node-aucfbvq15jsh .fl-photo {
	text-align: center;
}
.fl-row .fl-col h3.fl-node-7z0fr2k8gsnd,
.fl-row .fl-col h3.fl-node-7z0fr2k8gsnd a,
	h3.fl-node-7z0fr2k8gsnd,
	h3.fl-node-7z0fr2k8gsnd a {
	color: #1b7cc6;
}
.fl-node-7z0fr2k8gsnd.fl-module-heading, .fl-node-7z0fr2k8gsnd.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-7z0fr2k8gsnd.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-7z0fr2k8gsnd.fl-module-heading { margin-top:15px; } }.pp-image-scroll-wrap .sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
	border: 0 !important;
	box-shadow: none !important;
}

.pp-image-scroll-wrap,
.pp-image-scroll-container {
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
}

.pp-image-scroll-wrap {
	overflow: hidden;
	width: 100%;
	position: relative;
}

.pp-image-scroll-container {
	width: 100%;
}

.pp-container-scroll {
	overflow: auto;
}

.pp-image-scroll-container.pp-image-scroll-horizontal {
	position: relative;
	width: 100%;
	height: 100%;
}

.pp-image-scroll-container.pp-image-scroll-horizontal .pp-image-scroll-image img {
	max-width: none;
	height: 100%;
}

.pp-image-scroll-container.pp-image-scroll-vertical .pp-image-scroll-image img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

.pp-image-scroll-ver {
	position: relative;
}

.pp-image-scroll-container .pp-image-scroll-overlay {
	background: rgba(2, 2, 2, 0.3);
}

.pp-image-scroll-container .pp-image-scroll-link,
.pp-image-scroll-container .pp-image-scroll-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 4;
	cursor: pointer;
}

.pp-image-scroll-container .pp-image-scroll-overlay,
.pp-image-scroll-container .pp-overlay-content {
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 1;
}

.pp-image-scroll-container:hover .pp-image-scroll-overlay {
	opacity: 0;
}

.pp-image-scroll-container:hover .pp-overlay-content {
	opacity: 0;
	visibility: hidden;
}

.pp-overlay-content {
	display: inline-block;
	position: absolute;
	height: auto;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	text-align: center;
	line-height: 1;
	z-index: 5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
}

.pp-image-scroll-container.pp-image-scroll-horizontal .pp-overlay-content {
	animation-name: pp-scroll-horizontal;
}

.pp-image-scroll-container.pp-image-scroll-vertical .pp-overlay-content {
	animation-name: pp-scroll-vertical;
}

@keyframes pp-scroll-vertical {
	0% {
		top: 50%;
		left: 50%;
		-webkit-transform: translateX(-50%) translateY(-45%);
		-ms-transform: translateX(-50%) translateY(-45%);
		transform: translateX(-50%) translateY(-45%);
	}

	100% {
		top: 50%;
		left: 50%;
		-webkit-transform: translateX(-50%) translateY(-50%);
		-ms-transform: translateX(-50%) translateY(-50%);
		transform: translateX(-50%) translateY(-50%);
	}
}

@keyframes pp-scroll-horizontal {
	0% {
		top: 50%;
		left: 50%;
		-webkit-transform: translateX(-45%) translateY(-50%);
		-ms-transform: translateX(-45%) translateY(-50%);
		transform: translateX(-45%) translateY(-50%);
	}

	100% {
		top: 50%;
		left: 50%;
		-webkit-transform: translateX(-50%) translateY(-50%);
		-ms-transform: translateX(-50%) translateY(-50%);
		transform: translateX(-50%) translateY(-50%);
	}
}

.pp-image-scroll-wrap .pp-overlay-content {
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 1;
}

.pp-image-scroll-wrap:hover .pp-overlay-scroll-content .pp-overlay-content {
	opacity: 0;
	visibility: hidden;
}

.pp-overlay-scroll-content.pp-scroll-overlay-horizontal .pp-overlay-content {
	animation-name: pp-scroll-horizontal;
}

.pp-overlay-scroll-content.pp-scroll-overlay-vertical .pp-overlay-content {
	animation-name: pp-scroll-vertical;
}.fl-node-j0ud76grbs2t .pp-image-scroll-wrap .pp-image-scroll-container {
	height: 500px;
	position: relative;
}

.fl-node-j0ud76grbs2t .pp-image-scroll-container .pp-image-scroll-image img {
	-webkit-transition: all 15s ease-in-out !important;
	transition: all 15s ease-in-out !important;
}
			.fl-node-j0ud76grbs2t .pp-image-scroll-container .pp-image-scroll-image img {
			height: calc(500px - 15px);
		}
	.fl-node-j0ud76grbs2t .pp-image-scroll-overlay {
	background-color: rgba(0,0,0,0.5);
}
.fl-node-j0ud76grbs2t .pp-overlay-content {
	color: #000;
	background-color: #a0a0a0;
}

.fl-node-j0ud76grbs2t .pp-overlay-content .pp-overlay-icon {
	font-size: 30px;
}
.fl-node-j0ud76grbs2t .pp-overlay-content .pp-overlay-image {
	width: 30px;
}
.fl-node-j0ud76grbs2t .pp-overlay-content .pp-overlay-text {
	margin-bottom: 0;
}

@media only screen and (max-width: 992px) {
	.fl-node-j0ud76grbs2t .pp-image-scroll-wrap .pp-image-scroll-container {
		height: px;
	}
						.fl-node-j0ud76grbs2t .pp-image-scroll-container .pp-image-scroll-image img {
				height: calc(px - 15px);
			}
			}

@media only screen and (max-width: 768px) {
	.fl-node-j0ud76grbs2t .pp-image-scroll-wrap .pp-image-scroll-container {
		height: px;
	}
						.fl-node-j0ud76grbs2t .pp-image-scroll-container .pp-image-scroll-image img {
				height: calc(px - 15px);
			}
			}
.fl-node-j0ud76grbs2t .pp-overlay-content {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
div.fancybox-container {
	z-index: 999992;
}
.pp-photo-gallery {
    position: relative;
	text-align: center;
	text-decoration: none;
	opacity: 0;
}
.pp-photo-gallery:before,
.pp-photo-gallery:after {
	content: " ";
	display: table;
}
.pp-photo-gallery:after {
	clear: both;
}
.pp-photo-gallery .pp-photo-gallery-item {
    float: left;
    text-align: center;
}
.pp-photo-gallery .pp-photo-gallery-content {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.pp-photo-gallery .pp-photo-gallery-content > a {
	display: block;
    padding: unset;
	isolation: isolate;
	overflow: hidden;
	transform: translateZ(0);
}

/* Overlay */
.pp-photo-gallery .pp-gallery-overlay {
	position: absolute;
	overflow: hidden;
	transition: .5s ease;
}

.pp-photo-gallery .pp-gallery-overlay .pp-caption {
	margin-bottom: 10px;
}

.pp-photo-gallery .pp-photo-gallery-content .pp-gallery-img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    will-change: transform;
    width: 100%;
}

.pp-photo-gallery.justified-gallery > a,
.pp-photo-gallery.justified-gallery > div {
	opacity: 0;
	visibility: hidden !important;
}
.pp-photo-gallery.justified-gallery > .entry-visible {
	opacity: 1;
	visibility: visible !important;
}

.pp-photo-gallery.justified-gallery .pp-photo-gallery-content {
	height: 100%;
}

.pp-gallery-pagination .pp-gallery-load-more {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	-webkit-transition: 0.2s all ease-in-out;
	-moz-transition: 0.2s all ease-in-out;
	transition: 0.2s all ease-in-out;
}
.pp-gallery-pagination .pp-gallery-load-more.disabled {
	opacity: 0.5;
	pointer-events: none;
}
.pp-gallery-pagination a,
.pp-gallery-pagination a:visited {
	text-decoration: none;
}

.pp-gallery-fancybox-axis-x.fancybox-show-thumbs .fancybox-inner {
	right: 0;
	bottom: 95px;
}
.pp-gallery-fancybox-axis-x .fancybox-thumbs {
	top: auto;
	width: auto;
	bottom: 0;
	left: 0;
	right : 0;
	height: 95px;
	padding: 10px 10px 5px 10px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.3);
}
.fancybox-esxczwvt15f3 button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}






.fl-node-esxczwvt15f3 .pp-gallery-overlay .pp-overlay-icon span {
	width: auto;
	height: auto;
	color: ;
	font-size: 30px;
	background-color: ;
					}

.fl-node-esxczwvt15f3 .pp-gallery-overlay .pp-overlay-icon span:before {
	font-size: 30px;
	width: auto;
	height: auto;
}

.fl-node-esxczwvt15f3 .pp-photo-gallery-caption,
.fl-node-esxczwvt15f3 .pp-gallery-overlay .pp-caption {
	}















.fl-node-esxczwvt15f3 .pp-gallery-pagination.pagination-scroll {
	display: none;
}
.fl-node-esxczwvt15f3 .pp-gallery-pagination .pp-gallery-load-more {
			background-color: #eee;
		}
.fl-node-esxczwvt15f3 .pp-gallery-pagination .pp-gallery-load-more:hover {
			}

.fancybox-esxczwvt15f3-overlay {
	background-image: none;
			background-color: rgba(0,0,0,0.5);
	}
.fancybox-is-open .fancybox-esxczwvt15f3-overlay {
	opacity: 1;
}

@media only screen and ( max-width: 1200px ) {
	
	}

@media only screen and ( max-width: 992px ) {
	
	}

@media only screen and ( max-width: 768px ) {
	}
.fl-node-esxczwvt15f3 .pp-photo-gallery-caption {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-esxczwvt15f3 .pp-gallery-pagination {
	text-align: left;
}
.fl-node-esxczwvt15f3 .pp-gallery-pagination .pp-gallery-load-more {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-pxk48cf6astm.fl-module-heading, .fl-node-pxk48cf6astm.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 22px;
}
 .fl-node-pxk48cf6astm.fl-module-heading {
	margin-top:30px;
}
@media (max-width: 768px) { .fl-node-pxk48cf6astm.fl-module-heading { margin-top:15px; } }.fl-row .fl-col h3.fl-node-2j8po7gbf0vx,
.fl-row .fl-col h3.fl-node-2j8po7gbf0vx a,
	h3.fl-node-2j8po7gbf0vx,
	h3.fl-node-2j8po7gbf0vx a {
	color: #1b7cc6;
}
.fl-node-2j8po7gbf0vx.fl-module-heading, .fl-node-2j8po7gbf0vx.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-2j8po7gbf0vx.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-2j8po7gbf0vx.fl-module-heading { margin-top:15px; } }.fl-node-idofska86b1p, .fl-node-idofska86b1p .fl-photo {
	text-align: center;
}
.fl-node-idofska86b1p .fl-photo-content, .fl-node-idofska86b1p .fl-photo-img {
	width: 200px;
}
.fl-row .fl-col h3.fl-node-ug8hsn6fozte,
.fl-row .fl-col h3.fl-node-ug8hsn6fozte a,
	h3.fl-node-ug8hsn6fozte,
	h3.fl-node-ug8hsn6fozte a {
	color: #1b7cc6;
}
.fl-node-ug8hsn6fozte.fl-module-heading, .fl-node-ug8hsn6fozte.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-ug8hsn6fozte.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-ug8hsn6fozte.fl-module-heading { margin-top:15px; } }.fl-row .fl-col h3.fl-node-mut4wn9zhp6e,
.fl-row .fl-col h3.fl-node-mut4wn9zhp6e a,
	h3.fl-node-mut4wn9zhp6e,
	h3.fl-node-mut4wn9zhp6e a {
	color: #1b7cc6;
}
.fl-node-mut4wn9zhp6e.fl-module-heading, .fl-node-mut4wn9zhp6e.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-mut4wn9zhp6e.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-mut4wn9zhp6e.fl-module-heading { margin-top:15px; } }.fl-row .fl-col h3.fl-node-1w3rvqealsdt,
.fl-row .fl-col h3.fl-node-1w3rvqealsdt a,
	h3.fl-node-1w3rvqealsdt,
	h3.fl-node-1w3rvqealsdt a {
	color: #1b7cc6;
}
.fl-node-1w3rvqealsdt.fl-module-heading, .fl-node-1w3rvqealsdt.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-1w3rvqealsdt.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-1w3rvqealsdt.fl-module-heading { margin-top:15px; } }.fl-node-2wilqzgxkhay, .fl-node-2wilqzgxkhay .fl-photo {
	text-align: center;
}
.fl-node-2wilqzgxkhay .fl-photo-content, .fl-node-2wilqzgxkhay .fl-photo-img {
	width: 350px;
}
 .fl-node-2wilqzgxkhay.fl-module-photo {
	margin-top:60px;
	margin-bottom:60px;
}
@media (max-width: 768px) { .fl-node-2wilqzgxkhay.fl-module-photo { margin-top:15px;margin-bottom:15px; } }.fl-node-hrz2fi4jqyu8, .fl-node-hrz2fi4jqyu8 .fl-photo {
	text-align: center;
}
.fl-node-hrz2fi4jqyu8 .fl-photo-content, .fl-node-hrz2fi4jqyu8 .fl-photo-img {
	width: 400px;
}
 .fl-node-hrz2fi4jqyu8.fl-module-photo {
	margin-top:60px;
	margin-bottom:60px;
}
@media (max-width: 768px) { .fl-node-hrz2fi4jqyu8.fl-module-photo { margin-top:15px;margin-bottom:15px; } }.fl-row .fl-col h3.fl-node-48jclp2nqart,
.fl-row .fl-col h3.fl-node-48jclp2nqart a,
	h3.fl-node-48jclp2nqart,
	h3.fl-node-48jclp2nqart a {
	color: #1b7cc6;
}
.fl-node-48jclp2nqart.fl-module-heading, .fl-node-48jclp2nqart.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-48jclp2nqart.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-48jclp2nqart.fl-module-heading { margin-top:15px; } }.fl-node-mocp4z5x3i28, .fl-node-mocp4z5x3i28 .fl-photo {
	text-align: center;
}
.fl-node-mocp4z5x3i28 .fl-photo-content, .fl-node-mocp4z5x3i28 .fl-photo-img {
	width: 100%;
}
.fl-row .fl-col h3.fl-node-j8459hc3ygs6,
.fl-row .fl-col h3.fl-node-j8459hc3ygs6 a,
	h3.fl-node-j8459hc3ygs6,
	h3.fl-node-j8459hc3ygs6 a {
	color: #1b7cc6;
}
.fl-node-j8459hc3ygs6.fl-module-heading, .fl-node-j8459hc3ygs6.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-j8459hc3ygs6.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-j8459hc3ygs6.fl-module-heading { margin-top:15px; } }.fl-node-a6vs4nowugxk, .fl-node-a6vs4nowugxk .fl-photo {
	text-align: center;
}
.fl-node-a6vs4nowugxk .fl-photo-content, .fl-node-a6vs4nowugxk .fl-photo-img {
	width: 700px;
}
@media(max-width: 992px) {
	.fl-node-a6vs4nowugxk .fl-photo-content, .fl-node-a6vs4nowugxk .fl-photo-img {
		width: 600px;
	}
}
 .fl-node-a6vs4nowugxk.fl-module-photo {
	margin-top:60px;
	margin-bottom:60px;
}
@media ( max-width: 992px ) {
 .fl-node-a6vs4nowugxk.fl-module-photo.fl-module {
	margin-bottom:60px;
}
}
@media ( max-width: 768px ) {
 .fl-node-a6vs4nowugxk.fl-module-photo.fl-module {
	margin-bottom:30px;
}
}
@media (max-width: 768px) { .fl-node-a6vs4nowugxk.fl-module-photo { margin-top:15px; } }.fl-animated.fl-fade-in {
	animation: fl-fade-in 1s ease;
	-webkit-animation: fl-fade-in 1s ease;
}
@-webkit-keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fl-row-fixed-width {
	min-width: 1px;
}
.fl-col-group.fl-col-group-responsive-reversed,
.fl-col-group.fl-col-group-responsive-reversed .fl-col,
.fl-col-group.fl-col-group-responsive-reversed .fl-col-content,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	min-width: 0px;
}
.fl-module-box > .fl-module-pp-image-carousel {
    width: 100%;
    overflow: hidden;
}

.compat-field-pp-custom-link .alignleft {
    margin: 0;
}

.pp-image-carousel-wrapper {
	position: relative;
}

.pp-image-carousel,
.pp-image-carousel.swiper-cube {
    position: relative;
    text-align: center;
	overflow: hidden;
	height: 250px;
}

.pp-image-carousel-item {
    float: left;
	text-align: center;
	overflow: hidden;
}

.pp-image-carousel-content {
    position: relative;
    text-align: center;
	overflow: hidden;
}

.pp-image-carousel.slider-type-slideshow {
	height: 450px;
}
.pp-image-carousel.slider-type-slideshow .swiper-wrapper {
	align-items: center;
}

.pp-image-carousel.swiper,
.pp-image-carousel.swiper-container {
	width: 100%;
}

/* Overlay */
.pp-image-overlay {
	position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #fff;
    background-color: hsla(206,7%,54%,.8);
    -webkit-transition: opacity .5s,-webkit-transform .5s;
    transition: opacity .5s,-webkit-transform .5s;
    -o-transition: transform .5s,opacity .5s;
    transition: transform .5s,opacity .5s;
    transition: transform .5s,opacity .5s,-webkit-transform .5s;
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-bottom {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-right {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.from-left {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.framed {
    opacity: 0;
}

.pp-image-carousel-item .pp-image-overlay.fade {
    opacity: 0;
}

.pp-image-carousel-item:hover .pp-image-overlay.fade,
.pp-image-carousel-item:focus .pp-image-overlay.fade {
    opacity: 1;
}

.pp-image-carousel-item:not(:hover) .pp-image-overlay.zoom-in {
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    opacity: 0;
}

.pp-image-carousel .pp-carousel-image-container,
.pp-image-carousel-thumbs .pp-image-carousel-thumb {
	background: no-repeat 50%;
    background-size: cover;
    height: 100%;
    position: relative;
}

.pp-carousel-image-container figure.use-as-background {
	display: inline-flex;
	height: 100%;
	justify-content: center;
	position: relative;
}
.pp-carousel-image-container figure.use-as-background .swiper-slide-image {
	object-fit: cover;
}
/* some image optimization plugins wrap image in <picture> tag */
.pp-carousel-image-container figure.use-as-background picture.swiper-slide-image {
	width: 100%;
}

/* Pagination **/
.pp-image-carousel-wrapper .swiper-pagination-bullets {
    cursor: default;
}
.pp-image-carousel-wrapper .swiper-pagination-bullet {
	top: 0;
	border: none;
}
.pp-image-carousel-wrapper.pp-nav-outside .swiper-pagination {
    bottom: 0;
}

.pp-image-carousel-wrapper .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.pp-image-carousel.swiper-horizontal>.swiper-pagination-progressbar,
.pp-image-carousel.swiper-container-horizontal>.swiper-pagination-progressbar {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.25);
    position: absolute;
}

.pp-image-carousel .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.pp-image-carousel-wrapper .pp-swiper-button {
	background-image: none;
	width: auto;
	height: auto;
	line-height: 1;
	position: absolute;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
	justify-content: center;
    z-index: 1;
    cursor: pointer;
    font-size: 25px;
    top: 50%;
    margin-top: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.pp-image-carousel-wrapper .pp-swiper-button:after {
    content: none;
    display: none;
}
.pp-image-carousel-wrapper .pp-swiper-button span {
	display: inline-flex;
}
.pp-image-carousel-wrapper .pp-swiper-button svg {
	height: 25px;
}

.pp-image-carousel-wrapper.pp-nav-outside .pp-swiper-button {
	top: calc(50% - 30px / 2);
}
.pp-image-carousel-wrapper .swiper-button-prev {
	left: 10px;
}
.pp-image-carousel-wrapper .swiper-button-next {
	right: 10px;
}

.pp-thumbnails-swiper .pp-image-carousel-thumb {
	background: no-repeat center;
    background-size: cover;
    height: 100%;
	position: relative;
	cursor: pointer;
}

.pp-thumbs-ratio-11 .pp-image-carousel-thumb {
	padding-bottom: 100%;
}

.pp-thumbs-ratio-43 .pp-image-carousel-thumb {
    padding-bottom: 75%;
}

.pp-thumbs-ratio-169 .pp-image-carousel-thumb {
    padding-bottom: 56.35%;
}

.pp-thumbs-ratio-219 .pp-image-carousel-thumb {
    padding-bottom: 42.8571%
}

.pp-image-overlay .pp-overlay-icon {
    display: inline-block;
}

.pp-image-overlay .pp-overlay-icon span {
    display: block;
    line-height: 1;
}

.pp-image-carousel .swiper-lazy-preloader {
    display: none;
}

.pp-image-carousel .pp-slides-count {
    display: none;
}

.caption-bottom .pp-carousel-image-container {
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    background-color: var(--fl-global-body, #fff);
}
.caption-bottom .pp-image-carousel-item .swiper-slide-inner {
    overflow: hidden;
    margin-bottom: 10px;
}
.caption-bottom .pp-image-carousel-item .swiper-slide-inner img {
    overflow: hidden;
}
.caption-bottom.with-slide-count .pp-image-carousel .pp-caption {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    pointer-events: none;
    text-align: left;
}
.caption-bottom.with-slide-count .pp-image-carousel .pp-slides-count {
    display: inline;
    min-width: 50px;
    text-align: right;
}
.caption-bottom.with-slide-count .pp-image-carousel .swiper-pagination-fraction {
    display: none;
}
.caption-bottom.with-slide-count .pp-image-carousel-wrapper.pp-nav-outside .pp-image-carousel {
    padding-bottom: 0;
}	.fl-node-coubs9z0wln2 .pp-image-carousel,
	.fl-node-coubs9z0wln2 .pp-image-carousel.slider-type-slideshow {
		height: auto;
	}


.fl-node-coubs9z0wln2 .pp-image-carousel.slider-type-slideshow {
			margin-bottom: 2px;
		}

@media only screen and (max-width: 1200px) {
	}
@media only screen and (max-width: 992px) {
	}
@media only screen and (max-width: 768px) {
	}

.fl-node-coubs9z0wln2 .pp-image-carousel .pp-carousel-image-container {
	background-size: auto;
}
.fl-node-coubs9z0wln2 .pp-image-carousel .pp-carousel-image-container figure.use-as-background {
	}
.fl-node-coubs9z0wln2 .pp-image-carousel .pp-carousel-image-container figure.use-as-background .swiper-slide-image {
	object-fit: none;
		}
.fl-node-coubs9z0wln2 .pp-carousel-image-container figure.use-as-background picture.swiper-slide-image img {
	}

.fl-node-coubs9z0wln2 .pp-image-carousel .swiper-pagination-bullet {
	opacity: 1;
			background-color: #999999 !important;
	        width: 10px;
            height: 10px;
            border-radius: 100px !important;
    	box-shadow: none !important;
	}

.fl-node-coubs9z0wln2 .pp-image-carousel.swiper-horizontal>.swiper-pagination-progressbar,
.fl-node-coubs9z0wln2 .pp-image-carousel.swiper-container-horizontal>.swiper-pagination-progressbar {
			background-color: #999999 !important;
	}

.fl-node-coubs9z0wln2 .pp-image-carousel .swiper-pagination-bullet:hover,
.fl-node-coubs9z0wln2 .pp-image-carousel .swiper-pagination-bullet:focus,
.fl-node-coubs9z0wln2 .pp-image-carousel .swiper-pagination-bullet-active,
.fl-node-coubs9z0wln2 .pp-image-carousel .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
			background-color: #000000 !important;
		opacity: 1;
    box-shadow: none !important;
}


.fl-node-coubs9z0wln2 .pp-image-carousel-wrapper .pp-swiper-button {
		height: 34px;
	width: 34px;
			        padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 13px;
            padding-right: 13px;
    }
.fl-node-coubs9z0wln2 .pp-image-carousel-wrapper .pp-swiper-button svg {
	height: 24px;
}
.fl-node-coubs9z0wln2 .pp-image-carousel-wrapper .pp-swiper-button svg path {
	}

.fl-node-coubs9z0wln2 .pp-image-carousel-wrapper .pp-swiper-button:hover,
.fl-node-coubs9z0wln2 .pp-image-carousel-wrapper .pp-swiper-button:focus {
    	    }

.fl-node-coubs9z0wln2 .pp-image-carousel-wrapper .pp-swiper-button:hover svg path,
.fl-node-coubs9z0wln2 .pp-image-carousel-wrapper .pp-swiper-button:focus svg path {
	}




.fl-node-coubs9z0wln2 .pp-image-overlay {
			background: rgba(0,0,0,.5);
	
		-webkit-transition: opacity 0.3s,-webkit-transform 0.3s;
    transition: opacity 0.3s,-webkit-transform 0.3s;
    -o-transition: transform 0.3s,opacity 0.3s;
    transition: transform 0.3s,opacity 0.3s;
    transition: transform 0.3s,opacity 0.3s,-webkit-transform 0.3s;
}

.fl-node-coubs9z0wln2 .pp-image-overlay .pp-overlay-icon {
			width: 30px;
	height: 30px;
}

.fl-node-coubs9z0wln2 .pp-image-overlay .pp-overlay-icon span {
	color: ;
	font-size: 30px;
			}



 .fl-node-coubs9z0wln2 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col h3.fl-node-35nsj2bxtyh1,
.fl-row .fl-col h3.fl-node-35nsj2bxtyh1 a,
	h3.fl-node-35nsj2bxtyh1,
	h3.fl-node-35nsj2bxtyh1 a {
	color: #1b7cc6;
}
.fl-node-35nsj2bxtyh1.fl-module-heading, .fl-node-35nsj2bxtyh1.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-35nsj2bxtyh1.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-35nsj2bxtyh1.fl-module-heading { margin-top:15px; } }.fl-row .fl-col h3.fl-node-s7xifgd4acuo,
.fl-row .fl-col h3.fl-node-s7xifgd4acuo a,
	h3.fl-node-s7xifgd4acuo,
	h3.fl-node-s7xifgd4acuo a {
	color: #1b7cc6;
}
.fl-node-s7xifgd4acuo.fl-module-heading, .fl-node-s7xifgd4acuo.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-s7xifgd4acuo.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-s7xifgd4acuo.fl-module-heading { margin-top:15px; } }.fl-row .fl-col h3.fl-node-ik3205c1salp,
.fl-row .fl-col h3.fl-node-ik3205c1salp a,
	h3.fl-node-ik3205c1salp,
	h3.fl-node-ik3205c1salp a {
	color: #1b7cc6;
}
.fl-node-ik3205c1salp.fl-module-heading, .fl-node-ik3205c1salp.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-ik3205c1salp.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-ik3205c1salp.fl-module-heading { margin-top:15px; } }.fl-node-jrc0xqsf5y7t, .fl-node-jrc0xqsf5y7t .fl-photo {
	text-align: center;
}
.fl-node-jrc0xqsf5y7t .fl-photo-content, .fl-node-jrc0xqsf5y7t .fl-photo-img {
	width: 450px;
}
.fl-node-37sn2jdoe051.fl-module-heading, .fl-node-37sn2jdoe051.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 22px;
}
 .fl-node-37sn2jdoe051.fl-module-heading {
	margin-top:30px;
}
@media (max-width: 768px) { .fl-node-37sn2jdoe051.fl-module-heading { margin-top:15px; } }.fl-row .fl-col h3.fl-node-uc2iqhy14oav,
.fl-row .fl-col h3.fl-node-uc2iqhy14oav a,
	h3.fl-node-uc2iqhy14oav,
	h3.fl-node-uc2iqhy14oav a {
	color: #1b7cc6;
}
.fl-node-uc2iqhy14oav.fl-module-heading, .fl-node-uc2iqhy14oav.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
}
 .fl-node-uc2iqhy14oav.fl-module-heading {
	margin-top:30px;
	margin-bottom:0px;
}
@media (max-width: 768px) { .fl-node-uc2iqhy14oav.fl-module-heading { margin-top:15px; } }/* Clearfix */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.fl-row-fixed-width {
	min-width: 1px;
}
.fl-col-group.fl-col-group-responsive-reversed,
.fl-col-group.fl-col-group-responsive-reversed .fl-col,
.fl-col-group.fl-col-group-responsive-reversed .fl-col-content,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	min-width: 0px;
}

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

.pp-testimonials .owl-carousel button.owl-dot {
	background: none !important;
	border: none !important;
}

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

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

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

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

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

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

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

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

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

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

/* Layouts */

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

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

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

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

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

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

/* Wrappers */
.pp-testimonials-wrap {
	position: relative;
}
.pp-testimonials-wrap.pp-testimonials-slider .pp-testimonial {
	position: absolute;
	top: 0;
	visibility: hidden;
}
.pp-testimonials-wrap.pp-testimonials-slider .pp-testimonial:first-child,
.pp-testimonials-slider .pp-testimonials-loaded .pp-testimonial {
	position: relative;
	visibility: visible;
}
.pp-testimonials-wrap .fa {
	opacity: 0.8;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.pp-testimonials-wrap .fa:hover {
	opacity: 1;
}
.pp-testimonials-wrap .pp-arrow-wrapper {
	margin-bottom: 10px;
	text-align: center;
}
.pp-testimonials-wrap .owl-nav {
	display: flex;
	justify-content: center;
}
.pp-testimonials-wrap .owl-nav button {
	box-shadow: none;
	border: 0;
	outline: none;
	line-height: 0;
    margin: 0;
	padding: 0;
	font-size: 20px;
	background-image: none !important;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.pp-testimonials-wrap .owl-nav button svg {
	height: 20px;
	box-shadow: none;
	outline: none;
	border-radius: 100%;
}
.pp-testimonials-wrap .owl-nav.position-side button {
	position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.pp-testimonials-wrap .owl-nav.position-side button.owl-prev {
	left: -15px;
}
.pp-testimonials-wrap .owl-nav.position-side button.owl-next {
	right: -15px;
}

/* Flexbox */
.pp-testimonials-flexbox .owl-stage {
	display: flex;
}
.pp-testimonials-flexbox .owl-carousel .owl-item {
	display: flex;
    align-items: center;
    flex: 1 0 auto;
    padding: 0 20px;
}
.pp-testimonials-flexbox .pp-testimonial {
	display: flex;
	flex-direction: column;
    align-items: center;
	align-content: center;
	justify-content: center;
    width: 100%;
    height: 100%;
}
.pp-testimonials-flexbox .pp-testimonial .pp-content-wrapper {
	height: auto !important;
}

.pp-testimonials-wrap .owl-carousel.owl-loaded:focus {
	outline: none;
}@media (max-width: 768px) { .pp-testimonials .layout-3 .pp-testimonials-image {
    float: none;
    margin: 0 auto 20px;
    text-align: center;
    width: 100%;
}
.pp-testimonials .layout-3 .layout-3-content {
    float: none;
    text-align: center;
    width: 100% !important;
}
 }
	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .pp-arrow-wrapper {
		text-align: center;	}

	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-theme .owl-dots .owl-dot span {
		opacity: 1;
				background: rgb(204, 204, 204);
				box-shadow: none;
	}

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

	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav {
		justify-content: center;
					}

		.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav.position-bottom {
		gap: -30px;
	}
	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav.position-side button.owl-prev {
		left: -30px;
	}
	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav.position-side button.owl-next {
		right: -30px;
	}
	
		.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav button {
		width: 40px;
		height: 40px;
	}
	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav button svg {
		height: 30px;
	}
	
	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav button {
					}

	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav button svg path {
			}

	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav button:hover {
					}

	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav button:hover svg path {
			}

	

.fl-node-qdg9uiomvtrb .pp-testimonial {
	}

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

	.fl-node-qdg9uiomvtrb .pp-testimonial.layout-4 .layout-4-content {
		background: rgba(0, 122, 230, 0.09);	}


.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .pp-testimonials-heading {
	}
.fl-node-qdg9uiomvtrb .pp-testimonial .pp-title-wrapper .pp-testimonials-name {
			}
.fl-node-qdg9uiomvtrb .pp-testimonial .pp-title-wrapper .pp-testimonials-designation {
			}

.fl-node-qdg9uiomvtrb .pp-testimonial .pp-testimonials-title {
							}

.fl-node-qdg9uiomvtrb .pp-testimonial .pp-testimonials-content {
			}
.fl-node-qdg9uiomvtrb .pp-testimonial .pp-testimonials-image img {
	max-height: 100px;
	max-width: 100px;
}

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


@media only screen and ( max-width: 1200px ) {
	.fl-node-qdg9uiomvtrb .pp-testimonials-grid-lg-1 .pp-testimonials {
		grid-template-columns: 100%;
		display: grid;
	}

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

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

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

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

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

	
	}

@media only screen and ( max-width: 992px ) {
	.fl-node-qdg9uiomvtrb .pp-testimonials-grid-md-1 .pp-testimonials {
		grid-template-columns: 100%;
		display: grid;
	}

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

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

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

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

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

	
	}

@media only screen and ( max-width: 768px ) {
	.fl-node-qdg9uiomvtrb .pp-testimonials-grid-sm-1 .pp-testimonials {
		grid-template-columns: 100%;
		display: grid;
	}

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

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

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

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

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

	.fl-node-qdg9uiomvtrb.pp-masonry-grid .pp-testimonials {
			}

		.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav.position-bottom {
		gap: -10px;
	}
	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav.position-side button.owl-prev {
		left: -10px;
	}
	.fl-node-qdg9uiomvtrb .pp-testimonials-wrap .owl-nav.position-side button.owl-next {
		right: -10px;
	}
	
	}
.fl-node-qdg9uiomvtrb .pp-testimonials-grid .pp-testimonials {
	grid-gap: 20px;
}
.fl-node-qdg9uiomvtrb .pp-testimonial.layout-1 .pp-content-wrapper, .fl-node-qdg9uiomvtrb .pp-testimonial.layout-2 .pp-content-wrapper, .fl-node-qdg9uiomvtrb .pp-testimonial.layout-3 .pp-content-wrapper, .fl-node-qdg9uiomvtrb .pp-testimonial.layout-4 .layout-4-content, .fl-node-qdg9uiomvtrb .pp-testimonial.layout-5 .pp-content-wrapper {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding-top: 40px;
	padding-bottom: 30px;
}
.fl-node-qdg9uiomvtrb .pp-testimonial .pp-title-wrapper .pp-testimonials-name {
	font-weight: 600;
}
.fl-node-qdg9uiomvtrb .pp-testimonial .pp-title-wrapper .pp-testimonials-designation {
	font-size: 12px;
}
.fl-node-qdg9uiomvtrb .pp-testimonial .pp-testimonials-content {
	line-height: 1.7;
	text-align: left;
}
.fl-node-qdg9uiomvtrb .pp-testimonial .pp-testimonials-image img {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: rgb(255, 255, 255);
	border-top-width: 5px;
	border-right-width: 5px;
	border-bottom-width: 5px;
	border-left-width: 5px;
	border-top-left-radius: 300px;
	border-top-right-radius: 300px;
	border-bottom-left-radius: 300px;
	border-bottom-right-radius: 300px;
}
.fl-node-n31eqdr4z9ub, .fl-node-n31eqdr4z9ub .fl-photo {
	text-align: center;
}

/* Start Global CSS */
@font-face {
  font-family: "LINE Seed JP";
  src:
  url("/fonts/LINESeedJP_OTF_Rg.woff") format("woff"),
  url("/fonts/LINESeedJP_OTF_Rg.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "LINE Seed JP";
  src:
      url("/fonts/LINESeedJP_OTF_Bd.woff") format("woff"),
      url("/fonts/LINESeedJP_OTF_Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: bold;
}

body, h1, h2, h3, h4, h5, h6 {
  font-family:"LINE Seed JP", sans-serif !important;
}

small {
    color: inherit !important;
}

.fl-rich-text p {
    margin-bottom: 1.5em;
}


.hLabelTheme .fl-heading {
    position: relative;
}

.hLabelTheme .fl-heading::before {
    content: "助成テーマ";
    font-size: 0.2em;
    position: absolute;
    right: -35px;
    top: 5px;
    color: #1b7cc6;
    background-color: #ffffff;
    padding: 0.7em 0.5em;
    line-height: 1;
    border-radius: 5px;
    border: 2px solid #1b7cc6;
}

.headingBg1 {
    background-color: #f4f4f4 !important;
    padding: 3px 15px;
}

.whiteBoxBg {
    background-color: #ffffff;
}

#switch .pp-dual-button-content {
    border-bottom: 3px solid #00338c;
}

#switch .pp-dual-button-content a {
    border-bottom: none !important;
    margin-bottom: -3px;
}

.backersList ul,
.backersList ul li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.backersList ul {
}

.backersList ul li {
    float: left;
    width: 25%;
    padding: 5px 10px;
}

/* スマホのみ */
@media only screen and (max-width: 768px) {
	.backersList ul li {
    width: 50%;
    padding: 5px;
}
}

.hStyle2 {
    background-color: #f7fafc;
    border-top: 1px solid #dddddd;
    padding: 5px 10px;
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
h2 {
    border-left: 5px solid #1b7cc6;
    display: inline-block;
    padding-left: 10px;
    line-height: 1.4 !important;
    padding-top: 5px;
}

h3 {
    border-bottom: 3px solid #1b7cc6;
}


/* 固定化の状態ごとにクラスを切り替える場合の例（任意） */
.sidebarWrap {
  position: relative;
}


/* 全体のカード */
.cf-summary-card {
  max-width: 100%;
  background-color: #f7fafc;
  border-radius: 10px;
  padding: 22px 22px 26px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  color: #111827;
  box-sizing: border-box;
}

/* 左側にカラーラインを付けて差別化 */
.cf-summary-card::before {
  content: "";
  position: absolute;
}

/* 親要素の位置基準を確保 */
.cf-summary-card {
  position: relative;
}

/* ヘッダー部分 */
.cf-summary-card__label {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 6px;
}

.cf-summary-card__amount {
  margin: 0 0 6px;
  line-height: 1;
}

.cf-summary-card__amount-number {
  font-size: 38px;
  font-weight: 800;
}

.cf-summary-card__amount-yen {
  font-size: 18px;
  font-weight: 600;
  margin-left: 4px;
}

/* 進捗バーまわり */
.cf-summary-card__progress {
  margin-top: 10px;
}

.cf-summary-card__percent-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  color: #0f172a;
  background-color: #dbeafe;              /* 淡いブルー */
  border: 1px solid #bfdbfe;
  margin-bottom: 8px;
}

.cf-summary-card__progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background-color: #e5e7eb;
  overflow: hidden;
  margin-bottom: 6px;
}

.cf-summary-card__progress-bar-fill {
  height: 100%;
  width: 35%;                              /* 35% を視覚化 */
  background-color: #2563eb;              /* フラットなブルー */
  border-radius: 999px;
}

.cf-summary-card__goal {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 5px;
}

/* 情報エリア */
.cf-summary-card__info {
  border-top: 1px solid #e2e8f0;
  padding-top: 5px;
}

.cf-summary-card__info-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.nokoriDay {
    background-color: #ffffff;
    padding: 0px 10px;
    border-radius: 5px;
    margin: 5px 0px;
    border: 1px solid #eeeeee;
}

.cf-summary-card__info-label {
  font-size: 13px;
  color: #6b7280;
}

.cf-summary-card__info-value {
  font-size: 14px;
  text-align: right;
}

.cf-summary-card__info-days {
  font-size: 14px;
  text-align: right;
}

.cf-summary-card__days-number {
  font-size: 22px;
  font-weight: 800;
  margin-right: 4px;
}

.cf-summary-card__note {
  font-size: 11px;
  color: #94a3b8;
  margin-bottom: 0px;
  line-height: 1.2;
  margin-top: 10px;
}

/* スマホ調整 */
@media (max-width: 480px) {
  .cf-summary-card {
    padding: 18px 16px 22px;
  }

  .cf-summary-card__amount-number {
    font-size: 32px;
  }
}

.crowdfundingMobileKifuSelect {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: #007ae5;
    padding: 10px;
    z-index: 9999;
    text-align: center;
}

.crowdfundingMobileKifuSelect a {
    background-color: #ffffff;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;
    line-height: 1;
    font-size: 16px;
    font-weight: bold;
}

/* 小さなデスクトップより大きい */
@media only screen and (min-width: 992px) {
	.crowdfundingMobileKifuSelect {
	    display: none;
	}
}


/* プログレスバーの初期状態とアニメーション */
.cf-summary-card__progress-bar-fill {
  width: 0;
  height: 9px;
  border-radius: 999px;
  transition: width 1.2s ease-out;
}

/* 数字が変わるときのちょっとしたフェードイン（お好みで） */
.cf-summary-card__amount-number,
.cf-summary-card__percent-badge,
.cf-summary-card__info-value {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cf-summary-card--animating .cf-summary-card__amount-number,
.cf-summary-card--animating .cf-summary-card__percent-badge,
.cf-summary-card--animating .cf-summary-card__info-value {
  opacity: 1;
  transform: translateY(0);
}
/* 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-node-3j58ul9zt2kc .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-jyzckqn8uw79 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-9fi8lsb0h7kn .fl-row-content {
				min-width: 0px;
			}
		