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

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

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

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

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

.fl-visible-large,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: none;
}

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

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

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

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

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

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

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

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

/* Full Height Rows */
.fl-row-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-custom-height .fl-row-content-wrap {
	min-height: 0;
}

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

/* IE 11 - Row full height - vertical alignment center/bottom fix */
.fl-builder-ie-11 .fl-row.fl-row-full-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile),
.fl-builder-ie-11 .fl-row.fl-row-custom-height:not(.fl-visible-medium):not(.fl-visible-medium-mobile):not(.fl-visible-mobile) {
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Stupid IE Full Height Row Fixes */
.fl-builder-ie-11 .fl-row-full-height .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content-wrap {
	height: auto;
}

.fl-builder-ie-11 .fl-row-full-height .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height .fl-row-content {
	flex: 0 0 auto;
	flex-basis: 100%;
	margin: 0;
}

.fl-builder-ie-11 .fl-row-full-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-top .fl-row-content,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content {
    margin: 0 auto;
}

.fl-builder-ie-11 .fl-row-full-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height),
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-center .fl-col-group:not(.fl-col-group-equal-height) {
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}

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

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

/* IE 11 - height bottom > row align bottom - center fix */
.fl-builder-ie-11 .fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-builder-ie-11 .fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	justify-content: flex-start;
	-webkit-justify-content: flex-start;
}

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

.fl-col-group-equal-height,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content{
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.fl-col-group-equal-height{
    -webkit-flex-wrap: wrap;
    	-ms-flex-wrap: wrap;
    		flex-wrap: wrap;
			    width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
    -webkit-flex-wrap: nowrap;
    	-ms-flex-wrap: nowrap;
    		flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-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-col-group-equal-height .fl-col-content{
	    -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%;
            	 	 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;
	-webkit-justify-content: flex-start;	
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	align-items: center;
	justify-content: center;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: 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;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
}

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

/* IE11 fix for images with height:auto in equal height columns. */
.fl-builder-ie-11 .fl-col-group-equal-height,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-col,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-col-content,
.fl-builder-ie-11 .fl-col-group-equal-height .fl-module,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	min-height: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
.fl-row-fixed-width { max-width: 1100px; }.fl-row-content-wrap{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.fl-row-content-wrap{padding-top: 20px;padding-right: 20px;padding-bottom: 20px;padding-left: 20px;}.fl-col-content{margin-top: 0px;margin-right: 0px;margin-bottom: 0px;margin-left: 0px;}.fl-col-content{padding-top: 0px;padding-right: 0px;padding-bottom: 0px;padding-left: 0px;}.fl-module-content{margin-top: 20px;margin-right: 20px;margin-bottom: 20px;margin-left: 20px;}@media (max-width: 1200px) { /* Responsive Utilities
------------------------------------------------------ */
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl {
	display: none !important;
}
.fl-visible-xl,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: none;
}
.fl-visible-desktop,
.fl-visible-desktop-medium,
.fl-visible-large,
.fl-visible-large-medium,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col {
	display: block;
}
.fl-col-group-equal-height .fl-visible-desktop.fl-col,
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col {
	display: flex;
}
 }@media (max-width: 992px) { /* Responsive Utilities
------------------------------------------------------ */
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large {
	display: none !important;
}
.fl-visible-xl,
.fl-visible-desktop,
.fl-visible-large,
.fl-visible-mobile,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-large.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: none;
}
.fl-visible-desktop-medium,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-visible-medium-mobile,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group .fl-visible-medium-mobile.fl-col {
	display: block;
}
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium-mobile.fl-col {
	display: flex;
}
 }@media (max-width: 768px) { /* Responsive Utilities
------------------------------------------------------ */
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-xl,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-desktop-medium,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-desktop-medium,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large,
body.fl-builder-ie-11 .fl-row.fl-row-full-height.fl-visible-large-medium,
body.fl-builder-ie-11 .fl-row.fl-row-custom-height.fl-visible-large-medium {
	display: none !important;
}

.fl-visible-xl,
.fl-visible-desktop,
.fl-visible-desktop-medium,
.fl-visible-large,
.fl-visible-large-medium,
.fl-visible-medium,
.fl-col-group .fl-visible-xl.fl-col,
.fl-col-group .fl-visible-desktop.fl-col,
.fl-col-group .fl-visible-desktop-medium.fl-col,
.fl-col-group .fl-visible-large-medium.fl-col,
.fl-col-group .fl-visible-medium.fl-col,
.fl-col-group-equal-height .fl-visible-xl.fl-col,
.fl-col-group-equal-height .fl-visible-desktop.fl-col,
.fl-col-group-equal-height .fl-visible-desktop-medium.fl-col,
.fl-col-group-equal-height .fl-visible-large-medium.fl-col,
.fl-col-group-equal-height .fl-visible-medium.fl-col {
	display: none;
}

.fl-visible-medium-mobile,
.fl-visible-mobile,
.fl-col-group .fl-visible-medium-mobile.fl-col,
.fl-col-group .fl-visible-mobile.fl-col {
	display: block;
}

/* 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: -ms-flexbox;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap-reverse;
	-webkit-flex-wrap: wrap-reverse;
	-ms-box-orient: horizontal;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col {
	-webkit-box-flex: 0 0 100%;
	-moz-box-flex: 0 0 100%;
	-webkit-flex: 0 0 100%;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	min-width: 0;
}

/* 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;
}
 }.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }



.fl-node-626a47f430f2b .fl-bg-video-audio {
	display: none;
	cursor: pointer;
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 5;
	width: 20px;
}
.fl-node-626a47f430f2b .fl-bg-video-audio .fl-audio-control {
	font-size: 20px;
}
.fl-node-626a47f430f2b .fl-bg-video-audio .fa-times {
	font-size: 10px;
	vertical-align: middle;
	position: absolute;
	top: 5px;
	left: 11px;
	bottom: 0;
}


.fl-node-626a47f430f2b > .fl-row-content-wrap {
	background-color: #fc1f49;
}
.fl-node-626a47f430f2b .fl-row-content {
	max-width: 1328px;
}
 .fl-node-626a47f430f2b > .fl-row-content-wrap {
	margin-bottom:0px;
}
 .fl-node-626a47f430f2b > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}












.fl-node-619faec4ee6ca > .fl-row-content-wrap {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #fc1f49;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}






 .fl-node-5f194a4308796 > .fl-row-content-wrap {
	margin-top:50px;
}
 .fl-node-5f194a4308796 > .fl-row-content-wrap {
	padding-top:10px;
}






 .fl-node-5fc6227a0fb12 > .fl-row-content-wrap {
	padding-top:0px;
}






 .fl-node-60cca6b6c02ee > .fl-row-content-wrap {
	padding-top:0px;
}


















.fl-node-6388938694984.fl-row-fixed-width, .fl-node-6388938694984 .fl-row-fixed-width {
	max-width: 1106px;
}
 .fl-node-6388938694984 > .fl-row-content-wrap {
	padding-top:10px;
	padding-right:10px;
	padding-bottom:10px;
	padding-left:10px;
}






 .fl-node-5f1948685c76d > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}




.fl-node-626a47f431114 {
	width: 37.59%;
}




.fl-node-626a47f431117 {
	width: 25%;
}




.fl-node-626a47f431118 {
	width: 25%;
}




.fl-node-626a47f431119 {
	width: 25%;
}




.fl-node-626a47f43111a {
	width: 25%;
}




.fl-node-626a47f43111b {
	width: 62.41%;
}




.fl-node-638896cb243e4 {
	width: 100%;
}




.fl-node-619faec509703 {
	width: 100%;
}




.fl-node-5f194a4308791 {
	width: 51.89%;
}
.fl-node-5f194a4308791 > .fl-col-content {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
 .fl-node-5f194a4308791 > .fl-col-content {
	padding-right:30px;
}




.fl-node-5f194a4308792 {
	width: 48.11%;
}
.fl-node-5f194a4308792 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ff1844;
	border-left-width: 1px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.5);
}
 .fl-node-5f194a4308792 > .fl-col-content {
	padding-left:30px;
}




.fl-node-616ea140e4b34 {
	width: 50%;
}




.fl-node-616ea140e4b37 {
	width: 50%;
}




.fl-node-5fc6227a15532 {
	width: 100%;
}




.fl-node-61fa487c562ba {
	width: 33.33%;
}
 .fl-node-61fa487c562ba > .fl-col-content {
	margin-right:5px;
}




.fl-node-61fa487c562bc {
	width: 33.34%;
}
 .fl-node-61fa487c562bc > .fl-col-content {
	margin-right:5px;
}




.fl-node-61fa487c562be {
	width: 33.33%;
}
 .fl-node-61fa487c562be > .fl-col-content {
	margin-right:5px;
}




.fl-node-61fa477db99e9 {
	width: 33.33%;
}




.fl-node-61fa477db99eb {
	width: 33.33%;
}




.fl-node-61fa477db99ec {
	width: 33.33%;
}




.fl-node-60cca6b6c04f8 {
	width: 100%;
}




.fl-node-60cca6b6c04fb {
	width: 33.33%;
}
.fl-node-60cca6b6c04fb > .fl-col-content {
	background-color: #fc1f49;
}
 .fl-node-60cca6b6c04fb > .fl-col-content {
	margin-right:3px;
	margin-left:3px;
}




.fl-node-60cca6b6c0501 {
	width: 33.33%;
}
.fl-node-60cca6b6c0501 > .fl-col-content {
	background-color: #fc1f49;
}
 .fl-node-60cca6b6c0501 > .fl-col-content {
	margin-right:3px;
	margin-left:3px;
}




.fl-node-60cca6b6c0504 {
	width: 33.33%;
}
.fl-node-60cca6b6c0504 > .fl-col-content {
	background-color: #fc1f49;
}
 .fl-node-60cca6b6c0504 > .fl-col-content {
	margin-right:3px;
	margin-left:3px;
}




.fl-node-5fc61d892d762 {
	width: 100%;
}




.fl-node-5fc61d892d765 {
	width: 25%;
}
.fl-node-5fc61d892d765 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #fc1f49;
	border-bottom-width: 1px;
}
 .fl-node-5fc61d892d765 > .fl-col-content {
	margin-right:3px;
	margin-left:3px;
}




.fl-node-5fc61d892d768 {
	width: 25%;
}
.fl-node-5fc61d892d768 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #fc1f49;
	border-bottom-width: 1px;
}
 .fl-node-5fc61d892d768 > .fl-col-content {
	margin-right:3px;
	margin-left:3px;
}




.fl-node-5fc61d892d76b {
	width: 25%;
}
.fl-node-5fc61d892d76b > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #fc1f49;
	border-bottom-width: 1px;
}
 .fl-node-5fc61d892d76b > .fl-col-content {
	margin-right:3px;
	margin-left:3px;
}




.fl-node-5fc61d892d76e {
	width: 25%;
}
.fl-node-5fc61d892d76e > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #fc1f49;
	border-bottom-width: 1px;
}
 .fl-node-5fc61d892d76e > .fl-col-content {
	margin-right:3px;
	margin-left:3px;
}




.fl-node-638895fc84001 {
	width: 100%;
}




.fl-node-6388939bdd55f {
	width: 100%;
}




.fl-node-6388938694973 {
	width: 26.28%;
}




.fl-node-6388938694974 {
	width: 26.28%;
}




.fl-node-6388938694975 {
	width: 23.54%;
}




.fl-node-6388938694976 {
	width: 23.9%;
}




.fl-node-6388938694983 {
	width: 100%;
}
.fl-node-6388938694983 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #fc1f49;
	border-bottom-width: 1px;
}




.fl-node-6388938694970 {
	width: 100%;
}
.fl-node-6388938694970 > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #ffffff;
	border-right-width: 5px;
	border-left-width: 5px;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}
	.fl-builder-content .fl-node-626a47f431115 .fl-module-content .fl-rich-text,
	.fl-builder-content .fl-node-626a47f431115 .fl-module-content .fl-rich-text * {
		color: #ffffff;
	}
	.fl-builder-content .fl-node-626a47f431115 .fl-rich-text, .fl-builder-content .fl-node-626a47f431115 .fl-rich-text *:not(b, strong) {
	font-weight: 700;
	font-size: 30px;
	text-shadow: 2px 2px 3px rgba(0,0,0,0.69);
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */@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-626a47f43111c .pp-spacer-module {
    height: 450px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-626a47f43111c .pp-spacer-module {
        height: 15px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-626a47f43111c .pp-spacer-module {
        height: 15px;
    }
}
 .fl-node-626a47f43111c > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-638896cb0e289 .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ffffff;
	max-width: 100%;
	margin: auto;
}

			.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-row .fl-col .fl-node-609bdcf0c251a h3.fl-heading a,
.fl-row .fl-col .fl-node-609bdcf0c251a h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-609bdcf0c251a h3.fl-heading .fl-heading-text *,
.fl-node-609bdcf0c251a h3.fl-heading .fl-heading-text {
	color: #fc1f49;
}
.fl-node-609bdcf0c251a.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 32px;
}
 .fl-node-609bdcf0c251a > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:010px;
}
/* Generic Styles */
.fl-module-post-grid .fl-sep {
	display: inline-block;
	margin: 0 2px;
}

/* Post Columns */
body.rtl .fl-post-column {
	float: right;
}
.fl-post-column {
	float: left;
}
.fl-post-column .fl-post-grid-post {
	visibility: visible;
}

/* Post Grid */
.fl-post-grid {
	margin: 0 auto;
	position: relative;
}
.fl-post-grid:before,
.fl-post-grid:after {
	display: table;
	content: " ";
}
.fl-post-grid:after {
	clear: both;
}
.fl-post-grid-post {
	background: #fff;
	border: 1px solid #e6e6e6;
	visibility: hidden;
}
.fl-post-grid-post,
.fl-post-feed-post {
	overflow: hidden;
}

.fl-post-grid-image {
	position: relative;
}
.fl-post-grid-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-post-grid-text {
	padding: 20px;
}
.fl-post-grid-title {
	padding-bottom: 7px;
}
body .fl-post-grid-text,
body .fl-post-grid-content p {
	font-size: 14px;
	line-height: 22px;
}
body .fl-post-grid-text > *:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}
body .fl-post-grid-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
body .fl-post-grid-text a {
	text-decoration: none;
}
body .fl-post-grid-title {
	font-size: 20px;
	line-height: 26px;
	margin: 0 0 10px;
	padding: 0;
}
body .fl-post-grid-meta {
	font-size: 14px;
	padding-bottom: 10px;
}
.fl-post-feed-comments .fa {
	vertical-align: text-top;
}
.fl-post-grid-more {
	margin-top: 10px;
	display: inline-block;
}
.fl-post-grid #infscr-loading {
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 0;
	position: absolute;
	text-align: center;
	width: 100%;
}

/* Post Gallery */
.fl-post-gallery-post {
	overflow: hidden;
	position: relative;
	visibility: hidden;
}
.fl-post-gallery-link {
	display: block;
	height: 100%;
}
.fl-post-gallery-img {
	position: relative;
	z-index: 1;
}
.fl-post-gallery-img-horiz {
	height: 100% !important;
	max-height: 100% !important;
	max-width: none !important;
	width: auto !important;
}
.fl-post-gallery-img-vert {
	height: auto !important;
	max-height: none !important;
	max-width: 100% !important;
	width: 100% !important;
}
.fl-post-gallery-text-wrap {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	text-align: center;
	filter: alpha(opacity = 0);
	opacity: 0;
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	        transition: all 0.3s;
}

.fl-post-gallery-link:hover .fl-post-gallery-text-wrap {
	filter: alpha(opacity = 100);
	opacity: 1;
}

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

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

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

.fl-post-gallery-text h2.fl-post-gallery-title {
	font-size: 22px;
	margin: 0 0 5px 0;
}
.fl-post-gallery #infscr-loading {
	clear: both;
	padding: 40px 0;
	text-align: center;
	width: 100%;
}

/* Post Feed */
.fl-post-feed-post {
	border-bottom: 1px solid #e6e6e6;
	margin-bottom: 40px;
}
.fl-post-feed-post:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.fl-post-feed-header {
	margin-bottom: 20px;
}
.fl-post-feed-header a {
	text-decoration: none;
}
body h2.fl-post-feed-title {
	margin: 0 0 10px;
	padding: 0;
	clear: none;
}
body .fl-post-feed-meta {
	font-size: 14px;
	margin-bottom: 5px;
}
.fl-post-feed-meta .fl-sep {
	margin: 0 3px;
}
.fl-post-feed-image {
	margin-bottom: 25px;
	position: relative;
}
.fl-post-feed-image img {
	height: auto !important;
	width: 100% !important;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image {
	float: left;
	margin-bottom: 0;
	width: 33%;
}
.fl-post-feed-image-beside .fl-post-feed-text,
.fl-post-feed-image-beside-content .fl-post-feed-text {
	margin-left: 37%;
}
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image {
	float: right;
	margin-bottom: 0;
	width: 33%;
}
.fl-post-feed-image-beside-right .fl-post-feed-text,
.fl-post-feed-image-beside-content-right .fl-post-feed-text {
	margin-right: 37%;
}
.fl-post-feed-content a {
	text-decoration: none;
}
.fl-post-feed-content p:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
}
.fl-post-feed-more {
	margin-top: 15px;
	display: inline-block;
}
.fl-post-feed #infscr-loading {
	padding: 40px 0;
	text-align: center;
	width: 100%;
}

/* No posts message */
.fl-post-grid-empty {
}

li.fl-post-feed-post,li.fl-post-gallery-post, li.fl-post-grid-post {
	list-style: none;
}
@media (max-width: 768px) { /* Post Feed */
.fl-post-feed-post.fl-post-feed-image-beside,
.fl-post-feed-post.fl-post-feed-image-beside-content,
.fl-post-feed-post.fl-post-feed-image-beside-right,
.fl-post-feed-post.fl-post-feed-image-beside-content-right {
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside .fl-post-feed-image img,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image img,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image img,
.fl-post-feed-image-beside-content-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image img {
	float: none;
	width: 100% !important;
}
.fl-post-feed-image-beside .fl-post-feed-image,
.fl-post-feed-image-beside-content .fl-post-feed-image,
.fl-post-feed-image-beside-right .fl-post-feed-image,
.fl-post-feed-image-beside-content-right .fl-post-feed-image {
	margin-bottom: 20px;
}
.fl-post-feed-image-beside .fl-post-feed-text,
.fl-post-feed-image-beside-content .fl-post-feed-text,
.fl-post-feed-image-beside-right .fl-post-feed-text,
.fl-post-feed-image-beside-content-right .fl-post-feed-text {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
 }
.fl-node-5fc614b932ed5 .fl-post-grid {
	margin-left: -10px;
	margin-right: -10px;
}
.fl-node-5fc614b932ed5 .fl-post-column {
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	width: 25%;
}
.fl-node-5fc614b932ed5 .fl-post-column:nth-child(4n + 1) {
	clear: both;
}
		@media screen and (max-width: 1200px) {
		.fl-node-5fc614b932ed5 .fl-post-column {
			width: 25%;
		}
		.fl-node-5fc614b932ed5 .fl-post-column:nth-child(4n + 1) {
			clear: none;
		}
		.fl-node-5fc614b932ed5 .fl-post-column:nth-child(4n + 1) {
			clear: both;
		}
	}
			@media screen and (max-width: 992px) {
		.fl-node-5fc614b932ed5 .fl-post-column {
			width: 50%;
		}
		.fl-node-5fc614b932ed5 .fl-post-column:nth-child(4n + 1) {
			clear: none;
		}
		.fl-node-5fc614b932ed5 .fl-post-column:nth-child(2n + 1) {
			clear: both;
		}
	}
			@media screen and (max-width: 768px) {
		.fl-node-5fc614b932ed5 .fl-post-column {
			width: 100%;
		}
		.fl-node-5fc614b932ed5 .fl-post-column:nth-child(2n + 1) {
			clear: none;
		}
		.fl-node-5fc614b932ed5 .fl-post-column:nth-child(1n + 1) {
			clear: both;
		}
	}
	 .fl-node-5fc614b932ed5 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-5f19516c303df > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-5f194a4308793.fl-module-heading .fl-heading {
	font-family: Arimo, sans-serif;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.4;
	text-align: center;
}
 .fl-node-5f194a4308793 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-5f194a4308794 h6.fl-heading a,
.fl-row .fl-col .fl-node-5f194a4308794 h6.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5f194a4308794 h6.fl-heading .fl-heading-text *,
.fl-node-5f194a4308794 h6.fl-heading .fl-heading-text {
	color: #2d2d2d;
}
.fl-node-5f194a4308794.fl-module-heading .fl-heading {
	font-family: Arimo, sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.4;
	text-align: center;
}
.fl-node-613dd35c82223 .fl-separator {
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #cccccc;
	max-width: 100%;
	margin: auto;
}

			 .fl-node-613dd35c82223 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
.fl-node-5fc502dcec743.fl-module-heading .fl-heading {
	font-family: Arimo, sans-serif;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.4;
	text-align: center;
}
 .fl-node-5fc502dcec743 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-row .fl-col .fl-node-5fc502d932ee9 h6.fl-heading a,
.fl-row .fl-col .fl-node-5fc502d932ee9 h6.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5fc502d932ee9 h6.fl-heading .fl-heading-text *,
.fl-node-5fc502d932ee9 h6.fl-heading .fl-heading-text {
	color: #2d2d2d;
}
.fl-node-5fc502d932ee9.fl-module-heading .fl-heading {
	font-family: Arimo, sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.4;
	text-align: center;
}
.fl-node-616ea15be34dd .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #fc1f49;
	max-width: 100%;
	margin: auto;
}

			 .fl-node-616ea15be34dd > .fl-module-content {
	margin-top:30px;
	margin-bottom:10px;
}
@media (max-width: 768px) { .fl-node-616ea15be34dd > .fl-module-content { margin-top:20px; } }.fl-builder-content .fl-node-5fc5111930db4 .fl-rich-text, .fl-builder-content .fl-node-5fc5111930db4 .fl-rich-text *:not(b, strong) {
	font-weight: 700;
	text-transform: uppercase;
}
.pp-social-icons .pp-social-icon {
	display: inline-block;
	line-height: 0;
}

.pp-social-icons .pp-social-icon.pp-social-icon-vertical {
	margin-bottom: 10px;
	margin-top: 10px;
}

/* Left */
.pp-social-icons-left {
	text-align: left;
}

/* Center */
.pp-social-icons-center {
	text-align: center;
}

/* Right */
.pp-social-icons-right {
	text-align: right;
}
.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon {
	}


.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon a,
.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon a:hover {
	text-decoration: none;
}

.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon a {
	display: inline-block;
	float: left;
	text-align: center;
					border-radius: 100px;
				border: 0px solid #;
	}

.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon a:hover {
					border-color: #;
	}


			.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(1) a {
							border: 0px solid #;
					}
		.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(1) a:hover {
					}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(1) a {
								}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(1) i:hover,
		.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(1) a:hover i {
								}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(2) a {
							border: 0px solid #;
					}
		.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(2) a:hover {
					}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(2) a {
								}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(2) i:hover,
		.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(2) a:hover i {
								}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(3) a {
							border: 0px solid #;
					}
		.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(3) a:hover {
					}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(3) a {
								}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(3) i:hover,
		.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(3) a:hover i {
								}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(4) a {
							border: 0px solid #;
					}
		.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(4) a:hover {
					}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(4) a {
								}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(4) i:hover,
		.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(4) a:hover i {
								}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(5) a {
							border: 0px solid #;
					}
		.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(5) a:hover {
					}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(5) a {
								}
				.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(5) i:hover,
		.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon:nth-child(5) a:hover i {
								}
	

@media only screen and (max-width: 768px) {
	.fl-node-5fc510ad4c911 .pp-responsive-left {
		text-align: left;
	}

	.fl-node-5fc510ad4c911 .pp-responsive-center {
		text-align: center;
	}

	.fl-node-5fc510ad4c911 .pp-responsive-right {
		text-align: right;
	}

	/* Left */
	.fl-node-5fc510ad4c911 .pp-responsive-left .pp-social-icon {
		margin-right: 14px;
	}

	/* Center */
	.fl-node-5fc510ad4c911 .pp-responsive-center .pp-social-icon {
		margin-left: 14px;
		margin-right: 14px;
	}

	/* Right */
	.fl-node-5fc510ad4c911 .pp-responsive-center .pp-social-icon {
		margin-left: 14px;
	}
}
.fl-node-5fc510ad4c911 .fl-module-content .pp-social-icon a {
	width: 60px;
	height: 60px;
	font-size: 24px;
	width: 60px;
	height: 60px;
	line-height: 60px;
}
.fl-node-5fc510ad4c911 .pp-social-icons-left .pp-social-icon {
	margin-right: 14px;
}
.fl-node-5fc510ad4c911 .pp-social-icons-center .pp-social-icon {
	margin-left: 14px;
	margin-right: 14px;
}
.fl-node-5fc510ad4c911 .pp-social-icons-right .pp-social-icon {
	margin-left: 14px;
}
 .fl-node-5fc510ad4c911 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}

.fl-builder-content .fl-node-61275057aaf22 a.fl-button,
.fl-builder-content .fl-node-61275057aaf22 a.fl-button:hover,
.fl-builder-content .fl-node-61275057aaf22 a.fl-button:visited {
	}














.fl-node-61275057aaf22 .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-61275057aaf22 a.fl-button, .fl-builder-content .fl-node-61275057aaf22 a.fl-button:visited {
	font-weight: 700;
	font-size: 15px;
	text-transform: uppercase;
	border-color: #ffffff;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-builder-content .fl-node-61275057aaf22 a.fl-button:hover, .fl-builder-content .fl-node-61275057aaf22 a.fl-button:focus {
	border-color: #ffffff;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
 .fl-node-61275057aaf22 > .fl-module-content {
	margin-top:0px;
	margin-right:01px;
	margin-bottom:0px;
	margin-left:01px;
}
.fl-row .fl-col .fl-node-609bdd07a528c h3.fl-heading a,
.fl-row .fl-col .fl-node-609bdd07a528c h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-609bdd07a528c h3.fl-heading .fl-heading-text *,
.fl-node-609bdd07a528c h3.fl-heading .fl-heading-text {
	color: #fc1f49;
}
.fl-node-609bdd07a528c.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 32px;
}
img.mfp-img {
    padding-bottom: 40px !important;
}
@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content {
	width: 100%;
} }.fl-node-60db12e073ce6 .fl-photo {
	text-align: center;
}
 .fl-node-60db12e073ce6 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-61fa478c4ab5f .fl-separator {
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #fc1f49;
	max-width: 40%;
	margin: 0 0 0 0;
}

			 .fl-node-61fa478c4ab5f > .fl-module-content {
	margin-top:0px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:20px;
}
 .fl-node-61fa47b93f8ad > .fl-module-content {
	margin-top:10px;
}
.fl-node-5fc6227a15539 .fl-photo {
	text-align: center;
}
 .fl-node-5fc6227a15539 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-61fa4797b1fba .fl-separator {
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #fc1f49;
	max-width: 40%;
	margin: 0 0 0 0;
}

			 .fl-node-61fa4797b1fba > .fl-module-content {
	margin-top:0px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:20px;
}
 .fl-node-61fa47e63c6e7 > .fl-module-content {
	margin-top:10px;
}
.fl-node-5fc6227a1553c .fl-photo {
	text-align: center;
}
 .fl-node-5fc6227a1553c > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-61fa479ee1d5b .fl-separator {
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #fc1f49;
	max-width: 40%;
	margin: 0 0 0 0;
}

			 .fl-node-61fa479ee1d5b > .fl-module-content {
	margin-top:0px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:20px;
}
 .fl-node-61fa47edaeb8b > .fl-module-content {
	margin-top:10px;
}
.fl-row .fl-col .fl-node-60cca6b6c04f9 h3.fl-heading a,
.fl-row .fl-col .fl-node-60cca6b6c04f9 h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-60cca6b6c04f9 h3.fl-heading .fl-heading-text *,
.fl-node-60cca6b6c04f9 h3.fl-heading .fl-heading-text {
	color: #fc1f49;
}
.fl-node-60cca6b6c04f9.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 32px;
}
.fl-node-60db116ecf286 .fl-photo {
	text-align: center;
}
 .fl-node-60db116ecf286 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-60db1172c07e4 h5.fl-heading a,
.fl-row .fl-col .fl-node-60db1172c07e4 h5.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-60db1172c07e4 h5.fl-heading .fl-heading-text *,
.fl-node-60db1172c07e4 h5.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-60db1172c07e4.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-60db1172c07e4 > .fl-module-content {
	margin-top:0px;
	margin-bottom:10px;
}
.fl-node-60cca6b6c0502 .fl-photo {
	text-align: center;
}
 .fl-node-60cca6b6c0502 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-60cca6b6c0503 h5.fl-heading a,
.fl-row .fl-col .fl-node-60cca6b6c0503 h5.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-60cca6b6c0503 h5.fl-heading .fl-heading-text *,
.fl-node-60cca6b6c0503 h5.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-60cca6b6c0503.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-60cca6b6c0503 > .fl-module-content {
	margin-top:0px;
	margin-bottom:10px;
}
.fl-node-60cca6b6c0505 .fl-photo {
	text-align: center;
}
 .fl-node-60cca6b6c0505 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-row .fl-col .fl-node-60cca6b6c0506 h5.fl-heading a,
.fl-row .fl-col .fl-node-60cca6b6c0506 h5.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-60cca6b6c0506 h5.fl-heading .fl-heading-text *,
.fl-node-60cca6b6c0506 h5.fl-heading .fl-heading-text {
	color: #ffffff;
}
.fl-node-60cca6b6c0506.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-60cca6b6c0506 > .fl-module-content {
	margin-top:0px;
	margin-bottom:10px;
}
.fl-row .fl-col .fl-node-609bdd2acba6b h3.fl-heading a,
.fl-row .fl-col .fl-node-609bdd2acba6b h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-609bdd2acba6b h3.fl-heading .fl-heading-text *,
.fl-node-609bdd2acba6b h3.fl-heading .fl-heading-text {
	color: #fc1f49;
}
.fl-node-609bdd2acba6b.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 32px;
}
.fl-node-5fc6202deb845 .fl-photo {
	text-align: center;
}
 .fl-node-5fc6202deb845 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-60a625fa3ff24 .fl-separator {
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #fc1f49;
	max-width: 40%;
	margin: 0 0 0 0;
}

			 .fl-node-60a625fa3ff24 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:20px;
}
.fl-row .fl-col .fl-node-5fc61e13b0309 h5.fl-heading a,
.fl-row .fl-col .fl-node-5fc61e13b0309 h5.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5fc61e13b0309 h5.fl-heading .fl-heading-text *,
.fl-node-5fc61e13b0309 h5.fl-heading .fl-heading-text {
	color: rgba(0,0,0,0.83);
}
.fl-node-5fc61e13b0309.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-5fc61e13b0309 > .fl-module-content {
	margin-top:0px;
	margin-bottom:10px;
}
.fl-node-5fc6222b777f0 .fl-photo {
	text-align: center;
}
 .fl-node-5fc6222b777f0 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-60a61c6a96786 .fl-separator {
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #fc1f49;
	max-width: 40%;
	margin: 0 0 0 0;
}

			 .fl-node-60a61c6a96786 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:20px;
}
.fl-row .fl-col .fl-node-5fc61e2fa2de1 h5.fl-heading a,
.fl-row .fl-col .fl-node-5fc61e2fa2de1 h5.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5fc61e2fa2de1 h5.fl-heading .fl-heading-text *,
.fl-node-5fc61e2fa2de1 h5.fl-heading .fl-heading-text {
	color: rgba(0,0,0,0.83);
}
.fl-node-5fc61e2fa2de1.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-5fc61e2fa2de1 > .fl-module-content {
	margin-top:0px;
	margin-bottom:10px;
}
.fl-node-5fc61fe4aaf51 .fl-photo {
	text-align: center;
}
 .fl-node-5fc61fe4aaf51 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-60a61c9e1fff0 .fl-separator {
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #fc1f49;
	max-width: 40%;
	margin: 0 0 0 0;
}

			 .fl-node-60a61c9e1fff0 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:20px;
}
.fl-row .fl-col .fl-node-5fc61e451ca97 h5.fl-heading a,
.fl-row .fl-col .fl-node-5fc61e451ca97 h5.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5fc61e451ca97 h5.fl-heading .fl-heading-text *,
.fl-node-5fc61e451ca97 h5.fl-heading .fl-heading-text {
	color: rgba(0,0,0,0.83);
}
.fl-node-5fc61e451ca97.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-5fc61e451ca97 > .fl-module-content {
	margin-top:0px;
	margin-bottom:10px;
}
.fl-node-5fc61ee0b4834 .fl-photo {
	text-align: center;
}
 .fl-node-5fc61ee0b4834 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-609bdeb652c4b .fl-separator {
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #fc1f49;
	max-width: 40%;
	margin: 0 0 0 0;
}

			 .fl-node-609bdeb652c4b > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:20px;
}
.fl-row .fl-col .fl-node-5fc61e01d1fc9 h5.fl-heading a,
.fl-row .fl-col .fl-node-5fc61e01d1fc9 h5.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-5fc61e01d1fc9 h5.fl-heading .fl-heading-text *,
.fl-node-5fc61e01d1fc9 h5.fl-heading .fl-heading-text {
	color: rgba(0,0,0,0.83);
}
.fl-node-5fc61e01d1fc9.fl-module-heading .fl-heading {
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	text-transform: uppercase;
}
 .fl-node-5fc61e01d1fc9 > .fl-module-content {
	margin-top:0px;
	margin-bottom:10px;
}
.fl-node-638895fc6bb43 .fl-separator {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ffffff;
	max-width: 100%;
	margin: 0 0 0 0;
}

			.fl-row .fl-col .fl-node-63889391e563d h3.fl-heading a,
.fl-row .fl-col .fl-node-63889391e563d h3.fl-heading .fl-heading-text,
.fl-row .fl-col .fl-node-63889391e563d h3.fl-heading .fl-heading-text *,
.fl-node-63889391e563d h3.fl-heading .fl-heading-text {
	color: #fc1f49;
}
.fl-node-63889391e563d.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 32px;
}
 .fl-node-63889391e563b > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-6388938694977 .fl-photo {
	text-align: center;
}
 .fl-node-6388938694977 > .fl-module-content {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:0px;
	margin-left:5px;
}
.fl-node-6388938694978 .fl-separator {
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #fc1f49;
	max-width: 40%;
	margin: 0 0 0 0;
}

			 .fl-node-6388938694978 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:20px;
}
 .fl-node-6388938694979 > .fl-module-content {
	margin-top:0px;
}
.fl-node-638893869497a .fl-photo {
	text-align: center;
}
 .fl-node-638893869497a > .fl-module-content {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:0px;
	margin-left:5px;
}
.fl-node-638893869497b .fl-separator {
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #fc1f49;
	max-width: 40%;
	margin: 0 0 0 0;
}

			 .fl-node-638893869497b > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:20px;
}
 .fl-node-638893869497c > .fl-module-content {
	margin-top:0px;
}
.fl-embed-video iframe {
	max-width: 100%;
}
.fl-wp-video {
	position: relative;
	height: 0;
	overflow: hidden;
	padding: 0 0 56.25%;
}
.fl-wp-video .wp-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


.mfp-container .fl-video-lightbox-content .wp-video {
    margin-left: auto;
    margin-right: auto;
}

.mfp-container .fl-video-lightbox-content .fluid-width-video-wrapper iframe {
	width: 80%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.fl-module-video .fl-video-poster {
	cursor: pointer;
}

.fl-wp-video .wp-video .mejs-container,
.fl-wp-video .wp-video .mejs-inner,
.fl-wp-video .wp-video .mejs-layers,
.fl-wp-video .wp-video .mejs-layer,
.fl-wp-video .wp-video-shortcode,
.fl-wp-video .me-plugin,
.fl-wp-video .me-plugin * {
	width: 100% !important;
	height: 100% !important;
}

.fl-video-sticky {
	position: fixed;
    top: 20px;
	z-index: 11;
}

.fl-wp-video img{
	width: 100%;
}
@media (max-width: 768px) {  }







.fl-node-638893869497d .fl-video-poster {
	display: none;
}


 .fl-node-638893869497d > .fl-module-content {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:0px;
	margin-left:5px;
}
.fl-node-638893869497e .fl-separator {
	border-top-width: 8px;
	border-top-style: solid;
	border-top-color: #fc1f49;
	max-width: 40%;
	margin: 0 0 0 0;
}

			 .fl-node-638893869497e > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:20px;
}
 .fl-node-638893869497f > .fl-module-content {
	margin-top:5px;
	margin-bottom:0px;
}

/* Start Global CSS */
/* A VIRER */

.cob-back-btn {
    display: none;
}

/* TITLES */
.cob-h1-style0 H1 {
    font-family:'Faction Commercial';
    font-size: 180px;
    line-height: 0.85;
    text-transform: uppercase;
}
.cob-h1-style02 H1 {
    font-family:'Faction Commercial';
    font-size: 80px;
    line-height: 0.85;
    text-transform: uppercase;
    color:#000000;
}
.cob-h2-style0 H2 {
    font-family:'Faction Commercial';
    font-size: 65px;
    line-height: 0.85;
    text-transform: uppercase;
}
.cob-h1-style01-columnfront {
    z-index: 90;
}
.cob-h3-style-1{
    font-size: 20px; 
    font-weight: 700;
    text-align: center; 
    color: #fff;
    margin-top: 8px;
    text-transform: uppercase;
}
.tribe-mobile .cob-h3-style-1{
    font-size: 16px;
}

.cob-h4-style01 H4 {
    color: #ff1844;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 3px;
    margin-top:15px;
}

/* TEXTE */
.cob-text-style-1 {
    color: #ff1844;
    font-size: 1.8rem;
    line-height: 1.3;
}
/* MISCELLANEOUS */
.cob-text-white {
   color: #ffffff;
}
.cob-col-back{
    z-index: -1000;
}
.cob-text-white a{
    color: #ffffff;
}
.cob-modalcardinale .fl-module-content {
    margin:0;
}
@media screen and (min-width: 990px){
  .two-col-txt {
    -webkit-column-count: 2;
      -moz-column-count: 2;
           column-count: 2;
    }
}
.opacity {
    opacity: 0.55;
}
.red-title h4,
.red-title h4 span {
    color: #ff1844 !important;
}
.cob-position-relative {
    position: relative;
}
.cob-zindex-overall {
    position: relative;
    z-index: 999;
}
.cob-col-clickable {
    cursor: pointer;
}
.fl-row .cob-module-search input {
    border: none;
    color: #b2b2b2;
    background-color: rgba(255,255,255,0.2);
}

header.fl-theme-builder-header-shrink .cob-module-search .fl-module-content {
    margin-top: 5px;
}


/* PROGRAMME */

.cob-event-cat-list li {
    position: relative;
    margin-bottom: 60px;
}

.cob-event-cat-list li a {
    width: 100%;
    text-align: center;
    display: block;
}

.cob-event-cat-list li a img {
    transition: all 0.3s;
    opacity: 0.65
}

.cob-event-cat-list li:hover a img {
    opacity: 0.3;
}

.cob-event-cat-list li a + a {
    position: absolute;
    top: 43%;
    left: 0;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    z-index: 10;
    transition: all 0.3s;
}

.cob-event-cat-list li a + a:hover {
    text-decoration: none;
}

.cob-event-cat-list li:hover a + a {
    
}



/* === HEADER === */
/* PP : MODULE ADVANCED MENU */
.pp-advanced-menu .pp-advanced-menu-vertical.pp-toggle-none .pp-has-submenu-container .menu-item-text{
    padding-right: 0;
}
.pp-advanced-menu .pp-advanced-menu-vertical.pp-toggle-none .pp-has-submenu-container .pp-menu-toggle{
    display: none;
}
.pp-advanced-menu .sub-menu {
    min-width:50px !important;
}
.menu-item a {
    border-bottom-color: #000 !important;
    transition: all 0.3s;
}
.menu-item.current-menu-item a {
    border-bottom-color: #ff1844 !important;
}
.current-lang a {
    text-decoration: underline !important;
}
#menu-langues-1.menu > li {
    display: inline-block;
}
header:not(.cob-menu-hover) .pp-advanced-menu .menu .sub-menu a:focus,
header:not(.cob-menu-hover) .pp-advanced-menu .menu .sub-menu a:active{
    color: transparent;
}
header .pp-advanced-menu .pp-has-submenu-container a > span {
    padding-right: 9px;
}
header .pp-advanced-menu .menu:not(#menu-langues)  .menu-item:not(.pp-has-submenu) {
    margin-right: 29px;
}
header.cob-menu-hover .fl-row:first-child::after {
    position: absolute;
    width: 100%;
    background: #ff1844;
    content: '';
    height: 87px;
    z-index: 1;
}
header.cob-menu-hover .fl-row:first-child .fl-row-content::after {
    content: '';
    background: url(/wp-content/uploads/sites/71/2018/05/program-menu-logo.png) no-repeat scroll left center;
    height: 87px;
    width: 113px;
    position: absolute;
    z-index: 10;
}
header.cob-menu-hover .sub-menu li {
    font-size: 25px;
}
header .pp-advanced-menu ul.sub-menu {
    right:  0;
    /*background: #ff1844;*/
    padding: 0 calc((100% - 1100px) / 2);
    /*width: 100vw;*/
}
header .pp-advanced-menu ul.sub-menu li {
    display: table-cell;
    /*background: #ff1844;*/
}
header .pp-advanced-menu .sub-menu li:first-child a {
    padding-left: 0;
}
.tribe-mobile .menu {
    text-align: center;
}
.tribe-mobile .fl-module-menu.cob-sub-menu-level-2 li.menu-item {
    display: inline-block;
    font-size: 11px;
}

/* === BEAVER THEMER : ARCHIVE : EVENT CATEGORY === */
.cob-menu-sticky {
    background: #ffffff;
}

.fl-theme-builder-header-shrink img {
    max-height: 70px !important;
}

.fl-theme-builder-header-shrink .fl-module-pp-social-icons .fl-theme-builder-header-shrink-module-top {
    margin-top: 0;
}

.fl-theme-builder-header-shrink .cob-menu-sticky .fl-module-content {
    margin: 0;
}
.pp-advanced-menu-mobile-toggle {
    text-transform: uppercase;
}
.pp-advanced-menu-mobile-toggle-label::after{
    display: inline-block;
    /*font: normal normal normal 14px/1 FontAwesome;*/
    /*font-size: inherit;*/
    /*text-rendering: auto;*/
    /*-webkit-font-smoothing: antialiased;*/
    /*-moz-osx-font-smoothing: grayscale;*/
    /*content: 'f107';*/
    /*margin-left: 20px;*/
}
.pp-active .pp-advanced-menu-mobile-toggle-label::after{
    /*content: 'f106';*/
}
.tribe-mobile .fl-row:first-child .fl-col-content {
    border: none;
}

/* MODULE : TAXONOMY LIST */
.archive .cob-term-item,
.events-archive .cob-term-item{
    /*flex: 0 0 calc(100% / 8 - 20px) !important;*/
    flex: 0 0 calc(100% / 6 - 20px) !important;
    margin-left: 0 !important;
    margin-right: 20px !important;
}

.archive .cob-term-image,
.events-archive .cob-term-image{
    filter: grayscale(100%);
}

.cob-term-item.current-item .cob-term-image, 
.cob-term-item.current-item .cob-term-image, 
.cob-term-item.current-item .cob-term-image {
    opacity: 0.1;
}

a span.cob-term-name {
    font-size: 22px;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
}


/* === BEAVER THEMER : SINGLE : EVENT === */
@media screen and (max-width: 767px){
    .tribe-events-single h1 .fl-heading-text,
    .tribe-events-single h1 {
        font-size: 34px !important;
        line-height: 34px !important;
    }
}
.cob-event-trailer{
    text-align: center;
}
.cob-event-trailer-button{
    display: inline-block;
    margin: 2rem auto;
}
.cob-event-trailer-button a{
    display: block;
    border: 2px solid #b2b2b2;
    color: #b2b2b2;
    padding: 20px 30px;
}
.cob-event-trailer-overlay{
    display: none;
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}
.cob-event-trailer-content{
    transform: translate(-50%,-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: auto;
    text-align: center;
}
.cob-event-trailer-content iframe{
    width: 100%;
    height: auto;
}
.cob-event-acf-datas {
    color: #ff1844;
    font-size: 26px;
    text-align: center;
}
.tribe-mobile .cob-event-acf-datas {
    font-size: 15px;
}
.tribe-mobile .cob-event-modal-pass .pp-modal-trigger .pp-modal-trigger-text{
    font-size: 17px;
    line-height: 1.4
}

/* GRIDS */

@media screen and (max-width: 767px){
    .cob-term-item,
    .cob-term-item:nth-child(3n+1):nth-last-child(2),
    .cob-term-item:nth-child(3n+2):last-child,
    .archive .cob-term-item,
    .events-archive .cob-term-item
    {
        margin-left: 0;
        margin-right: 0;
        flex: auto !important;
        /*flex: 40%;*/
    }
    
  .cob-term-item {
      width: 42% !important;
        float: left !important;
        margin: 4% 4% !important;
  }
  
  a span.cob-term-name {
    font-size: 16px;
}
  
  .cob-taxonomy-grid {
      display: block !important;
  }
  
  .cob-term-item:nth-child(2n) {
      overflow: hidden !important;
  }
    
    .cob-term-item:nth-child(3n+1):nth-last-child(2) {
       
    }
}



.cob-highlight H1,H2,H3,H4 {
    color: #ffffff;
}

/* === THE EVENT CALENDAR === */
/* TEC : VIEWS/PRO/PHOTO/SINGLE-EVENT */
#tribe-events-photo-events .tribe-events-list .type-tribe_events,
#tribe-events-photo-events .type-tribe_events.tribe-events-photo-event .tribe-events-photo-event-wrap{
    border: none;
}
#tribe-events-photo-events .tribe-events-photo-event-wrap {
    background: none;
}
.tribe-events-photo-event-wrap:hover {
    box-shadow: none;
    background: none;
}
#tribe-events-photo-events .type-tribe_events.tribe-events-photo-event.tribe-event-featured .tribe-events-photo-event-wrap,
#tribe-events-photo-events .type-tribe_events.tribe-events-photo-event.tribe-event-featured .tribe-events-photo-event-wrap:hover {
    background: none;
    color: #000000;
}
#tribe-events-photo-events .tribe-events-list-event-title a:hover {
    color: #FF1844;
}
/*.cob-event-dates,
.cob-event-venues {
    display: none;
}*/
.cob-event-dates {
    text-align: center;
}
.cob-event-date {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 900;
}
.cob-event-date:first-of-type {
    color: #FF1844;
}
.cob-event-venues {
    text-align: center;
    transform: translateY(-50%);
}
.cob-event-venue a{
    color: #ffffff;
    background: #000000;
    padding: 5px;
    font-size: 1.1rem;
    font-weight: 900;
}
.cob-event-venue:first-of-type a{
    background: #FF1844;
}
#tribe-events-photo-events .cob-event-venues .cob-event-venue:first-child a:hover {
    color:#ffffff;
    text-decoration: none;
    background: #000000;
}

#tribe-events-photo-events .cob-event-venues .cob-event-venue:last-child a:hover {
    color:#ffffff;
    text-decoration: none;
    background: #FF1844;
}

.tribe-events-list .tribe-events-loop .tribe-events-photo-event .tribe-events-event-details {
    min-height: 145px;
}
#tribe-events-photo-events h2 a{
    display: block;
    text-align: center;
    font-size: 2.3rem;
    line-height: 1.2;
    font-weight: 700;
    color: #000000;
}
#tribe-events-photo-events .tribe-events-list-event-title a{
    color: #000000;
    -webkit-transition: color 0.2s ease-out;
    -moz-transition: color 0.2s ease-out;
    -o-transition: color 0.2s ease-out;
    transition: color 0.2s ease-out;
}
#tribe-events-photo-events .tribe-events-photo-event .tribe-events-photo-event-wrap:hover .tribe-events-list-event-title a,
.tribe-events-list #tribe-events-photo-events.tribe-events-loop .tribe-event-featured .tribe-events-list-event-title a:hover{
    color: #FF1844;
    -webkit-transition: color 0.2s ease-in;
    -moz-transition: color 0.2s ease-in;
    -o-transition: color 0.2s ease-in;
    transition: color 0.2s ease-in;
}
#tribe-events-photo-events .cob-event-tag {
    color:#FF1844;
    text-transform: uppercase;
    font-family: Nunito Sans;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}
.cob-event-directors {
    text-align: center;
    font-size: 16px;
    font-family: 'Nunito Sans';
    line-height: normal;
    color: #000000;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 700;
}
.cob-event-programs {
    padding: 0;
    list-style: none;
    text-align: center;
}
.cob-event-programs li {
    display: inline-block;
    margin: 0 5px 0 0;
    font-family: Nunito Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.tribe-events-list #tribe-events-photo-events.tribe-events-loop .tribe-event-featured a,
.cob-event-programs li {
    color: #000;
}
.cob-event-programs li:last-child {
    margin: 0;
}
.cob-event-programs li:not(:first-child)::before {
    content: '/ ';
    color: #000;/*#FF1844;*/
}

/* TEC : VIEWS/MODULES/META/DETAILS */
/*.fl-module-fl-the-events-calendar-details{
    display: none;
}*/
.cob-event-schedules {
	text-align: center;
	/*display: none;*/
}
.cob-event-schedule {
	display: inline-block;
	font-size: 0;
}
.cob-event-schedule-multiple {
	float: left;
	max-width: 50%;
}
.cob-event-schedule-multiple:last-child {
	float: right;
}
.cob-event-schedule-multiple:last-child::after {
	clear: both;
}
@media screen and (max-width: 767px){
    body .cob-event-datas span {
        font-size: 12px;
    }
}
@media screen and (max-width: 989px){
    body .cob-event-schedule-multiple  {
        display: block;
        max-width: 100%;
        width: 100%;
    }
}
.cob-event-schedule-data {
	display: inline-block;
	padding: 10px 30px;
	background: #000000;
	color: #ffffff !important;
	font-size: 2rem;
	font-weight: 900;
	
}
.cob-event-schedules .cob-event-schedule .cob-event-schedule-venue {
	background: #FF1744;
}
.cob-event-tickets {
	text-align: center;
	color: #000000;
	text-transform: uppercase;
	font-size: 1.7rem;
    padding: 2rem 1rem;
}
.cob-event-tickets a{
    padding-bottom: 3px;
    border-bottom: 1px solid #000000;
}
.cob-event-tickets a:hover{
    color: #FF1744 !important;
    border-bottom: 1px dotted #FF1744;
}

/* ===  PAGE : HOME : DYNAMIC BLOCKS === */
.cob-une-bloc {
    height: 385px;
    background-position: center center;
    background-size: cover;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.65);
    padding: 10px 30px !important;
}
.cob-une-bloc h2 {
    position: absolute;
    bottom: 10px;
    color: #fff;
    transition: all 0.3s;
    padding-bottom: 0;
    opacity: 1;
}
.cob-une-bloc:hover h2 {
   padding-bottom: 30px;
   opacity: 0.6;
}
.cob-une-bloc h2 a {
    color: #fff;
    font-weight: bold;
    font-size: 38px;
    line-height: 1.2;
}
.cob-une-bloc h4 {
    color: #fff;
}

.cob-une-posts-bloc h2 a {
    font-size: 25px !important;
    font-weight: normal !important;
}

/* HOME DYNAMIC BLOCKS 2019 */

.cob-post-block {
    padding: 20px;
    padding-bottom: 15px;
    background-repeat: no-repeat;
    /*background-size: cover;*/
    background-size: cover;
    background-position: center;
    height: 100%;
    /*text-shadow: 2px 2px 6px rgba(0,0,0,0.65);*/
    display: block;
    transition: all 0.3s;
}

.cob-post-block:hover {
    
}

.cob-post-block:hover .cob-post-text {
    padding-top: 120px;
}

.cob-post-block:hover {
    text-decoration: none;
}

.cob-post-block h2,
.cob-post-block span {
    margin-bottom: 0;
    display: block;
}

.cob-post-block .cob-post-block-content {
    z-index: 2 !important;
    display: block;
    margin: 0;
    position: relative;
    z-index: 1;
}

.cob-post-block .cob-post-block-content * {
    color: #fff !important;
}

.cob-darken-overlay:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 0;
}

.cob-post-block:hover .cob-darken-overlay:after {
  background-color: rgba(255, 0, 0, 0.4);
}

.cob-post-excerpt {
    margin-bottom: 0;
    padding-bottom: 0;
    font-size: 19px;
}

.cob-post-text {
    padding-top: 150px;
    transition: all 0.3s;
}

.cob-post-title {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0px;
}

.cob-tag {
    font-size: 19px;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 19px;
}

/* ===  PAGE : GRILLE HORAIRE COMPLETE === */
#tribe_events_filter_item_eventcategory .tribe-events-category-village-briff,
#tribe_events_filter_item_eventcategory .tribe-events-category-masterclass {
    display: none !important;
}
.events-list .tribe-events-page-title {
    display: none;
}
#tribe-events.view-list #tribe-bar-views,
.events-list #tribe-events #tribe-bar-views{
    display: none;
}
#tribe-events.view-list .tribe-bar-filters,
.events-list #tribe-events .tribe-bar-filters{
    right: 0 !important;
    width: 100% !important;
}
.events-list .tribe-events-loop {
    max-width: none;
}
#tribe-events.view-list .tribe-events-list .type-tribe_events,
.events-list #tribe-events .tribe-events-list .type-tribe_events{
    /*border-top: 1px solid #000000;*/
    padding-top: 0;
    margin-bottom: 0;
}
#tribe-events.view-list .tribe-events-event-display,
.events-list #tribe-events .tribe-events-event-display,
.tribe-events .tribe-events-event-display {
    display: flex;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 1rem;
    border-left: 5px solid #fff;
    border-bottom: 1px solid #000;
}
#tribe-events.view-list .tribe-events-event-metas,
.events-list #tribe-events .tribe-events-event-metas,
.tribe-events .tribe-events-event-metas {
    flex-basis: 15%;
    min-width: 138.15px;
}
#tribe-events.view-list .tribe-events-event-datetime,
.events-list #tribe-events .tribe-events-event-datetime,
.tribe-events .tribe-events-event-datetime{
    font-weight: 900;
}
#tribe-events.view-list .tribe-events-event-venue,
.events-list #tribe-events .tribe-events-event-venue,
.tribe-events .tribe-events-event-venue{
    display: inline-block;
    background-color: #000000;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 0.8em;
    margin-top: 0.4em;
}
#tribe-events.view-list .tribe-events-event-image,
.events-list #tribe-events .tribe-events-event-image,
.tribe-events .tribe-events-event-image{
    flex-basis: 15%;
    float: none
}
#tribe-events.view-list .tribe-events-event-details,
.events-list #tribe-events .tribe-events-event-details,
.tribe-events .tribe-events-event-details{
    text-align: left;
    flex-grow: 1;
}
#tribe-events.view-list .tribe-events-list-event-title,
.events-list #tribe-events .tribe-events-list-event-title,
.tribe-events .tribe-events-event-title{
    font-weight: 900;
    margin-bottom: 0.4em;
    line-height: 1;
    display: block;
}
#tribe-events.view-list .tribe-events-list-event-title a:hover,
.events-list #tribe-events .tribe-events-list-event-title a:hover,
.tribe-events .tribe-events-event-title a:hover{
    color: #000000;
}
#tribe-events.view-list .cob-event-directors,
.events-list #tribe-events .cob-event-directors,
.tribe-events .cob-event-directors{
    text-align: left;
}
#tribe-events.view-list .cob-event-programs,
.events-list #tribe-events .cob-event-programs,
.tribe-events .cob-event-programs{
    text-align: left;
}
#tribe-events.view-list .cob-event-tag,
.events-list #tribe-events .cob-event-tag,
.tribe-events .cob-event-tag{
    background: #FF1744;
    display: inline-block;
    color: #fff;
    font-family: Nunito Sans;
    font-style: normal;
    font-weight: 900;
    font-size: 12px;
    line-height: normal;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 8px;
    vertical-align: middle;
    float: right;
}
#tribe-events.view-list .cob-event-infos,
.events-list #tribe-events .cob-event-infos,
.tribe-events .cob-event-infos {
    font-family: Nunito Sans;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    margin-bottom: 4px;
}

/* new tribe view 2021 */

.tribe-events .attachment-thumbnail {
    width: 200px;
    margin-right: 10px;
}

.tribe-events a {
    color: #ff1744 !important;
}

.cob-event-directors {
    font-weight: bold !important;
}

.tribe-events .tribe-events-list-event-title{
    font-weight: 900;
    margin-bottom: 0.4em;
    line-height: 1;
    font-size: 1.6em;
}

.tribe-events .day-name {
    margin: 40px 0 10px;
    font-weight: bold;
}

.tribe-events .tribe-events-calendar-list-nav {
    display: none !important;
}

.tribe-events .tribe-events-c-ical {
    display: none;
}

.tribe-common .tribe-common-c-btn {
    background-color: red !important;
    border-radius: 0 !important;
}

/* end new tribe view 2021 */


@media all and (max-width: 768px) {
	#tribe-events.view-list .tribe-events-event-display,
	.events-list #tribe-events .tribe-events-event-display,
    .tribe-events .tribe-events-event-display {
	    flex-wrap: wrap;
	}
	#tribe-events.view-list .tribe-events-event-metas,
	.events-list #tribe-events .tribe-events-event-metas,
    .tribe-events .tribe-events-event-venue{
	    flex-basis: 100%;
	    display: flex;
	    justify-content: space-between;
	    margin-bottom: 1rem;
	}
	#tribe-events.view-list .tribe-events-event-image,
	.events-list #tribe-events .tribe-events-event-image,
    .tribe-events .tribe-events-event-image{
	    display: none;
	}
	#tribe-events.view-list .tribe-events-event-details,
	.events-list #tribe-events .tribe-events-event-details,
    .tribe-events .tribe-events-event-details{
	    flex-basis: 100%;
	}
	#tribe-events.view-list .tribe-events-event-venue,
	.events-list #tribe-events .tribe-events-event-venue,
    .tribe-events .tribe-events-event-venue{
        margin-top: 0;
    }
}

.menuinvactive {
    color:#cccccc !important;
    cursor: pointer;
}

.position-bottom {
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.position-bottom {
    position: absolute !important;
    bottom: 0;
    left: 0;
    line-height: 30px;
    opacity: 1;
    transition: all 0.3s;
    padding-bottom: 0;
}

/*.fl-node-content:hover .position-bottom {
    bottom: 20px;
}*/

.position-bottom:hover {
    cursor: pointer;
    opacity: 0.7;
    padding-bottom: 20px;
}

.position-relative .fl-col-content {
    position: relative;
}
/* End Layout CSS */

.fl-node-5fc614b932ed5 .fl-post-grid-post {
  font-size: 14px;
}
.fl-node-5fc614b932ed5 .fl-post-text {
  padding: 10px;
}
.fl-node-5fc614b932ed5 .fl-post-title {
  color: #ff1744;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  padding: 0 0 5px;
}
.fl-node-5fc614b932ed5 .fl-post-meta {
  padding: 0 0 15px;
  color: rgba(192,192,192,0.91);
  font-size: 11px;
}
.fl-node-5fc614b932ed5 .fl-post-image {
  height: 150px !important;
  overflow: hidden;
}
/* Meta */
.fl-post-grid-event-calendar-meta {
	padding-bottom: 10px;
}
.fl-post-feed-text .fl-post-grid-event-calendar-meta {
	padding-bottom: 0;
}
.fl-post-grid-event-calendar-date {
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.fl-post-grid-event-calendar-address {
	font-style: italic;
}
.fl-post-grid-event-calendar-address abbr {
	border: none !important;
	text-decoration: none;
}

/* Cost */
.fl-post-module-event-calendar-cost.tribe-events-event-cost {
	margin: 0 0 10px 0;
}
.fl-post-feed-text .fl-post-module-event-calendar-cost.tribe-events-event-cost {
	margin: 10px 0 0 0;
}
.fl-post-module-event-calendar-cost button.tribe-button {
	border: none;
	margin: 0 0 0 10px;
}


                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .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-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        