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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }.fl-node-e8b9olv71ixh {
	color: #ffffff;
}
.fl-builder-content .fl-node-e8b9olv71ixh *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

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

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

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


.fl-node-e8b9olv71ixh > .fl-row-content-wrap:after {
	background-image: linear-gradient(0deg, rgba(0,112,190,0.9) 0%, rgba(0,49,102,0.8) 100%);
}
.fl-node-e8b9olv71ixh > .fl-row-content-wrap {
	background-image: url(https://tecnoproductos.com/wp-content/uploads/2025/10/Cocedores-Industriales-Natec.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
.fl-node-e8b9olv71ixh .fl-row-content {
	max-width: 1000px;
}
 .fl-node-e8b9olv71ixh > .fl-row-content-wrap {
	padding-top:100px;
	padding-bottom:100px;
}





.fl-node-u4cqs5fhyxmr > .fl-row-content-wrap {
	background-color: #f7f7f7;
}
.fl-node-u4cqs5fhyxmr .fl-row-content {
	max-width: 90%;
}
 .fl-node-u4cqs5fhyxmr > .fl-row-content-wrap {
	padding-top:140px;
	padding-bottom:140px;
}
.fl-node-3150zcxuyis2 {
	color: #ffffff;
}
.fl-builder-content .fl-node-3150zcxuyis2 *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

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

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

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


.fl-node-3150zcxuyis2 > .fl-row-content-wrap {
	background-color: #0070be;
	background-image: url(https://tecnoproductos.com/wp-content/uploads/2025/03/TECNOPRODUCTOS-MEXICO.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
.fl-node-3150zcxuyis2 > .fl-row-content-wrap:after {
	background-color: rgba(0,112,190,0.9);
}
.fl-node-3150zcxuyis2 .fl-row-content {
	max-width: 1400px;
}
 .fl-node-3150zcxuyis2 > .fl-row-content-wrap {
	padding-top:100px;
	padding-bottom:100px;
}





.fl-node-h62zn5e8p3sm .fl-row-content {
	max-width: 80%;
}
 .fl-node-h62zn5e8p3sm > .fl-row-content-wrap {
	padding-top:140px;
	padding-bottom:140px;
}
@media ( max-width: 992px ) {
 .fl-node-h62zn5e8p3sm.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-bottom:20px;
}
}





.fl-node-mzlkh7ev95ra .fl-row-content {
	max-width: 90%;
}
 .fl-node-mzlkh7ev95ra > .fl-row-content-wrap {
	padding-top:140px;
	padding-bottom:140px;
}
@media ( max-width: 992px ) {
 .fl-node-mzlkh7ev95ra.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-bottom:20px;
}
}





.fl-node-keyim695l0h3 .fl-row-content {
	max-width: 90%;
}
 .fl-node-keyim695l0h3 > .fl-row-content-wrap {
	padding-top:140px;
	padding-bottom:140px;
}
@media ( max-width: 992px ) {
 .fl-node-keyim695l0h3.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-bottom:20px;
}
}
.fl-node-5xjh7n3obqcw {
	color: #ffffff;
}
.fl-builder-content .fl-node-5xjh7n3obqcw *:not(input):not(textarea):not(select):not(a):not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(.fl-menu-mobile-toggle) {
	color: inherit;
}

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

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

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


.fl-node-5xjh7n3obqcw > .fl-row-content-wrap {
	background-color: #0070be;
	background-image: url(https://tecnoproductos.com/wp-content/uploads/2025/03/TECNOPRODUCTOS-MEXICO.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
.fl-node-5xjh7n3obqcw > .fl-row-content-wrap:after {
	background-color: rgba(0,112,190,0.9);
}
.fl-node-5xjh7n3obqcw .fl-row-content {
	max-width: 1400px;
}
 .fl-node-5xjh7n3obqcw > .fl-row-content-wrap {
	padding-top:100px;
	padding-bottom:100px;
}





.fl-node-28yrjomkhx91 > .fl-row-content-wrap {
	background-color: #F4F6F9;
	background-image: url(https://tecnoproductos.com/wp-content/uploads/2025/10/Blender-Cell_without-background_white-300dpi.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
.fl-node-28yrjomkhx91 > .fl-row-content-wrap:after {
	background-color: rgba(247,247,247,0.88);
}
.fl-node-28yrjomkhx91 .fl-row-content {
	max-width: 90%;
}
 .fl-node-28yrjomkhx91 > .fl-row-content-wrap {
	padding-top:140px;
	padding-bottom:140px;
}
@media ( max-width: 992px ) {
 .fl-node-28yrjomkhx91.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-bottom:20px;
}
}





.fl-node-gzbi5f2wm79y .fl-row-content {
	max-width: 1400px;
}
 .fl-node-gzbi5f2wm79y > .fl-row-content-wrap {
	padding-top:70px;
	padding-bottom:70px;
}




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




.fl-node-21653udbnfxs {
	width: 40%;
}
.fl-node-21653udbnfxs > .fl-col-content {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-21653udbnfxs {
		width: 40% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-21653udbnfxs {
		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-8df6hcxrvz1b {
	width: 60%;
}
 .fl-node-8df6hcxrvz1b > .fl-col-content {
	margin-left:50px;
}




.fl-node-gaj8qf4kpylv {
	width: 33.333%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-gaj8qf4kpylv {
		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;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-gaj8qf4kpylv {
		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-13y8azrb96ed {
	width: 100%;
}




.fl-node-93qdfr7gyhkc {
	width: 100%;
}




.fl-node-5q6xo72yfag0 {
	width: 25%;
}




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




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




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




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




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




.fl-node-57jtrgq8l0ou {
	width: 25%;
}




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




.fl-node-6bvf7rmkopey {
	width: 25%;
}




.fl-node-0olv5hnyfxrc {
	width: 100%;
}




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




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




.fl-node-2et4ogkqz3sx {
	width: 25%;
}




.fl-node-3ub8cfptygjk {
	width: 100%;
}




.fl-node-9ov7y6e2ucbx {
	width: 25%;
}




.fl-node-gzkeafyb8thv {
	width: 60%;
}
 .fl-node-gzkeafyb8thv > .fl-col-content {
	margin-left:50px;
}




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




.fl-node-72stjo148gxe {
	width: 55%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-72stjo148gxe {
		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-ysx7udajcmr3 {
	width: 100%;
}




.fl-node-d5qwvkbcm97o {
	width: 33.33%;
}




.fl-node-u0dqlezvkmt9 {
	width: 33.33%;
}




.fl-node-zbfe8hp47w2k {
	width: 33.33%;
}




.fl-node-p4ja05nqlvfb {
	width: 33.33%;
}




.fl-node-nlyhatrg3qu5 {
	width: 60%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-nlyhatrg3qu5 {
		width: 60% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-nlyhatrg3qu5 {
		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-nlyhatrg3qu5 > .fl-col-content {
	margin-left:50px;
}
@media ( max-width: 992px ) {
 .fl-node-nlyhatrg3qu5.fl-col > .fl-col-content {
	margin-left:0px;
}
}




.fl-node-ectx8ywnj3r0 {
	width: 40%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-ectx8ywnj3r0 {
		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-2xezdrul6av3 {
	width: 40%;
}
 .fl-node-2xezdrul6av3 > .fl-col-content {
	margin-left:50px;
}




.fl-node-fkp9vnmjuwgy {
	width: 75%;
}




.fl-node-51xerb048ih2 {
	width: 75%;
}




.fl-node-vjftpc30zr18 {
	width: 75%;
}




.fl-node-hm25if7ls9ra {
	width: 75%;
}




.fl-node-bsnq3wkyl9a4 {
	width: 75%;
}




.fl-node-uq8ay0jr129k {
	width: 75%;
}




.fl-node-btz5p30e4j8q {
	width: 75%;
}




.fl-node-150p3iuszlaq {
	width: 75%;
}




.fl-node-lb9ztuwn6hog {
	width: 40%;
}
 .fl-node-lb9ztuwn6hog > .fl-col-content {
	margin-left:50px;
}




.fl-node-12eyhf8gnqbx {
	width: 45%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-12eyhf8gnqbx {
		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-zploaey9qb2d {
	width: 33.34%;
}




.fl-node-439dk1gzv75r {
	width: 33.33%;
}




.fl-node-tx49ncwpzfo8 {
	width: 33.33%;
}




.fl-node-7txisczpu8d2 {
	width: 33.33%;
}




.fl-node-d8vejif7lk9r {
	width: 26.667%;
}




.fl-node-mb29k4nxoier {
	width: 33.33%;
}




.fl-node-m0wbz5pon9hc {
	width: 33.33%;
}




.fl-node-dx9kow62v8u4 {
	width: 33.33%;
}




.fl-node-uiokf7q05nca {
	width: 33.33%;
}




.fl-node-ud1epi9toazl {
	width: 25%;
}
.fl-node-ud1epi9toazl > .fl-col-content {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-ud1epi9toazl {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-ud1epi9toazl {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




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




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




.fl-node-a3n9tyipvkfh {
	width: 25%;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-a3n9tyipvkfh {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-a3n9tyipvkfh {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-pas9jn4d62oc.fl-module-heading, .fl-node-pas9jn4d62oc.fl-module-heading :where(a, q, p, span) {
	font-size: 54px;
	text-align: center;
}
@media(max-width: 768px) {
	.fl-node-pas9jn4d62oc.fl-module-heading, .fl-node-pas9jn4d62oc.fl-module-heading :where(a, q, p, span) {
		font-size: 30px;
	}
}
.fl-node-wv327so8hcpa.fl-module-heading, .fl-node-wv327so8hcpa.fl-module-heading :where(a, q, p, span) {
	font-size: 40px;
}
@media(max-width: 1200px) {
	.fl-node-wv327so8hcpa.fl-module-heading, .fl-node-wv327so8hcpa.fl-module-heading :where(a, q, p, span) {
		font-size: 37px;
	}
}
@media(max-width: 768px) {
	.fl-node-wv327so8hcpa.fl-module-heading, .fl-node-wv327so8hcpa.fl-module-heading :where(a, q, p, span) {
		text-align: center;
	}
}














.fl-node-6bnkuxwyr2z7.fl-button-wrap, .fl-node-6bnkuxwyr2z7 .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button {
	padding-top: 27px;
	padding-right: 75px;
	padding-bottom: 27px;
	padding-left: 75px;
}
.fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button, .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button, .fl-page .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:visited {
	font-weight: 700;
	letter-spacing: 1.5px;
	border: 1px solid #00bdf0;
	background-color: #00C9FC;
}
.fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:hover, .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:focus {
	border: 1px solid #00bdf0;
}
.fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:hover {
	background-color: #00C9FC;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button {
		padding-right: 20px;
		padding-left: 20px;
	}
	.fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button, .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button, .fl-page .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:visited {
		font-size: 15px;
	}
}
@media(max-width: 768px) {
	.fl-node-6bnkuxwyr2z7.fl-button-wrap, .fl-node-6bnkuxwyr2z7 .fl-button-wrap {
		text-align: center;
	}
	.fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button, .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button, .fl-page .fl-builder-content .fl-node-6bnkuxwyr2z7 a.fl-button:visited {
		font-size: 12px;
	}
}
.fl-node-9owmuv6yftig.fl-module-heading, .fl-node-9owmuv6yftig.fl-module-heading :where(a, q, p, span) {
	font-size: 40px;
	line-height: 56px;
}
@media(max-width: 1200px) {
	.fl-node-9owmuv6yftig.fl-module-heading, .fl-node-9owmuv6yftig.fl-module-heading :where(a, q, p, span) {
		font-size: 28px;
		line-height: 1.5;
	}
}
@media(max-width: 992px) {
	.fl-node-9owmuv6yftig.fl-module-heading, .fl-node-9owmuv6yftig.fl-module-heading :where(a, q, p, span) {
		font-size: 25px;
	}
}
@media(max-width: 768px) {
	.fl-node-9owmuv6yftig.fl-module-heading, .fl-node-9owmuv6yftig.fl-module-heading :where(a, q, p, span) {
		text-align: center;
	}
}
/* Clearfix */
.pp-infobox:before,
.pp-infobox:after {
	content: " ";
	display: table;
}

.pp-infobox:after {
	clear: both;
}
.pp-infobox-wrap .pp-infobox-link {
	text-decoration: none;
	display: block;
}

.pp-infobox-title-prefix {
	display: block;
}
.pp-infobox-title-wrapper .pp-infobox-title {
	margin-bottom: 5px;
	margin-top: 0;
}
.pp-infobox-description p {
	margin-bottom: 15px;
}
.pp-infobox-description p:last-of-type {
	margin-bottom: 0 !important;
}
.pp-more-link {
	color: inherit;
	display: block;
	text-decoration: none;
	box-shadow: none;
}
.pp-infobox .pp-more-link {
	display: inline-block;
}
.pp-more-link:hover {
	text-decoration: none;
}
.pp-infobox-icon-inner .dashicons,
.pp-infobox-icon-inner .dashicons-before:before {
	height: auto;
	width: auto;
}

/* Default layout */
.pp-infobox {
	border-width: 0;
	padding: 20px;
	text-align: center;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}
.pp-infobox-icon {
	border-width: 0;
	display: inline-block;
	margin: 0 auto;
	text-align: center;
}
.pp-infobox-icon-inner {
	display: table;
}
.pp-infobox-icon span {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-image {
	margin: 0 auto 10px;
	text-align: center;
}
.pp-infobox-image img {
	border-width: 0;
	height: 2em;
	width: 2em;
}
.pp-infobox-image a {
	text-decoration: none !important;
	box-shadow: none !important;
	border: none !important;
	outline: none !important;
}

/* Layouts */

/* Layout 1 */
.pp-infobox-wrap .layout-1 {
	text-align: left;
}
.pp-infobox-wrap .layout-1 .pp-heading-wrapper {
	display: table;
	margin-bottom: 5px;
}
.pp-infobox-wrap .layout-1 .pp-icon-wrapper,
.pp-infobox-wrap .layout-1 .pp-infobox-title-wrapper {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-1 .pp-infobox-title-wrapper .pp-infobox-title {
	margin-bottom: 0;
	margin-left: 10px;
}
.pp-infobox-wrap .layout-1 .pp-infobox-title-prefix {
	margin-bottom: 0;
	margin-left: 10px;
}
.pp-infobox-wrap .layout-1 .pp-heading-wrapper-inner {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-1 .pp-more-link.pp-title-link .pp-infobox-title-wrapper {
	display: block;
}

/* Layout 2 */
.pp-infobox-wrap .layout-2 {
	text-align: right;
}
.pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: table;
	float: right;
	margin-bottom: 5px;
}
.pp-infobox-wrap .layout-2 .pp-icon-wrapper {
	float: right;
}
.pp-infobox-wrap .layout-2 .pp-infobox-title-wrapper,
.pp-infobox-wrap .layout-2 .pp-icon-wrapper {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-2 .pp-infobox-title-wrapper .pp-infobox-title {
	margin-bottom: 0;
	margin-right: 10px;
}
.pp-infobox-wrap .layout-2 .pp-infobox-description {
	clear: both;
}
.pp-infobox-wrap .layout-2 .pp-header-wrapper-inner {
	display: table-cell;
	vertical-align: middle;
}
.pp-infobox-wrap .layout-2 .pp-more-link.pp-title-link .pp-infobox-title-wrapper {
	display: block;
}

.pp-infobox-wrap .layout-2 .pp-infobox-title-prefix {
	margin-bottom: 0;
	margin-right: 10px;
}

/* Layout 3 */
.pp-infobox-wrap .layout-3 {
	text-align: left;
}
.pp-infobox-wrap .layout-3-wrapper {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
	flex-shrink: 1;
}
.pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.pp-infobox-wrap .layout-3 .pp-heading-wrapper {
	flex: 1;
}

/* Layout 4 */
.pp-infobox-wrap .layout-4 {
	text-align: right;
}
.pp-infobox-wrap .layout-4-wrapper {
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
	flex-shrink: 1;
}
.pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.pp-infobox-wrap .layout-4 .pp-heading-wrapper {
	flex: 1;
}
@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-col-group-equal-height .fl-node-xbc0vjr27m5f,
.fl-col-group-equal-height .fl-node-xbc0vjr27m5f .fl-module-content,
.fl-col-group-equal-height .fl-node-xbc0vjr27m5f .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-xbc0vjr27m5f .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-xbc0vjr27m5f .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-xbc0vjr27m5f .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-large,
.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-medium,
.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-xbc0vjr27m5f .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-xbc0vjr27m5f .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-xbc0vjr27m5f .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-xbc0vjr27m5f.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-xbc0vjr27m5f .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-xbc0vjr27m5f .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 10px;
	}
.fl-node-xbc0vjr27m5f .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-xbc0vjr27m5f .pp-infobox-description {
			}
	.fl-node-xbc0vjr27m5f .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-xbc0vjr27m5f .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-xbc0vjr27m5f .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-xbc0vjr27m5f .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-xbc0vjr27m5f .pp-infobox-icon {
					padding: 0px;
					}
	.fl-node-xbc0vjr27m5f .pp-infobox-icon-inner span.pp-icon {
			}

	.fl-node-xbc0vjr27m5f .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-xbc0vjr27m5f .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-xbc0vjr27m5f .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-xbc0vjr27m5f .pp-infobox-icon-inner span.pp-icon,
.fl-node-xbc0vjr27m5f .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-xbc0vjr27m5f .pp-infobox-wrap .pp-infobox {
			background: #ffffff;
				text-align: left;
	}


.fl-node-xbc0vjr27m5f .pp-infobox:hover {
	}


.fl-node-xbc0vjr27m5f .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-3-wrapper,
.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 992px) {
	.fl-node-xbc0vjr27m5f .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-xbc0vjr27m5f .pp-infobox-wrap .pp-infobox {
				text-align: left;
			}
						.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-2 .pp-infobox-description,
			.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				float: left;
			}
			/*
			.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
				flex: 0 1 auto;
			}
			*/
		
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-xbc0vjr27m5f .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 16px;
}
.fl-node-xbc0vjr27m5f .pp-infobox-description {
	font-size: 16px;
}
.fl-node-xbc0vjr27m5f .pp-infobox-icon-inner span.pp-icon, .fl-node-xbc0vjr27m5f .pp-infobox-icon-inner span:before {
	font-size: 16px;
}
.fl-node-xbc0vjr27m5f .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-xbc0vjr27m5f .pp-infobox {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0070BE;
	border-left-width: 10px;
}
.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-xbc0vjr27m5f .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-xbc0vjr27m5f > .fl-module-content {
	margin-bottom: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-isw1z9flknty.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-isw1z9flknty.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 500;
	font-size: 20px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-isw1z9flknty.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-isw1z9flknty.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
.fl-node-ryqk0exhz5su.fl-module-heading, .fl-node-ryqk0exhz5su.fl-module-heading :where(a, q, p, span) {
	font-size: 40px;
	line-height: 56px;
	text-align: center;
}
@media(max-width: 768px) {
	.fl-node-ryqk0exhz5su.fl-module-heading, .fl-node-ryqk0exhz5su.fl-module-heading :where(a, q, p, span) {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}
}
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-d1m35w2eitjc, .fl-node-d1m35w2eitjc .fl-photo {
	text-align: left;
}
.fl-node-d1m35w2eitjc .fl-photo-content, .fl-node-d1m35w2eitjc .fl-photo-img {
	width: 270px;
}
.fl-node-lirj859t1uvz.fl-module-heading, .fl-node-lirj859t1uvz.fl-module-heading :where(a, q, p, span) {
	font-size: 40px;
	line-height: 56px;
	text-align: center;
}
@media(max-width: 768px) {
	.fl-node-lirj859t1uvz.fl-module-heading, .fl-node-lirj859t1uvz.fl-module-heading :where(a, q, p, span) {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}
}
.fl-node-7g0yl9a42iz3.fl-module-heading, .fl-node-7g0yl9a42iz3.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-7g0yl9a42iz3.fl-module-heading, .fl-node-7g0yl9a42iz3.fl-module-heading :where(a, q, p, span) {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}
}
.fl-node-fx3prq0k1jde, .fl-node-fx3prq0k1jde .fl-photo {
	text-align: center;
}
.fl-node-fsn4mzhtpal3 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-fsn4mzhtpal3 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
.fl-node-ipzn4k2hv9l0, .fl-node-ipzn4k2hv9l0 .fl-photo {
	text-align: center;
}
.fl-node-tyczarphvk2w.fl-module-heading, .fl-node-tyczarphvk2w.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-tyczarphvk2w.fl-module-heading, .fl-node-tyczarphvk2w.fl-module-heading :where(a, q, p, span) {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}
}
.fl-node-6mxnu80yfcir .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-6mxnu80yfcir .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
.fl-node-q3snce4rluvx, .fl-node-q3snce4rluvx .fl-photo {
	text-align: center;
}
.fl-node-of43ixhatup1.fl-module-heading, .fl-node-of43ixhatup1.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-of43ixhatup1.fl-module-heading, .fl-node-of43ixhatup1.fl-module-heading :where(a, q, p, span) {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}
}
.fl-node-6wscixgbzmf9 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-6wscixgbzmf9 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
.fl-node-4am57ltopzbf, .fl-node-4am57ltopzbf .fl-photo {
	text-align: center;
}
.fl-node-0a65cmwzryqk.fl-module-heading, .fl-node-0a65cmwzryqk.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-0a65cmwzryqk.fl-module-heading, .fl-node-0a65cmwzryqk.fl-module-heading :where(a, q, p, span) {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}
}


.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button,
.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited,
.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button *,
.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited *,
.fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button,
.fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited,
.fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button *,
.fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited * {
	color: #0070be;
}






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







.fl-node-jykhg2x3q91w.fl-button-wrap, .fl-node-jykhg2x3q91w .fl-button-wrap {
	text-align: left;
}
.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button {
	padding-top: 27px;
	padding-right: 70px;
	padding-bottom: 27px;
	padding-left: 70px;
}
.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button, .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited {
	font-weight: 700;
	letter-spacing: 2px;
	border: 1px solid rgba(243,0,0,0);
	background-color: rgba(255,0,0,0);
}
.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:hover, .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:focus, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:hover, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:focus {
	border: 1px solid #0064b2;
}
.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button, .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited, .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:hover, .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:focus, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:hover, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:focus {
	border-color: #0070be;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
}
.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:hover, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:hover, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:hover {
	background-color: #0070be;
}
@media(max-width: 1200px) {
	.fl-node-jykhg2x3q91w.fl-button-wrap, .fl-node-jykhg2x3q91w .fl-button-wrap {
		text-align: center;
	}
	.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button {
		padding-right: 20px;
		padding-left: 20px;
	}
	.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button, .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited {
		font-size: 16px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-jykhg2x3q91w a.fl-button, .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button, .fl-page .fl-builder-content .fl-node-jykhg2x3q91w a.fl-button:visited {
		font-size: 14px;
	}
}
.fl-node-5dnklbm7coi2 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-5dnklbm7coi2 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
.fl-node-h4b58vd3n7xu, .fl-node-h4b58vd3n7xu .fl-photo {
	text-align: center;
}
.fl-node-e01b3w9mh4u7.fl-module-heading, .fl-node-e01b3w9mh4u7.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-e01b3w9mh4u7.fl-module-heading, .fl-node-e01b3w9mh4u7.fl-module-heading :where(a, q, p, span) {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}
}
.fl-node-v97j3028hu41 .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-v97j3028hu41 .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
.fl-node-pvx1cm5ks76i, .fl-node-pvx1cm5ks76i .fl-photo {
	text-align: center;
}
.fl-node-1h9gyusoavji.fl-module-heading, .fl-node-1h9gyusoavji.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-1h9gyusoavji.fl-module-heading, .fl-node-1h9gyusoavji.fl-module-heading :where(a, q, p, span) {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}
}
.fl-node-6ldaz5mxyjqh .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-6ldaz5mxyjqh .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
.fl-node-5ty2udh4nx97, .fl-node-5ty2udh4nx97 .fl-photo {
	text-align: center;
}
.fl-node-g6phs2450j1u.fl-module-heading, .fl-node-g6phs2450j1u.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-g6phs2450j1u.fl-module-heading, .fl-node-g6phs2450j1u.fl-module-heading :where(a, q, p, span) {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}
}
.fl-node-g5bq93ymc2vl .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	margin: auto;
}

			.fl-node-g5bq93ymc2vl .fl-separator {
	border-top-color: #cccccc;
	border-top-style: solid;
}
.fl-node-mqp3c0jgtvyk, .fl-node-mqp3c0jgtvyk .fl-photo {
	text-align: center;
}
.fl-node-j29hnl0o6ums.fl-module-heading, .fl-node-j29hnl0o6ums.fl-module-heading :where(a, q, p, span) {
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-j29hnl0o6ums.fl-module-heading, .fl-node-j29hnl0o6ums.fl-module-heading :where(a, q, p, span) {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}
}
.fl-node-i2p64gqfzvnx.fl-module-heading, .fl-node-i2p64gqfzvnx.fl-module-heading :where(a, q, p, span) {
	font-size: 40px;
}
@media(max-width: 1200px) {
	.fl-node-i2p64gqfzvnx.fl-module-heading, .fl-node-i2p64gqfzvnx.fl-module-heading :where(a, q, p, span) {
		font-size: 37px;
	}
}
@media(max-width: 768px) {
	.fl-node-i2p64gqfzvnx.fl-module-heading, .fl-node-i2p64gqfzvnx.fl-module-heading :where(a, q, p, span) {
		text-align: center;
	}
}














.fl-node-sfoy4a0iexd8.fl-button-wrap, .fl-node-sfoy4a0iexd8 .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button {
	padding-top: 27px;
	padding-right: 75px;
	padding-bottom: 27px;
	padding-left: 75px;
}
.fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button, .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button, .fl-page .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:visited {
	font-weight: 700;
	letter-spacing: 1.5px;
	border: 1px solid #00bdf0;
	background-color: #00C9FC;
}
.fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:hover, .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:focus, .fl-page .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:focus {
	border: 1px solid #00bdf0;
}
.fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:hover, .fl-page .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:hover {
	background-color: #00C9FC;
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button {
		padding-right: 20px;
		padding-left: 20px;
	}
	.fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button, .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button, .fl-page .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:visited {
		font-size: 15px;
	}
}
@media(max-width: 768px) {
	.fl-node-sfoy4a0iexd8.fl-button-wrap, .fl-node-sfoy4a0iexd8 .fl-button-wrap {
		text-align: center;
	}
	.fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button, .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:visited, .fl-page .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button, .fl-page .fl-builder-content .fl-node-sfoy4a0iexd8 a.fl-button:visited {
		font-size: 12px;
	}
}
.fl-node-lhx85dw0yzur.fl-module-heading, .fl-node-lhx85dw0yzur.fl-module-heading :where(a, q, p, span) {
	font-size: 40px;
	line-height: 56px;
}
@media(max-width: 768px) {
	.fl-node-lhx85dw0yzur.fl-module-heading, .fl-node-lhx85dw0yzur.fl-module-heading :where(a, q, p, span) {
		font-size: 26px;
		line-height: 1.5;
		text-align: center;
	}
}
.pp-accordion-button {
	display: flex;
	align-items: center;
	width: 100%;
	cursor: pointer;
	overflow: hidden;
	padding: 10px;
}
.pp-accordion-button-label {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}
.pp-accordion-button-label p {
	margin-bottom: 0;
}
span.pp-accordion-button-icon {
	display: table-cell;
	vertical-align: middle;
}
.pp-accordion-content {
	display: none;
	padding: 15px;
}

.pp-accordion-item .pp-accordion-button,
.pp-accordion-item .pp-accordion-button:hover {
	transition: all 0.1s ease-in;
	-webkit-transition: all 0.1s ease-in;
	-moz-transition: all 0.1s ease-in;
	-ms-transition: all 0.1s ease-in;
	-o-transition: all 0.1s ease-in;
}

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

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

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

.pp-accordion span.pp-accordion-icon {
    padding-right: 10px;
    width: 20px;
	height: auto;
	line-height: 1.4;
    display: table-cell;
	vertical-align: middle;
    text-align: center;
    font-size: 16px;
}

.pp-accordion-button-icon.pp-accordion-close {
	display: none;
}

.pp-accordion-item.pp-accordion-item-active > .pp-accordion-button .pp-accordion-close {
	display: table-cell;
}

.pp-accordion-item.pp-accordion-item-active > .pp-accordion-button .pp-accordion-open {
	display: none;
}
.fl-node-hvjiza9y1sdc .pp-accordion-item {
		margin-bottom: 10px;
	}

 
.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-button {
		background-color: #dddddd;
			}

.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-button:hover,
.fl-node-hvjiza9y1sdc .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
		}


.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-right {
	padding-left: 15px;
}
.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-left {
	padding-right: 15px;
}
 






.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-content {
		background-color: #eeeeee;
								}

.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-button-icon {
	color: #666666;
}

.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-button-icon,
.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-button-icon:before {
	font-size: 14px;
}

.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-icon {
		font-size: 15px;
	width: 18.75px;
			}


.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-icon:before {
	font-size: 15px;
}

																																																																						.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
	font-weight: 700;
}
.fl-node-hvjiza9y1sdc .pp-accordion-item .pp-accordion-content {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.fl-node-pemqitrbun02, .fl-node-pemqitrbun02 .fl-photo {
	text-align: center;
}
/* Clearfix */
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}

.fl-module .pp-notification-wrapper .pp-notification-icon {
	float: left;
	display: table;
	margin-right: 10px;
}
.fl-module .pp-notification-wrapper .pp-notification-icon .pp-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-module .pp-notification-wrapper .pp-notification-icon .dashicons,
.fl-module .pp-notification-wrapper .pp-notification-icon .dashicons-before:before {
	font-size: inherit;
	height: auto;
	width: auto;
}
.fl-module .pp-notification-wrapper .pp-notification-content {
	overflow: hidden;
}
.fl-module .pp-notification-wrapper .pp-notification-inner .pp-notification-content p:last-of-type {
	margin-bottom: 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-2lnxsbgw6ae8 .pp-notification-wrapper {
			background-color: #dddddd;
	}

.fl-node-2lnxsbgw6ae8 .pp-notification-wrapper .pp-notification-inner .pp-notification-icon {
	margin-right: 10px;
}
.fl-node-2lnxsbgw6ae8 .pp-notification-wrapper .pp-notification-inner .pp-notification-icon span.pp-icon {
	color: #000000;	font-size: 16px;}
.fl-node-2lnxsbgw6ae8 .pp-notification-wrapper .pp-notification-inner .pp-notification-content p {
	color: #000000;}

.fl-node-2lnxsbgw6ae8 .pp-notification-wrapper {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-2lnxsbgw6ae8 .pp-notification-wrapper .pp-notification-inner .pp-notification-content p {
	text-align: center;
}
.fl-col-group-equal-height .fl-node-suh3plaxor6y,
.fl-col-group-equal-height .fl-node-suh3plaxor6y .fl-module-content,
.fl-col-group-equal-height .fl-node-suh3plaxor6y .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-suh3plaxor6y .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-suh3plaxor6y .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-suh3plaxor6y .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-large,
.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-medium,
.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-suh3plaxor6y .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-suh3plaxor6y .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-suh3plaxor6y .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-suh3plaxor6y.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-suh3plaxor6y .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-suh3plaxor6y .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-suh3plaxor6y .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-suh3plaxor6y .pp-infobox-description {
			}
	.fl-node-suh3plaxor6y .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-suh3plaxor6y .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-suh3plaxor6y .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-suh3plaxor6y .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-suh3plaxor6y .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-suh3plaxor6y .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-suh3plaxor6y .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-suh3plaxor6y .pp-infobox-icon-inner span.pp-icon,
.fl-node-suh3plaxor6y .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-suh3plaxor6y .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-suh3plaxor6y .pp-infobox:hover {
	}


.fl-node-suh3plaxor6y .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-3-wrapper,
.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-suh3plaxor6y .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-suh3plaxor6y .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-suh3plaxor6y .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-suh3plaxor6y .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-suh3plaxor6y .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-hcvydqrjmak9,
.fl-col-group-equal-height .fl-node-hcvydqrjmak9 .fl-module-content,
.fl-col-group-equal-height .fl-node-hcvydqrjmak9 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-hcvydqrjmak9 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-hcvydqrjmak9 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-hcvydqrjmak9 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-large,
.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-medium,
.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-hcvydqrjmak9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-hcvydqrjmak9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-hcvydqrjmak9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-hcvydqrjmak9.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-hcvydqrjmak9 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-hcvydqrjmak9 .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-hcvydqrjmak9 .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-hcvydqrjmak9 .pp-infobox-description {
			}
	.fl-node-hcvydqrjmak9 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-hcvydqrjmak9 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-hcvydqrjmak9 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-hcvydqrjmak9 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-hcvydqrjmak9 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-hcvydqrjmak9 .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-hcvydqrjmak9 .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-hcvydqrjmak9 .pp-infobox-icon-inner span.pp-icon,
.fl-node-hcvydqrjmak9 .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-hcvydqrjmak9 .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-hcvydqrjmak9 .pp-infobox:hover {
	}


.fl-node-hcvydqrjmak9 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-hcvydqrjmak9 .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-hcvydqrjmak9 .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-hcvydqrjmak9 .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-hcvydqrjmak9 .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-hcvydqrjmak9 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-h7zgqty8seao,
.fl-col-group-equal-height .fl-node-h7zgqty8seao .fl-module-content,
.fl-col-group-equal-height .fl-node-h7zgqty8seao .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-h7zgqty8seao .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-h7zgqty8seao .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-h7zgqty8seao .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-large,
.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-medium,
.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-h7zgqty8seao .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-h7zgqty8seao .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-h7zgqty8seao .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-h7zgqty8seao.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-h7zgqty8seao .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-h7zgqty8seao .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-h7zgqty8seao .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-h7zgqty8seao .pp-infobox-description {
			}
	.fl-node-h7zgqty8seao .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-h7zgqty8seao .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-h7zgqty8seao .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-h7zgqty8seao .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-h7zgqty8seao .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-h7zgqty8seao .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-h7zgqty8seao .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-h7zgqty8seao .pp-infobox-icon-inner span.pp-icon,
.fl-node-h7zgqty8seao .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-h7zgqty8seao .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-h7zgqty8seao .pp-infobox:hover {
	}


.fl-node-h7zgqty8seao .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-3-wrapper,
.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-h7zgqty8seao .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-h7zgqty8seao .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-h7zgqty8seao .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-h7zgqty8seao .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-h7zgqty8seao .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-sjyniq48fgkt,
.fl-col-group-equal-height .fl-node-sjyniq48fgkt .fl-module-content,
.fl-col-group-equal-height .fl-node-sjyniq48fgkt .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-sjyniq48fgkt .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-sjyniq48fgkt .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-sjyniq48fgkt .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-large,
.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-medium,
.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-sjyniq48fgkt .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-sjyniq48fgkt .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-sjyniq48fgkt .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-sjyniq48fgkt.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-sjyniq48fgkt .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-sjyniq48fgkt .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-sjyniq48fgkt .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-sjyniq48fgkt .pp-infobox-description {
			}
	.fl-node-sjyniq48fgkt .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-sjyniq48fgkt .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-sjyniq48fgkt .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-sjyniq48fgkt .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-sjyniq48fgkt .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-sjyniq48fgkt .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-sjyniq48fgkt .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-sjyniq48fgkt .pp-infobox-icon-inner span.pp-icon,
.fl-node-sjyniq48fgkt .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-sjyniq48fgkt .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-sjyniq48fgkt .pp-infobox:hover {
	}


.fl-node-sjyniq48fgkt .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-3-wrapper,
.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-sjyniq48fgkt .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-sjyniq48fgkt .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-sjyniq48fgkt .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-sjyniq48fgkt .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-sjyniq48fgkt .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-ej7s9tqinwvb,
.fl-col-group-equal-height .fl-node-ej7s9tqinwvb .fl-module-content,
.fl-col-group-equal-height .fl-node-ej7s9tqinwvb .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-ej7s9tqinwvb .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-ej7s9tqinwvb .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-ej7s9tqinwvb .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-large,
.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-medium,
.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-ej7s9tqinwvb .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-ej7s9tqinwvb .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-ej7s9tqinwvb .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej7s9tqinwvb.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-ej7s9tqinwvb .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-ej7s9tqinwvb .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-ej7s9tqinwvb .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-ej7s9tqinwvb .pp-infobox-description {
			}
	.fl-node-ej7s9tqinwvb .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-ej7s9tqinwvb .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-ej7s9tqinwvb .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-ej7s9tqinwvb .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-ej7s9tqinwvb .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-ej7s9tqinwvb .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-ej7s9tqinwvb .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-ej7s9tqinwvb .pp-infobox-icon-inner span.pp-icon,
.fl-node-ej7s9tqinwvb .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-ej7s9tqinwvb .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-ej7s9tqinwvb .pp-infobox:hover {
	}


.fl-node-ej7s9tqinwvb .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-3-wrapper,
.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-ej7s9tqinwvb .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-ej7s9tqinwvb .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-ej7s9tqinwvb .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-ej7s9tqinwvb .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-ej7s9tqinwvb .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-4se2z8dvyqro,
.fl-col-group-equal-height .fl-node-4se2z8dvyqro .fl-module-content,
.fl-col-group-equal-height .fl-node-4se2z8dvyqro .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-4se2z8dvyqro .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-4se2z8dvyqro .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-4se2z8dvyqro .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-large,
.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-medium,
.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-4se2z8dvyqro .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-4se2z8dvyqro .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-4se2z8dvyqro .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-4se2z8dvyqro.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-4se2z8dvyqro .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-4se2z8dvyqro .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-4se2z8dvyqro .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-4se2z8dvyqro .pp-infobox-description {
			}
	.fl-node-4se2z8dvyqro .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-4se2z8dvyqro .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-4se2z8dvyqro .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-4se2z8dvyqro .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-4se2z8dvyqro .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-4se2z8dvyqro .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-4se2z8dvyqro .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-4se2z8dvyqro .pp-infobox-icon-inner span.pp-icon,
.fl-node-4se2z8dvyqro .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-4se2z8dvyqro .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-4se2z8dvyqro .pp-infobox:hover {
	}


.fl-node-4se2z8dvyqro .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-3-wrapper,
.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-4se2z8dvyqro .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-4se2z8dvyqro .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-4se2z8dvyqro .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-4se2z8dvyqro .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-4se2z8dvyqro .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-o0v8zhbwx32s,
.fl-col-group-equal-height .fl-node-o0v8zhbwx32s .fl-module-content,
.fl-col-group-equal-height .fl-node-o0v8zhbwx32s .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-o0v8zhbwx32s .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-o0v8zhbwx32s .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-o0v8zhbwx32s .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-large,
.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-medium,
.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-o0v8zhbwx32s .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-o0v8zhbwx32s .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-o0v8zhbwx32s .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-o0v8zhbwx32s.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-o0v8zhbwx32s .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-o0v8zhbwx32s .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-o0v8zhbwx32s .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-o0v8zhbwx32s .pp-infobox-description {
			}
	.fl-node-o0v8zhbwx32s .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-o0v8zhbwx32s .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-o0v8zhbwx32s .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-o0v8zhbwx32s .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-o0v8zhbwx32s .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-o0v8zhbwx32s .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-o0v8zhbwx32s .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-o0v8zhbwx32s .pp-infobox-icon-inner span.pp-icon,
.fl-node-o0v8zhbwx32s .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-o0v8zhbwx32s .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-o0v8zhbwx32s .pp-infobox:hover {
	}


.fl-node-o0v8zhbwx32s .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-3-wrapper,
.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-o0v8zhbwx32s .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-o0v8zhbwx32s .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-o0v8zhbwx32s .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-o0v8zhbwx32s .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-o0v8zhbwx32s .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-8onelcr2s50k,
.fl-col-group-equal-height .fl-node-8onelcr2s50k .fl-module-content,
.fl-col-group-equal-height .fl-node-8onelcr2s50k .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-8onelcr2s50k .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-8onelcr2s50k .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-8onelcr2s50k .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-large,
.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-medium,
.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-8onelcr2s50k .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-8onelcr2s50k .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-8onelcr2s50k .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-8onelcr2s50k.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-8onelcr2s50k .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-8onelcr2s50k .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-8onelcr2s50k .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-8onelcr2s50k .pp-infobox-description {
			}
	.fl-node-8onelcr2s50k .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-8onelcr2s50k .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-8onelcr2s50k .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-8onelcr2s50k .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-8onelcr2s50k .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-8onelcr2s50k .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-8onelcr2s50k .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-8onelcr2s50k .pp-infobox-icon-inner span.pp-icon,
.fl-node-8onelcr2s50k .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-8onelcr2s50k .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-8onelcr2s50k .pp-infobox:hover {
	}


.fl-node-8onelcr2s50k .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-3-wrapper,
.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-8onelcr2s50k .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-8onelcr2s50k .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-8onelcr2s50k .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-8onelcr2s50k .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-8onelcr2s50k .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-ej8dm9rfstxk,
.fl-col-group-equal-height .fl-node-ej8dm9rfstxk .fl-module-content,
.fl-col-group-equal-height .fl-node-ej8dm9rfstxk .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-ej8dm9rfstxk .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-ej8dm9rfstxk .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-ej8dm9rfstxk .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-large,
.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-medium,
.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-ej8dm9rfstxk .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-ej8dm9rfstxk .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-ej8dm9rfstxk .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ej8dm9rfstxk.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-ej8dm9rfstxk .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-ej8dm9rfstxk .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-ej8dm9rfstxk .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-ej8dm9rfstxk .pp-infobox-description {
			}
	.fl-node-ej8dm9rfstxk .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-ej8dm9rfstxk .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-ej8dm9rfstxk .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-ej8dm9rfstxk .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-ej8dm9rfstxk .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-ej8dm9rfstxk .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-ej8dm9rfstxk .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-ej8dm9rfstxk .pp-infobox-icon-inner span.pp-icon,
.fl-node-ej8dm9rfstxk .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-ej8dm9rfstxk .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-ej8dm9rfstxk .pp-infobox:hover {
	}


.fl-node-ej8dm9rfstxk .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-3-wrapper,
.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-ej8dm9rfstxk .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-ej8dm9rfstxk .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-ej8dm9rfstxk .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-ej8dm9rfstxk .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-ej8dm9rfstxk .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-ytm3a7zrbc42,
.fl-col-group-equal-height .fl-node-ytm3a7zrbc42 .fl-module-content,
.fl-col-group-equal-height .fl-node-ytm3a7zrbc42 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-ytm3a7zrbc42 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-ytm3a7zrbc42 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-ytm3a7zrbc42 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-large,
.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-medium,
.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-ytm3a7zrbc42 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-ytm3a7zrbc42 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-ytm3a7zrbc42 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ytm3a7zrbc42.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-ytm3a7zrbc42 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-ytm3a7zrbc42 .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-ytm3a7zrbc42 .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-ytm3a7zrbc42 .pp-infobox-description {
			}
	.fl-node-ytm3a7zrbc42 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-ytm3a7zrbc42 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-ytm3a7zrbc42 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-ytm3a7zrbc42 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-ytm3a7zrbc42 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-ytm3a7zrbc42 .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-ytm3a7zrbc42 .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-ytm3a7zrbc42 .pp-infobox-icon-inner span.pp-icon,
.fl-node-ytm3a7zrbc42 .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-ytm3a7zrbc42 .pp-infobox:hover {
	}


.fl-node-ytm3a7zrbc42 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-ytm3a7zrbc42 .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-ytm3a7zrbc42 .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-ytm3a7zrbc42 .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-ytm3a7zrbc42 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-agqspr80uei7,
.fl-col-group-equal-height .fl-node-agqspr80uei7 .fl-module-content,
.fl-col-group-equal-height .fl-node-agqspr80uei7 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-agqspr80uei7 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-agqspr80uei7 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-agqspr80uei7 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-large,
.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-medium,
.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-agqspr80uei7 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-agqspr80uei7 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-agqspr80uei7 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-agqspr80uei7.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-agqspr80uei7 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-agqspr80uei7 .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-agqspr80uei7 .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-agqspr80uei7 .pp-infobox-description {
			}
	.fl-node-agqspr80uei7 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-agqspr80uei7 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-agqspr80uei7 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-agqspr80uei7 .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-agqspr80uei7 .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-agqspr80uei7 .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-agqspr80uei7 .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-agqspr80uei7 .pp-infobox-icon-inner span.pp-icon,
.fl-node-agqspr80uei7 .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-agqspr80uei7 .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-agqspr80uei7 .pp-infobox:hover {
	}


.fl-node-agqspr80uei7 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-agqspr80uei7 .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-agqspr80uei7 .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-agqspr80uei7 .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-agqspr80uei7 .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-agqspr80uei7 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-6boxfmi89aku,
.fl-col-group-equal-height .fl-node-6boxfmi89aku .fl-module-content,
.fl-col-group-equal-height .fl-node-6boxfmi89aku .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6boxfmi89aku .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6boxfmi89aku .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6boxfmi89aku .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-large,
.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6boxfmi89aku .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6boxfmi89aku .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6boxfmi89aku .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6boxfmi89aku.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6boxfmi89aku .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6boxfmi89aku .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 20px;
			margin-bottom: 10px;
	}
.fl-node-6boxfmi89aku .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-6boxfmi89aku .pp-infobox-description {
			}
	.fl-node-6boxfmi89aku .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6boxfmi89aku .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-6boxfmi89aku .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-6boxfmi89aku .pp-infobox:hover .pp-infobox-description {
			}

	.fl-node-6boxfmi89aku .pp-infobox-image {
							text-align: center			}
	.fl-builder-content .fl-node-6boxfmi89aku .pp-infobox-image img {
		height: auto;
					width: auto;
				max-width: 100%;
					padding: 0px;
			}
		.fl-node-6boxfmi89aku .pp-infobox:hover .pp-infobox-image img {
			}

.fl-node-6boxfmi89aku .pp-infobox-icon-inner span.pp-icon,
.fl-node-6boxfmi89aku .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-6boxfmi89aku .pp-infobox-wrap .pp-infobox {
			background: #f6f6f7;
				text-align: center;
	}


.fl-node-6boxfmi89aku .pp-infobox:hover {
	}


.fl-node-6boxfmi89aku .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-3-wrapper,
.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}


	.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-1 .pp-infobox-description,
	.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-2 .pp-infobox-description {
		float: none;
	}
	.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
	.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		margin: 0 auto;
		float: none;
		justify-content: center;
	}
	/*
	.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
	.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
	.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
	.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
		flex: auto;
	}
	*/


@media only screen and (max-width: 992px) {
	.fl-node-6boxfmi89aku .pp-infobox {
				text-align: center;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-6boxfmi89aku .pp-infobox-wrap .pp-infobox {
				text-align: center;
			}
			
					.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-1 .pp-infobox-description,
			.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-2 .pp-infobox-description {
				float: none;
				text-align: center;
			}
			.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
			.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				margin: 0 auto;
				float: none;
			}
			.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-3 .pp-heading-wrapper,
			.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-3 .pp-icon-wrapper,
			.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-4 .pp-heading-wrapper,
			.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
				flex: auto;
			}
			.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-3 .layout-3-wrapper,
			.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-4 .layout-4-wrapper,
			.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-5 {
				text-align: center;
			}
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
															align-items: center;
													}
	}
.fl-node-6boxfmi89aku .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 26px;
}
.fl-node-6boxfmi89aku .pp-infobox {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6boxfmi89aku .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-builder-content .fl-node-hl1e0czim4wf.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-hl1e0czim4wf.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 700;
	text-align: center;
}
.fl-builder-content .fl-node-x3v8ftn9w0em.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-x3v8ftn9w0em.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 500;
	font-size: 25px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-x3v8ftn9w0em.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-x3v8ftn9w0em.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 25px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-x3v8ftn9w0em.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-x3v8ftn9w0em.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-x3v8ftn9w0em.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-x3v8ftn9w0em.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
.fl-node-or7vnda21u8l.fl-module-heading, .fl-node-or7vnda21u8l.fl-module-heading :where(a, q, p, span) {
	font-size: 40px;
	line-height: 56px;
}
@media(max-width: 1200px) {
	.fl-node-or7vnda21u8l.fl-module-heading, .fl-node-or7vnda21u8l.fl-module-heading :where(a, q, p, span) {
		font-size: 25px;
		line-height: 1.3;
	}
}
@media(max-width: 768px) {
	.fl-node-or7vnda21u8l.fl-module-heading, .fl-node-or7vnda21u8l.fl-module-heading :where(a, q, p, span) {
		text-align: center;
	}
}
.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9,
.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9 .fl-module-content,
.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-large,
.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-medium,
.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-ki3ea7gxq4y9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-ki3ea7gxq4y9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-ki3ea7gxq4y9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ki3ea7gxq4y9.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-ki3ea7gxq4y9 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-ki3ea7gxq4y9 .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 10px;
	}
.fl-node-ki3ea7gxq4y9 .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-ki3ea7gxq4y9 .pp-infobox-description {
			}
	.fl-node-ki3ea7gxq4y9 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-ki3ea7gxq4y9 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-ki3ea7gxq4y9 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-ki3ea7gxq4y9 .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-ki3ea7gxq4y9 .pp-infobox-icon {
					padding: 0px;
					}
	.fl-node-ki3ea7gxq4y9 .pp-infobox-icon-inner span.pp-icon {
			}

	.fl-node-ki3ea7gxq4y9 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-ki3ea7gxq4y9 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-ki3ea7gxq4y9 .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-ki3ea7gxq4y9 .pp-infobox-icon-inner span.pp-icon,
.fl-node-ki3ea7gxq4y9 .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .pp-infobox {
			background: #ffffff;
				text-align: left;
	}


.fl-node-ki3ea7gxq4y9 .pp-infobox:hover {
	}


.fl-node-ki3ea7gxq4y9 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 992px) {
	.fl-node-ki3ea7gxq4y9 .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .pp-infobox {
				text-align: left;
			}
						.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-2 .pp-infobox-description,
			.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				float: left;
			}
			/*
			.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
				flex: 0 1 auto;
			}
			*/
		
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-ki3ea7gxq4y9 .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 16px;
}
.fl-node-ki3ea7gxq4y9 .pp-infobox-description {
	font-size: 16px;
}
.fl-node-ki3ea7gxq4y9 .pp-infobox-icon-inner span.pp-icon, .fl-node-ki3ea7gxq4y9 .pp-infobox-icon-inner span:before {
	font-size: 16px;
}
.fl-node-ki3ea7gxq4y9 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-ki3ea7gxq4y9 .pp-infobox {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0070BE;
	border-left-width: 10px;
}
.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-ki3ea7gxq4y9 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
 .fl-node-ki3ea7gxq4y9 > .fl-module-content {
	margin-bottom:0px;
}
.fl-node-t0x85m27qsgf .fl-separator {
	border-top-width: 4px;
	max-width: 10%;
	margin: 0 0 0 0;
}

		@media (max-width: 1200px) {
		.fl-node-t0x85m27qsgf .fl-separator {
										max-width: 30%;
								}
	}
				@media (max-width: 768px) {
		.fl-node-t0x85m27qsgf .fl-separator {
													margin: auto;
					}
	}
	.fl-node-t0x85m27qsgf .fl-separator {
	border-top-color: #0070BE;
	border-top-style: solid;
}
.fl-node-znv1t9dxsfyu .fl-separator {
	border-top-width: 4px;
	max-width: 10%;
	margin: auto;
}

			.fl-node-znv1t9dxsfyu .fl-separator {
	border-top-color: #0070BE;
	border-top-style: solid;
}
.fl-node-dozavcni2lqf .fl-separator {
	border-top-width: 4px;
	max-width: 10%;
	margin: auto;
}

			.fl-node-dozavcni2lqf .fl-separator {
	border-top-color: #0070BE;
	border-top-style: solid;
}
.fl-builder-content .fl-node-6dise70upcw9.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-6dise70upcw9.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-weight: 500;
	font-size: 25px;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-6dise70upcw9.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-6dise70upcw9.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 25px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content .fl-node-6dise70upcw9.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-6dise70upcw9.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 20px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-6dise70upcw9.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-6dise70upcw9.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
.fl-node-bk0p548cjmhe .fl-separator {
	border-top-width: 4px;
	max-width: 10%;
	margin: 0 0 0 0;
}

			.fl-node-bk0p548cjmhe .fl-separator {
	border-top-color: #0070BE;
	border-top-style: solid;
}
.fl-col-group-equal-height .fl-node-czmqnvdue4p3,
.fl-col-group-equal-height .fl-node-czmqnvdue4p3 .fl-module-content,
.fl-col-group-equal-height .fl-node-czmqnvdue4p3 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-czmqnvdue4p3 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-czmqnvdue4p3 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-czmqnvdue4p3 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-large,
.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-medium,
.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-czmqnvdue4p3 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-czmqnvdue4p3 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-czmqnvdue4p3 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-czmqnvdue4p3.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-czmqnvdue4p3 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-czmqnvdue4p3 .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 10px;
	}
.fl-node-czmqnvdue4p3 .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-czmqnvdue4p3 .pp-infobox-description {
			}
	.fl-node-czmqnvdue4p3 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-czmqnvdue4p3 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-czmqnvdue4p3 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-czmqnvdue4p3 .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-czmqnvdue4p3 .pp-infobox-icon {
					padding: 0px;
					}
	.fl-node-czmqnvdue4p3 .pp-infobox-icon-inner span.pp-icon {
			}

	.fl-node-czmqnvdue4p3 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-czmqnvdue4p3 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-czmqnvdue4p3 .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-czmqnvdue4p3 .pp-infobox-icon-inner span.pp-icon,
.fl-node-czmqnvdue4p3 .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-czmqnvdue4p3 .pp-infobox-wrap .pp-infobox {
			background: #ffffff;
				text-align: left;
	}


.fl-node-czmqnvdue4p3 .pp-infobox:hover {
	}


.fl-node-czmqnvdue4p3 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 992px) {
	.fl-node-czmqnvdue4p3 .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-czmqnvdue4p3 .pp-infobox-wrap .pp-infobox {
				text-align: left;
			}
						.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-2 .pp-infobox-description,
			.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				float: left;
			}
			/*
			.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
				flex: 0 1 auto;
			}
			*/
		
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-czmqnvdue4p3 .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 16px;
}
.fl-node-czmqnvdue4p3 .pp-infobox-description {
	font-size: 16px;
}
.fl-node-czmqnvdue4p3 .pp-infobox-icon-inner span.pp-icon, .fl-node-czmqnvdue4p3 .pp-infobox-icon-inner span:before {
	font-size: 16px;
}
.fl-node-czmqnvdue4p3 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-czmqnvdue4p3 .pp-infobox {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0070BE;
	border-left-width: 10px;
}
.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-czmqnvdue4p3 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-oehi1k6x25ru.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-oehi1k6x25ru.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
.fl-builder-content .fl-node-nqm74jwboztd.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-nqm74jwboztd.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	text-align: center;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-nqm74jwboztd.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-nqm74jwboztd.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: left;
	}
}


.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button,
.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited,
.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button *,
.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited *,
.fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button,
.fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited,
.fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button *,
.fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited * {
	color: #ffffff;
}






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







.fl-node-xfjvc8bol9kn.fl-button-wrap, .fl-node-xfjvc8bol9kn .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button {
	padding-top: 27px;
	padding-right: 70px;
	padding-bottom: 27px;
	padding-left: 70px;
}
.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button, .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited {
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 2px;
	border: 1px solid rgba(243,0,0,0);
	background-color: rgba(255,0,0,0);
}
.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:hover, .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:focus, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:hover, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:focus {
	border: 1px solid #0064b2;
}
.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button, .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited, .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:hover, .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:focus, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:hover, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:focus {
	border-color: #ffffff;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
}
.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:hover, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:hover, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:hover, .fl-page .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:hover {
	background-color: #0070be;
}
@media(max-width: 1200px) {
	.fl-node-xfjvc8bol9kn.fl-button-wrap, .fl-node-xfjvc8bol9kn .fl-button-wrap {
		text-align: center;
	}
	.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button {
		padding-right: 20px;
		padding-left: 20px;
	}
	.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button, .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited {
		font-size: 16px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button, .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button, .fl-page .fl-builder-content .fl-node-xfjvc8bol9kn a.fl-button:visited {
		font-size: 14px;
	}
}
.fl-builder-content .fl-node-nke4sw83jb5u.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-nke4sw83jb5u.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	text-align: center;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-nke4sw83jb5u.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-nke4sw83jb5u.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: left;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-obljicxnv857.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-obljicxnv857.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: left;
	}
}
.fl-col-group-equal-height .fl-node-magf1vuz6to9,
.fl-col-group-equal-height .fl-node-magf1vuz6to9 .fl-module-content,
.fl-col-group-equal-height .fl-node-magf1vuz6to9 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-magf1vuz6to9 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-magf1vuz6to9 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-magf1vuz6to9 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-large,
.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-medium,
.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-magf1vuz6to9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-magf1vuz6to9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-magf1vuz6to9 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-magf1vuz6to9.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-magf1vuz6to9 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-magf1vuz6to9 .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 10px;
	}
.fl-node-magf1vuz6to9 .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-magf1vuz6to9 .pp-infobox-description {
			}
	.fl-node-magf1vuz6to9 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-magf1vuz6to9 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-magf1vuz6to9 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-magf1vuz6to9 .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-magf1vuz6to9 .pp-infobox-icon {
					padding: 0px;
					}
	.fl-node-magf1vuz6to9 .pp-infobox-icon-inner span.pp-icon {
			}

	.fl-node-magf1vuz6to9 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-magf1vuz6to9 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-magf1vuz6to9 .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-magf1vuz6to9 .pp-infobox-icon-inner span.pp-icon,
.fl-node-magf1vuz6to9 .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-magf1vuz6to9 .pp-infobox-wrap .pp-infobox {
			background: #ffffff;
				text-align: left;
	}


.fl-node-magf1vuz6to9 .pp-infobox:hover {
	}


.fl-node-magf1vuz6to9 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 992px) {
	.fl-node-magf1vuz6to9 .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-magf1vuz6to9 .pp-infobox-wrap .pp-infobox {
				text-align: left;
			}
						.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-2 .pp-infobox-description,
			.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				float: left;
			}
			/*
			.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
				flex: 0 1 auto;
			}
			*/
		
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-magf1vuz6to9 .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 16px;
}
.fl-node-magf1vuz6to9 .pp-infobox-description {
	font-size: 16px;
}
.fl-node-magf1vuz6to9 .pp-infobox-icon-inner span.pp-icon, .fl-node-magf1vuz6to9 .pp-infobox-icon-inner span:before {
	font-size: 16px;
}
.fl-node-magf1vuz6to9 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-magf1vuz6to9 .pp-infobox {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0070BE;
	border-left-width: 10px;
}
.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-magf1vuz6to9 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.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-7c85pmrnvw61 > .fl-module-content {
	margin: 0;
}

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


.fl-node-7c85pmrnvw61 .pp-modal-trigger .pp-button-icon {
	}

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


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

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

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




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

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

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

.fl-node-7c85pmrnvw61 .pp-modal-close,
#modal-7c85pmrnvw61 .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-7c85pmrnvw61 .pp-modal-close:hover,
#modal-7c85pmrnvw61 .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-7c85pmrnvw61 .pp-modal-close.box-top-right,
#modal-7c85pmrnvw61 .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-7c85pmrnvw61 .pp-modal-close.box-top-left,
#modal-7c85pmrnvw61 .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-7c85pmrnvw61 .pp-modal-close.win-top-right,
#modal-7c85pmrnvw61 .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-7c85pmrnvw61 .pp-modal-close.win-top-left,
#modal-7c85pmrnvw61 .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-7c85pmrnvw61 .pp-modal-close .bar-wrap,
#modal-7c85pmrnvw61 .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-7c85pmrnvw61 .pp-modal-close .bar-wrap span,
#modal-7c85pmrnvw61 .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-7c85pmrnvw61 .pp-modal-close:hover .bar-wrap span,
#modal-7c85pmrnvw61 .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-7c85pmrnvw61 .pp-modal-container.fadeIn.animated,
#modal-7c85pmrnvw61 .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-7c85pmrnvw61 .pp-modal-container.fadeOut.animated,
#modal-7c85pmrnvw61 .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-7c85pmrnvw61 .has-overlay-animation .pp-modal-container,
#modal-7c85pmrnvw61.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-7c85pmrnvw61 .pp-modal.layout-standard,
    #modal-7c85pmrnvw61 .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-7c85pmrnvw61 .pp-modal-button {
	text-align: left;
}
.fl-node-7c85pmrnvw61 .pp-modal-trigger, .fl-node-7c85pmrnvw61 .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-col-group-equal-height .fl-node-vrzijsgaey2u,
.fl-col-group-equal-height .fl-node-vrzijsgaey2u .fl-module-content,
.fl-col-group-equal-height .fl-node-vrzijsgaey2u .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-vrzijsgaey2u .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-vrzijsgaey2u .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-vrzijsgaey2u .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-large,
.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-medium,
.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-vrzijsgaey2u .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-vrzijsgaey2u .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-vrzijsgaey2u .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-vrzijsgaey2u.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-vrzijsgaey2u .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-vrzijsgaey2u .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 10px;
	}
.fl-node-vrzijsgaey2u .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-vrzijsgaey2u .pp-infobox-description {
			}
	.fl-node-vrzijsgaey2u .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-vrzijsgaey2u .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-vrzijsgaey2u .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-vrzijsgaey2u .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-vrzijsgaey2u .pp-infobox-icon {
					padding: 0px;
					}
	.fl-node-vrzijsgaey2u .pp-infobox-icon-inner span.pp-icon {
			}

	.fl-node-vrzijsgaey2u .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-vrzijsgaey2u .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-vrzijsgaey2u .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-vrzijsgaey2u .pp-infobox-icon-inner span.pp-icon,
.fl-node-vrzijsgaey2u .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-vrzijsgaey2u .pp-infobox-wrap .pp-infobox {
			background: #ffffff;
				text-align: left;
	}


.fl-node-vrzijsgaey2u .pp-infobox:hover {
	}


.fl-node-vrzijsgaey2u .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-3-wrapper,
.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 992px) {
	.fl-node-vrzijsgaey2u .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-vrzijsgaey2u .pp-infobox-wrap .pp-infobox {
				text-align: left;
			}
						.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-2 .pp-infobox-description,
			.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				float: left;
			}
			/*
			.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
				flex: 0 1 auto;
			}
			*/
		
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-vrzijsgaey2u .pp-infobox-title-wrapper .pp-infobox-title {
	font-size: 16px;
}
.fl-node-vrzijsgaey2u .pp-infobox-description {
	font-size: 16px;
}
.fl-node-vrzijsgaey2u .pp-infobox-icon-inner span.pp-icon, .fl-node-vrzijsgaey2u .pp-infobox-icon-inner span:before {
	font-size: 16px;
}
.fl-node-vrzijsgaey2u .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-vrzijsgaey2u .pp-infobox {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #0070BE;
	border-left-width: 10px;
}
.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-vrzijsgaey2u .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
body:not(.fl-builder-edit) .fl-node-29o6afliubry > .fl-module-content {
	margin: 0;
}

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


.fl-node-29o6afliubry .pp-modal-trigger .pp-button-icon {
	}

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


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

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

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




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

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

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

.fl-node-29o6afliubry .pp-modal-close,
#modal-29o6afliubry .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-29o6afliubry .pp-modal-close:hover,
#modal-29o6afliubry .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-29o6afliubry .pp-modal-close.box-top-right,
#modal-29o6afliubry .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-29o6afliubry .pp-modal-close.box-top-left,
#modal-29o6afliubry .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-29o6afliubry .pp-modal-close.win-top-right,
#modal-29o6afliubry .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-29o6afliubry .pp-modal-close.win-top-left,
#modal-29o6afliubry .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-29o6afliubry .pp-modal-close .bar-wrap,
#modal-29o6afliubry .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-29o6afliubry .pp-modal-close .bar-wrap span,
#modal-29o6afliubry .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-29o6afliubry .pp-modal-close:hover .bar-wrap span,
#modal-29o6afliubry .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-29o6afliubry .pp-modal-container.fadeIn.animated,
#modal-29o6afliubry .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-29o6afliubry .pp-modal-container.fadeOut.animated,
#modal-29o6afliubry .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-29o6afliubry .has-overlay-animation .pp-modal-container,
#modal-29o6afliubry.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-29o6afliubry .pp-modal.layout-standard,
    #modal-29o6afliubry .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-29o6afliubry .pp-modal-button {
	text-align: left;
}
.fl-node-29o6afliubry .pp-modal-trigger, .fl-node-29o6afliubry .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
body:not(.fl-builder-edit) .fl-node-ioec45k7pdnq > .fl-module-content {
	margin: 0;
}

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


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

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


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

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

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




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

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

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

.fl-node-ioec45k7pdnq .pp-modal-close,
#modal-ioec45k7pdnq .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-ioec45k7pdnq .pp-modal-close:hover,
#modal-ioec45k7pdnq .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-ioec45k7pdnq .pp-modal-close.box-top-right,
#modal-ioec45k7pdnq .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-ioec45k7pdnq .pp-modal-close.box-top-left,
#modal-ioec45k7pdnq .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-ioec45k7pdnq .pp-modal-close.win-top-right,
#modal-ioec45k7pdnq .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-ioec45k7pdnq .pp-modal-close.win-top-left,
#modal-ioec45k7pdnq .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-ioec45k7pdnq .pp-modal-close .bar-wrap,
#modal-ioec45k7pdnq .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-ioec45k7pdnq .pp-modal-close .bar-wrap span,
#modal-ioec45k7pdnq .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-ioec45k7pdnq .pp-modal-close:hover .bar-wrap span,
#modal-ioec45k7pdnq .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-ioec45k7pdnq .pp-modal-container.fadeIn.animated,
#modal-ioec45k7pdnq .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-ioec45k7pdnq .pp-modal-container.fadeOut.animated,
#modal-ioec45k7pdnq .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-ioec45k7pdnq .has-overlay-animation .pp-modal-container,
#modal-ioec45k7pdnq.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-ioec45k7pdnq .pp-modal.layout-standard,
    #modal-ioec45k7pdnq .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-ioec45k7pdnq .pp-modal-button {
	text-align: left;
}
.fl-node-ioec45k7pdnq .pp-modal-trigger, .fl-node-ioec45k7pdnq .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
body:not(.fl-builder-edit) .fl-node-ypemht2s571x > .fl-module-content {
	margin: 0;
}

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


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

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


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

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

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




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

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

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

.fl-node-ypemht2s571x .pp-modal-close,
#modal-ypemht2s571x .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-ypemht2s571x .pp-modal-close:hover,
#modal-ypemht2s571x .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-ypemht2s571x .pp-modal-close.box-top-right,
#modal-ypemht2s571x .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-ypemht2s571x .pp-modal-close.box-top-left,
#modal-ypemht2s571x .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-ypemht2s571x .pp-modal-close.win-top-right,
#modal-ypemht2s571x .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-ypemht2s571x .pp-modal-close.win-top-left,
#modal-ypemht2s571x .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-ypemht2s571x .pp-modal-close .bar-wrap,
#modal-ypemht2s571x .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-ypemht2s571x .pp-modal-close .bar-wrap span,
#modal-ypemht2s571x .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-ypemht2s571x .pp-modal-close:hover .bar-wrap span,
#modal-ypemht2s571x .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-ypemht2s571x .pp-modal-container.fadeIn.animated,
#modal-ypemht2s571x .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-ypemht2s571x .pp-modal-container.fadeOut.animated,
#modal-ypemht2s571x .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-ypemht2s571x .has-overlay-animation .pp-modal-container,
#modal-ypemht2s571x.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-ypemht2s571x .pp-modal.layout-standard,
    #modal-ypemht2s571x .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-ypemht2s571x .pp-modal-button {
	text-align: left;
}
.fl-node-ypemht2s571x .pp-modal-trigger, .fl-node-ypemht2s571x .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
body:not(.fl-builder-edit) .fl-node-l5abe4o19nyx > .fl-module-content {
	margin: 0;
}

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


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

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


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

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

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




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

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

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

.fl-node-l5abe4o19nyx .pp-modal-close,
#modal-l5abe4o19nyx .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-l5abe4o19nyx .pp-modal-close:hover,
#modal-l5abe4o19nyx .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-l5abe4o19nyx .pp-modal-close.box-top-right,
#modal-l5abe4o19nyx .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-l5abe4o19nyx .pp-modal-close.box-top-left,
#modal-l5abe4o19nyx .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-l5abe4o19nyx .pp-modal-close.win-top-right,
#modal-l5abe4o19nyx .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-l5abe4o19nyx .pp-modal-close.win-top-left,
#modal-l5abe4o19nyx .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-l5abe4o19nyx .pp-modal-close .bar-wrap,
#modal-l5abe4o19nyx .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-l5abe4o19nyx .pp-modal-close .bar-wrap span,
#modal-l5abe4o19nyx .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-l5abe4o19nyx .pp-modal-close:hover .bar-wrap span,
#modal-l5abe4o19nyx .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-l5abe4o19nyx .pp-modal-container.fadeIn.animated,
#modal-l5abe4o19nyx .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-l5abe4o19nyx .pp-modal-container.fadeOut.animated,
#modal-l5abe4o19nyx .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-l5abe4o19nyx .has-overlay-animation .pp-modal-container,
#modal-l5abe4o19nyx.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-l5abe4o19nyx .pp-modal.layout-standard,
    #modal-l5abe4o19nyx .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-l5abe4o19nyx .pp-modal-button {
	text-align: left;
}
.fl-node-l5abe4o19nyx .pp-modal-trigger, .fl-node-l5abe4o19nyx .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-col-group-equal-height .fl-node-u4kzymq0j35n,
.fl-col-group-equal-height .fl-node-u4kzymq0j35n .fl-module-content,
.fl-col-group-equal-height .fl-node-u4kzymq0j35n .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-u4kzymq0j35n .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-u4kzymq0j35n .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-u4kzymq0j35n .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-large,
.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-medium,
.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-u4kzymq0j35n .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-u4kzymq0j35n .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-u4kzymq0j35n .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-u4kzymq0j35n.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-u4kzymq0j35n .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-u4kzymq0j35n .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 30px;
	}
.fl-node-u4kzymq0j35n .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-u4kzymq0j35n .pp-infobox-description {
			}
	.fl-node-u4kzymq0j35n .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-u4kzymq0j35n .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-u4kzymq0j35n .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-u4kzymq0j35n .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-u4kzymq0j35n .pp-infobox-icon {
					padding: 0px;
					}
	.fl-node-u4kzymq0j35n .pp-infobox-icon-inner span.pp-icon {
			}

	.fl-node-u4kzymq0j35n .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-u4kzymq0j35n .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-u4kzymq0j35n .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-u4kzymq0j35n .pp-infobox-icon-inner span.pp-icon,
.fl-node-u4kzymq0j35n .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-u4kzymq0j35n .pp-infobox-wrap .pp-infobox {
			background: rgba(255,255,255,0);
				text-align: left;
	}


.fl-node-u4kzymq0j35n .pp-infobox:hover {
	}


.fl-node-u4kzymq0j35n .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-3-wrapper,
.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 992px) {
	.fl-node-u4kzymq0j35n .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-u4kzymq0j35n .pp-infobox-wrap .pp-infobox {
				text-align: left;
			}
						.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-2 .pp-infobox-description,
			.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				float: left;
			}
			/*
			.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
				flex: 0 1 auto;
			}
			*/
		
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-u4kzymq0j35n .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 300;
}
.fl-node-u4kzymq0j35n .pp-infobox-description {
	font-size: 16px;
}
.fl-node-u4kzymq0j35n .pp-infobox-icon-inner span.pp-icon, .fl-node-u4kzymq0j35n .pp-infobox-icon-inner span:before {
	font-size: 16px;
}
.fl-node-u4kzymq0j35n .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-u4kzymq0j35n .pp-infobox {
	padding-top: 21px;
	padding-right: 27px;
	padding-bottom: 200px;
	padding-left: 27px;
}
.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-u4kzymq0j35n .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-a1e53t4pnyv6,
.fl-col-group-equal-height .fl-node-a1e53t4pnyv6 .fl-module-content,
.fl-col-group-equal-height .fl-node-a1e53t4pnyv6 .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-a1e53t4pnyv6 .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-a1e53t4pnyv6 .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-a1e53t4pnyv6 .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-large,
.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-medium,
.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-a1e53t4pnyv6 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-a1e53t4pnyv6 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-a1e53t4pnyv6 .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-a1e53t4pnyv6.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-a1e53t4pnyv6 .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-a1e53t4pnyv6 .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 30px;
	}
.fl-node-a1e53t4pnyv6 .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-a1e53t4pnyv6 .pp-infobox-description {
			}
	.fl-node-a1e53t4pnyv6 .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-a1e53t4pnyv6 .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-a1e53t4pnyv6 .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-a1e53t4pnyv6 .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-a1e53t4pnyv6 .pp-infobox-icon {
					padding: 0px;
					}
	.fl-node-a1e53t4pnyv6 .pp-infobox-icon-inner span.pp-icon {
			}

	.fl-node-a1e53t4pnyv6 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-a1e53t4pnyv6 .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-a1e53t4pnyv6 .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-a1e53t4pnyv6 .pp-infobox-icon-inner span.pp-icon,
.fl-node-a1e53t4pnyv6 .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .pp-infobox {
			background: rgba(255,255,255,0);
				text-align: left;
	}


.fl-node-a1e53t4pnyv6 .pp-infobox:hover {
	}


.fl-node-a1e53t4pnyv6 .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-3-wrapper,
.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 992px) {
	.fl-node-a1e53t4pnyv6 .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .pp-infobox {
				text-align: left;
			}
						.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-2 .pp-infobox-description,
			.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				float: left;
			}
			/*
			.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
				flex: 0 1 auto;
			}
			*/
		
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-a1e53t4pnyv6 .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 300;
}
.fl-node-a1e53t4pnyv6 .pp-infobox-description {
	font-size: 16px;
}
.fl-node-a1e53t4pnyv6 .pp-infobox-icon-inner span.pp-icon, .fl-node-a1e53t4pnyv6 .pp-infobox-icon-inner span:before {
	font-size: 16px;
}
.fl-node-a1e53t4pnyv6 .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-a1e53t4pnyv6 .pp-infobox {
	padding-top: 21px;
	padding-right: 27px;
	padding-bottom: 200px;
	padding-left: 27px;
}
.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-a1e53t4pnyv6 .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-ysuhwljex6ci,
.fl-col-group-equal-height .fl-node-ysuhwljex6ci .fl-module-content,
.fl-col-group-equal-height .fl-node-ysuhwljex6ci .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-ysuhwljex6ci .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-ysuhwljex6ci .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-ysuhwljex6ci .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-large,
.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-medium,
.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-ysuhwljex6ci .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-ysuhwljex6ci .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-ysuhwljex6ci .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-ysuhwljex6ci.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-ysuhwljex6ci .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-ysuhwljex6ci .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 30px;
	}
.fl-node-ysuhwljex6ci .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-ysuhwljex6ci .pp-infobox-description {
			}
	.fl-node-ysuhwljex6ci .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-ysuhwljex6ci .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-ysuhwljex6ci .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-ysuhwljex6ci .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-ysuhwljex6ci .pp-infobox-icon {
					padding: 0px;
					}
	.fl-node-ysuhwljex6ci .pp-infobox-icon-inner span.pp-icon {
			}

	.fl-node-ysuhwljex6ci .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-ysuhwljex6ci .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-ysuhwljex6ci .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-ysuhwljex6ci .pp-infobox-icon-inner span.pp-icon,
.fl-node-ysuhwljex6ci .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-ysuhwljex6ci .pp-infobox-wrap .pp-infobox {
			background: rgba(255,255,255,0);
				text-align: left;
	}


.fl-node-ysuhwljex6ci .pp-infobox:hover {
	}


.fl-node-ysuhwljex6ci .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-3-wrapper,
.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 992px) {
	.fl-node-ysuhwljex6ci .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-ysuhwljex6ci .pp-infobox-wrap .pp-infobox {
				text-align: left;
			}
						.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-2 .pp-infobox-description,
			.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				float: left;
			}
			/*
			.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
				flex: 0 1 auto;
			}
			*/
		
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-ysuhwljex6ci .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 300;
}
.fl-node-ysuhwljex6ci .pp-infobox-description {
	font-size: 16px;
}
.fl-node-ysuhwljex6ci .pp-infobox-icon-inner span.pp-icon, .fl-node-ysuhwljex6ci .pp-infobox-icon-inner span:before {
	font-size: 16px;
}
.fl-node-ysuhwljex6ci .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-ysuhwljex6ci .pp-infobox {
	padding-top: 21px;
	padding-right: 27px;
	padding-bottom: 200px;
	padding-left: 27px;
}
.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-ysuhwljex6ci .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
.fl-col-group-equal-height .fl-node-6vntjsr9832m,
.fl-col-group-equal-height .fl-node-6vntjsr9832m .fl-module-content,
.fl-col-group-equal-height .fl-node-6vntjsr9832m .fl-module-content .pp-infobox-wrap,
.fl-col-group-equal-height .fl-node-6vntjsr9832m .fl-module-content .pp-infobox-wrap .pp-infobox,
.fl-col-group-equal-height .fl-node-6vntjsr9832m .fl-module-content .pp-infobox-wrap > .pp-infobox-link,
.fl-col-group-equal-height .fl-node-6vntjsr9832m .fl-module-content .pp-infobox-wrap > .pp-more-link {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	-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-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-large,
.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-medium,
.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-mobile {
	display: none;
}
.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-desktop {
	display: flex;
}
.fl-col-group-equal-height.fl-col-group-align-center .fl-node-6vntjsr9832m .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: center;
}
.fl-col-group-equal-height.fl-col-group-align-top .fl-node-6vntjsr9832m .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-start;
}
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-node-6vntjsr9832m .fl-module-content .pp-infobox-wrap .pp-infobox {
	justify-content: flex-end;
}

@media only screen and (max-width: 1200px) {
	.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-large {
		display: flex;
	}
}
@media only screen and (max-width: 992px) {
	.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-medium {
		display: flex;
	}
}
@media only screen and (max-width: 768px) {
	.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-desktop {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-large {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-medium {
		display: none;
	}
	.fl-col-group-equal-height .fl-node-6vntjsr9832m.fl-visible-mobile {
		display: flex;
	}
}

.fl-node-6vntjsr9832m .pp-infobox .pp-infobox-title-prefix {
		display: none;
				}
.fl-node-6vntjsr9832m .pp-infobox-title-wrapper .pp-infobox-title {
			margin-top: 10px;
			margin-bottom: 30px;
	}
.fl-node-6vntjsr9832m .pp-infobox-title-wrapper .pp-infobox-title a {
	}
.fl-node-6vntjsr9832m .pp-infobox-description {
			}
	.fl-node-6vntjsr9832m .pp-infobox:hover .pp-infobox-title-prefix {
			}
	.fl-node-6vntjsr9832m .pp-infobox:hover .pp-infobox-title {
			}
	.fl-node-6vntjsr9832m .pp-infobox:hover .pp-infobox-title a {
			}
	.fl-node-6vntjsr9832m .pp-infobox:hover .pp-infobox-description {
			}
	.fl-node-6vntjsr9832m .pp-infobox-icon {
					padding: 0px;
					}
	.fl-node-6vntjsr9832m .pp-infobox-icon-inner span.pp-icon {
			}

	.fl-node-6vntjsr9832m .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-6vntjsr9832m .pp-infobox:hover .pp-infobox-icon {
			}
	.fl-node-6vntjsr9832m .pp-infobox:hover .pp-infobox-icon span.pp-icon {
			}

.fl-node-6vntjsr9832m .pp-infobox-icon-inner span.pp-icon,
.fl-node-6vntjsr9832m .pp-infobox-image img {
		border-top-left-radius: px;
	border-top-right-radius: px;
	border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}

.fl-node-6vntjsr9832m .pp-infobox-wrap .pp-infobox {
			background: rgba(255,255,255,0);
				text-align: left;
	}


.fl-node-6vntjsr9832m .pp-infobox:hover {
	}


.fl-node-6vntjsr9832m .pp-infobox .animated {
	-webkit-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-o-animation-duration: 500ms;
	-ms-animation-duration: 500ms;
	animation-duration: 500ms;
}

.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-3-wrapper,
.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-4-wrapper {
								}


.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-1 .pp-heading-wrapper,
.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
	display: flex;
	align-items: center;
}

	.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-2 .pp-infobox-description,
	.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
		float: left;
	}
	/*.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
		flex: 0 1 auto;
	}*/



@media only screen and (max-width: 992px) {
	.fl-node-6vntjsr9832m .pp-infobox {
				text-align: left;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-6vntjsr9832m .pp-infobox-wrap .pp-infobox {
				text-align: left;
			}
						.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-2 .pp-infobox-description,
			.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-2 .pp-heading-wrapper {
				float: left;
			}
			/*
			.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-4 .pp-heading-wrapper {
				flex: 0 1 auto;
			}
			*/
		
		
				
}

	@media only screen and (max-width: 480px) {
		.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-3-wrapper,
		.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-4-wrapper {
			flex-direction: column;
											align-items: flex-start;
																	}
	}
.fl-node-6vntjsr9832m .pp-infobox-title-wrapper .pp-infobox-title {
	font-weight: 300;
}
.fl-node-6vntjsr9832m .pp-infobox-description {
	font-size: 16px;
}
.fl-node-6vntjsr9832m .pp-infobox-icon-inner span.pp-icon, .fl-node-6vntjsr9832m .pp-infobox-icon-inner span:before {
	font-size: 16px;
}
.fl-node-6vntjsr9832m .pp-infobox-icon-inner {
	width: 0px;
	height: 0px;
}
.fl-node-6vntjsr9832m .pp-infobox {
	padding-top: 21px;
	padding-right: 27px;
	padding-bottom: 200px;
	padding-left: 27px;
}
.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-3 .pp-icon-wrapper {
	margin-right: 10px;
}
.fl-node-6vntjsr9832m .pp-infobox-wrap .layout-4 .pp-icon-wrapper {
	margin-left: 10px;
}
body:not(.fl-builder-edit) .fl-node-3l45kygeshji > .fl-module-content {
	margin: 0;
}

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


.fl-node-3l45kygeshji .pp-modal-trigger .pp-button-icon {
	}

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


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

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

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




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

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

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

.fl-node-3l45kygeshji .pp-modal-close,
#modal-3l45kygeshji .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-3l45kygeshji .pp-modal-close:hover,
#modal-3l45kygeshji .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-3l45kygeshji .pp-modal-close.box-top-right,
#modal-3l45kygeshji .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-3l45kygeshji .pp-modal-close.box-top-left,
#modal-3l45kygeshji .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-3l45kygeshji .pp-modal-close.win-top-right,
#modal-3l45kygeshji .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-3l45kygeshji .pp-modal-close.win-top-left,
#modal-3l45kygeshji .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-3l45kygeshji .pp-modal-close .bar-wrap,
#modal-3l45kygeshji .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-3l45kygeshji .pp-modal-close .bar-wrap span,
#modal-3l45kygeshji .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-3l45kygeshji .pp-modal-close:hover .bar-wrap span,
#modal-3l45kygeshji .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-3l45kygeshji .pp-modal-container.fadeIn.animated,
#modal-3l45kygeshji .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-3l45kygeshji .pp-modal-container.fadeOut.animated,
#modal-3l45kygeshji .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-3l45kygeshji .has-overlay-animation .pp-modal-container,
#modal-3l45kygeshji.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-3l45kygeshji .pp-modal.layout-standard,
    #modal-3l45kygeshji .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-3l45kygeshji .pp-modal-button {
	text-align: left;
}
.fl-node-3l45kygeshji .pp-modal-trigger, .fl-node-3l45kygeshji .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
body:not(.fl-builder-edit) .fl-node-tknh2q0zoij8 > .fl-module-content {
	margin: 0;
}

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


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

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


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

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

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




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

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

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

.fl-node-tknh2q0zoij8 .pp-modal-close,
#modal-tknh2q0zoij8 .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-tknh2q0zoij8 .pp-modal-close:hover,
#modal-tknh2q0zoij8 .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-tknh2q0zoij8 .pp-modal-close.box-top-right,
#modal-tknh2q0zoij8 .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-tknh2q0zoij8 .pp-modal-close.box-top-left,
#modal-tknh2q0zoij8 .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-tknh2q0zoij8 .pp-modal-close.win-top-right,
#modal-tknh2q0zoij8 .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-tknh2q0zoij8 .pp-modal-close.win-top-left,
#modal-tknh2q0zoij8 .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-tknh2q0zoij8 .pp-modal-close .bar-wrap,
#modal-tknh2q0zoij8 .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-tknh2q0zoij8 .pp-modal-close .bar-wrap span,
#modal-tknh2q0zoij8 .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-tknh2q0zoij8 .pp-modal-close:hover .bar-wrap span,
#modal-tknh2q0zoij8 .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-tknh2q0zoij8 .pp-modal-container.fadeIn.animated,
#modal-tknh2q0zoij8 .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-tknh2q0zoij8 .pp-modal-container.fadeOut.animated,
#modal-tknh2q0zoij8 .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-tknh2q0zoij8 .has-overlay-animation .pp-modal-container,
#modal-tknh2q0zoij8.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-tknh2q0zoij8 .pp-modal.layout-standard,
    #modal-tknh2q0zoij8 .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-tknh2q0zoij8 .pp-modal-button {
	text-align: left;
}
.fl-node-tknh2q0zoij8 .pp-modal-trigger, .fl-node-tknh2q0zoij8 .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
body:not(.fl-builder-edit) .fl-node-923akj47ywth > .fl-module-content {
	margin: 0;
}

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


.fl-node-923akj47ywth .pp-modal-trigger .pp-button-icon {
	}

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


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

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

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




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

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

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

.fl-node-923akj47ywth .pp-modal-close,
#modal-923akj47ywth .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-923akj47ywth .pp-modal-close:hover,
#modal-923akj47ywth .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-923akj47ywth .pp-modal-close.box-top-right,
#modal-923akj47ywth .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-923akj47ywth .pp-modal-close.box-top-left,
#modal-923akj47ywth .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-923akj47ywth .pp-modal-close.win-top-right,
#modal-923akj47ywth .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-923akj47ywth .pp-modal-close.win-top-left,
#modal-923akj47ywth .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-923akj47ywth .pp-modal-close .bar-wrap,
#modal-923akj47ywth .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-923akj47ywth .pp-modal-close .bar-wrap span,
#modal-923akj47ywth .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-923akj47ywth .pp-modal-close:hover .bar-wrap span,
#modal-923akj47ywth .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-923akj47ywth .pp-modal-container.fadeIn.animated,
#modal-923akj47ywth .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-923akj47ywth .pp-modal-container.fadeOut.animated,
#modal-923akj47ywth .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-923akj47ywth .has-overlay-animation .pp-modal-container,
#modal-923akj47ywth.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-923akj47ywth .pp-modal.layout-standard,
    #modal-923akj47ywth .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-923akj47ywth .pp-modal-button {
	text-align: left;
}
.fl-node-923akj47ywth .pp-modal-trigger, .fl-node-923akj47ywth .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
body:not(.fl-builder-edit) .fl-node-83m4iqf07wlx > .fl-module-content {
	margin: 0;
}

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


.fl-node-83m4iqf07wlx .pp-modal-trigger .pp-button-icon {
	}

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


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

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

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




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

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

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

.fl-node-83m4iqf07wlx .pp-modal-close,
#modal-83m4iqf07wlx .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-83m4iqf07wlx .pp-modal-close:hover,
#modal-83m4iqf07wlx .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-83m4iqf07wlx .pp-modal-close.box-top-right,
#modal-83m4iqf07wlx .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-83m4iqf07wlx .pp-modal-close.box-top-left,
#modal-83m4iqf07wlx .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-83m4iqf07wlx .pp-modal-close.win-top-right,
#modal-83m4iqf07wlx .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-83m4iqf07wlx .pp-modal-close.win-top-left,
#modal-83m4iqf07wlx .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-83m4iqf07wlx .pp-modal-close .bar-wrap,
#modal-83m4iqf07wlx .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-83m4iqf07wlx .pp-modal-close .bar-wrap span,
#modal-83m4iqf07wlx .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-83m4iqf07wlx .pp-modal-close:hover .bar-wrap span,
#modal-83m4iqf07wlx .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-83m4iqf07wlx .pp-modal-container.fadeIn.animated,
#modal-83m4iqf07wlx .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-83m4iqf07wlx .pp-modal-container.fadeOut.animated,
#modal-83m4iqf07wlx .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-83m4iqf07wlx .has-overlay-animation .pp-modal-container,
#modal-83m4iqf07wlx.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-83m4iqf07wlx .pp-modal.layout-standard,
    #modal-83m4iqf07wlx .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-83m4iqf07wlx .pp-modal-button {
	text-align: left;
}
.fl-node-83m4iqf07wlx .pp-modal-trigger, .fl-node-83m4iqf07wlx .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
body:not(.fl-builder-edit) .fl-node-e0wbo4rzpl86 > .fl-module-content {
	margin: 0;
}

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


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

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


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

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

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




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

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

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

.fl-node-e0wbo4rzpl86 .pp-modal-close,
#modal-e0wbo4rzpl86 .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-e0wbo4rzpl86 .pp-modal-close:hover,
#modal-e0wbo4rzpl86 .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-e0wbo4rzpl86 .pp-modal-close.box-top-right,
#modal-e0wbo4rzpl86 .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-e0wbo4rzpl86 .pp-modal-close.box-top-left,
#modal-e0wbo4rzpl86 .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-e0wbo4rzpl86 .pp-modal-close.win-top-right,
#modal-e0wbo4rzpl86 .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-e0wbo4rzpl86 .pp-modal-close.win-top-left,
#modal-e0wbo4rzpl86 .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-e0wbo4rzpl86 .pp-modal-close .bar-wrap,
#modal-e0wbo4rzpl86 .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-e0wbo4rzpl86 .pp-modal-close .bar-wrap span,
#modal-e0wbo4rzpl86 .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-e0wbo4rzpl86 .pp-modal-close:hover .bar-wrap span,
#modal-e0wbo4rzpl86 .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-e0wbo4rzpl86 .pp-modal-container.fadeIn.animated,
#modal-e0wbo4rzpl86 .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-e0wbo4rzpl86 .pp-modal-container.fadeOut.animated,
#modal-e0wbo4rzpl86 .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-e0wbo4rzpl86 .has-overlay-animation .pp-modal-container,
#modal-e0wbo4rzpl86.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-e0wbo4rzpl86 .pp-modal.layout-standard,
    #modal-e0wbo4rzpl86 .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-e0wbo4rzpl86 .pp-modal-button {
	text-align: left;
}
.fl-node-e0wbo4rzpl86 .pp-modal-trigger, .fl-node-e0wbo4rzpl86 .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
body:not(.fl-builder-edit) .fl-node-3xn0kfjwgdb4 > .fl-module-content {
	margin: 0;
}

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


.fl-node-3xn0kfjwgdb4 .pp-modal-trigger .pp-button-icon {
	}

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


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

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

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




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

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

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

.fl-node-3xn0kfjwgdb4 .pp-modal-close,
#modal-3xn0kfjwgdb4 .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-3xn0kfjwgdb4 .pp-modal-close:hover,
#modal-3xn0kfjwgdb4 .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-3xn0kfjwgdb4 .pp-modal-close.box-top-right,
#modal-3xn0kfjwgdb4 .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-3xn0kfjwgdb4 .pp-modal-close.box-top-left,
#modal-3xn0kfjwgdb4 .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-3xn0kfjwgdb4 .pp-modal-close.win-top-right,
#modal-3xn0kfjwgdb4 .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-3xn0kfjwgdb4 .pp-modal-close.win-top-left,
#modal-3xn0kfjwgdb4 .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-3xn0kfjwgdb4 .pp-modal-close .bar-wrap,
#modal-3xn0kfjwgdb4 .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-3xn0kfjwgdb4 .pp-modal-close .bar-wrap span,
#modal-3xn0kfjwgdb4 .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-3xn0kfjwgdb4 .pp-modal-close:hover .bar-wrap span,
#modal-3xn0kfjwgdb4 .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-3xn0kfjwgdb4 .pp-modal-container.fadeIn.animated,
#modal-3xn0kfjwgdb4 .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-3xn0kfjwgdb4 .pp-modal-container.fadeOut.animated,
#modal-3xn0kfjwgdb4 .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-3xn0kfjwgdb4 .has-overlay-animation .pp-modal-container,
#modal-3xn0kfjwgdb4.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-3xn0kfjwgdb4 .pp-modal.layout-standard,
    #modal-3xn0kfjwgdb4 .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-3xn0kfjwgdb4 .pp-modal-button {
	text-align: left;
}
.fl-node-3xn0kfjwgdb4 .pp-modal-trigger, .fl-node-3xn0kfjwgdb4 .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
body:not(.fl-builder-edit) .fl-node-jncyfauwvoxh > .fl-module-content {
	margin: 0;
}

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


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

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


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

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

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




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

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

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

.fl-node-jncyfauwvoxh .pp-modal-close,
#modal-jncyfauwvoxh .pp-modal-close {
    			background-color: #3a3a3a;
	    border: 1px solid #ffffff;
    border-radius: 100px;
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 5;
}
.fl-node-jncyfauwvoxh .pp-modal-close:hover,
#modal-jncyfauwvoxh .pp-modal-close:hover {
			background-color: #b53030;
	}
.fl-node-jncyfauwvoxh .pp-modal-close.box-top-right,
#modal-jncyfauwvoxh .pp-modal-close.box-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-jncyfauwvoxh .pp-modal-close.box-top-left,
#modal-jncyfauwvoxh .pp-modal-close.box-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-jncyfauwvoxh .pp-modal-close.win-top-right,
#modal-jncyfauwvoxh .pp-modal-close.win-top-right {
    top: -10px;
    right: -10px;
}
.fl-node-jncyfauwvoxh .pp-modal-close.win-top-left,
#modal-jncyfauwvoxh .pp-modal-close.win-top-left {
    top: -10px;
    left: -10px;
}
.fl-node-jncyfauwvoxh .pp-modal-close .bar-wrap,
#modal-jncyfauwvoxh .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-jncyfauwvoxh .pp-modal-close .bar-wrap span,
#modal-jncyfauwvoxh .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-jncyfauwvoxh .pp-modal-close:hover .bar-wrap span,
#modal-jncyfauwvoxh .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-jncyfauwvoxh .pp-modal-container.fadeIn.animated,
#modal-jncyfauwvoxh .pp-modal-container.fadeIn.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-jncyfauwvoxh .pp-modal-container.fadeOut.animated,
#modal-jncyfauwvoxh .pp-modal-container.fadeOut.animated {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}
.fl-node-jncyfauwvoxh .has-overlay-animation .pp-modal-container,
#modal-jncyfauwvoxh.has-overlay-animation .pp-modal-container {
			background-color: rgba(0,0,0,0.3);
	}

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

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

@media only screen and (max-width: 767px) {
    .fl-node-jncyfauwvoxh .pp-modal.layout-standard,
    #modal-jncyfauwvoxh .pp-modal.layout-standard {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.fl-node-jncyfauwvoxh .pp-modal-button {
	text-align: left;
}
.fl-node-jncyfauwvoxh .pp-modal-trigger, .fl-node-jncyfauwvoxh .pp-modal-button .pp-modal-trigger {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */
#dc-box .fl-module-content{
    background: #f7f7f7 center center;
    background-repeat: no-repeat;
    background-size:cover;
    position:relative;
}
#dc-box .box-button{
position: absolute;
    bottom: 0;
    right: 0;
    left:0;
    width: 100%;
    text-align: center;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
/*#dc-box .box-button:after{
    position: absolute;
    content: ">";
    background: #333;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0070bd;
    right: 0;
    bottom: 0;
    font-weight: 700;
    font-size: 16px;
}*/
#dc-box .button-box-link{
    padding:16px 28px;
    border-radius:25px;
    background-color:#00c9fc;
}
#dc-box .button-box-link{
    margin-right:20px;
}
#dc-box .fl-module-content:hover{
    background: #008ac9 center center;    background-repeat: no-repeat;
    background-size:cover;
    position:relative;
}
#dc-box .fl-module-content:hover *{
    color:#fff !important;
}
#dc-box img.img-opacity{
    opacity: 0.4;
    margin-bottom:0;
}
#dc-box img.fl-module-content:hover .img-opacity{
    opacity:1;
}

/* End Global Nodes CSS */


/* Start Layout CSS */
.img-max-width img{
    max-width: 130px !important;
}

.product-card .pp-infobox{
    cursor:pointer;
}
/* Hover/Focus */
.product-card .pp-infobox:hover,
.product-card .pp-infobox:focus-within{
  transform: translateY(-6px);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  border-color: rgba((99, 102, 241), .35);
}
/* End Layout CSS */


                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-e8b9olv71ixh .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-u4cqs5fhyxmr .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-3150zcxuyis2 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-h62zn5e8p3sm .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-mzlkh7ev95ra .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-keyim695l0h3 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-5xjh7n3obqcw .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-28yrjomkhx91 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-gzbi5f2wm79y .fl-row-content {
				min-width: 0px;
			}
		