/**
 * 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 .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	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 {
	width: 100%;
	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;
	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;
}
.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;
}
.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;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1200px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.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-92srpob1hv7y > .fl-row-content-wrap {
	background-color: #00aded;
}
 .fl-node-92srpob1hv7y > .fl-row-content-wrap {
	padding-bottom:0px;
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    






                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    



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




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




.fl-node-j98ltugzs7fc {
	width: 42%;
}




.fl-node-klz2vi6anfch {
	width: 57%;
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-h8qvnosdtf4u.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-h8qvnosdtf4u > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-mjzf6ysk1otd.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-mjzf6ysk1otd > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-d63w01y498es.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-d63w01y498es > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-wljq9sa3kbni.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-wljq9sa3kbni > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-pg0ytcjr28wu.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-pg0ytcjr28wu > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-j6bro98lwa73.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-j6bro98lwa73 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-4qmvt9j7spyi.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-4qmvt9j7spyi > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-8pld5oe2a40h.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-8pld5oe2a40h > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-rxn5a9l26ice.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-rxn5a9l26ice > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-12g6wfd7me4u.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-12g6wfd7me4u > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-xhmoc1q9knl7.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-xhmoc1q9knl7 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-y2xnoiqlzatw.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-y2xnoiqlzatw > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-f80hdux42bq1.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-f80hdux42bq1 > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-9tuh5an47bdl.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-9tuh5an47bdl > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-s5l1cqzd8rtm.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-s5l1cqzd8rtm > .fl-module-content {
	margin-bottom:10px;
}
.fl-node-12bepd5xkc8u.fl-module-heading .fl-heading {
	text-align: center;
}
 .fl-node-12bepd5xkc8u > .fl-module-content {
	margin-bottom:10px;
}
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-fc23as7imkgq, .fl-node-fc23as7imkgq .fl-photo {
	text-align: center;
}
 .fl-node-fc23as7imkgq.fl-module-photo {
	margin-bottom:0px;
}
.fl-node-ypst9a1km5bz, .fl-node-ypst9a1km5bz .fl-photo {
	text-align: center;
}
/* Wrappers */
body.rtl .fl-module-testimonials .bx-viewport {
	direction: ltr;
}
body.rtl .fl-testimonials-wrap.compact .fl-slider-next {
	left: 18px;
	right: auto;
}
body.rtl .fl-testimonials-wrap.compact .fl-slider-prev {
	right: auto !important;
	left: 0;
}
body.rtl .fl-testimonials-wrap .fl-testimonial {
	direction: rtl;
}

.fl-module-testimonials {
	flex-grow: 1;
	place-self: stretch;
}

.fl-module-testimonials .bx-wrapper {
	margin: 0 auto 35px;
}
.fl-testimonials-wrap {
	position: relative;
}
.fl-testimonials-wrap button,
.fl-testimonials-wrap button:focus,
.fl-testimonials-wrap button:hover {
	all: unset;
	cursor: pointer;
}
.fl-testimonials-wrap .fl-testimonial {
	position: absolute;
	top: 0;
	visibility: hidden;
}
.fl-testimonials-wrap .fl-testimonial > blockquote {
	margin: 0;
}
.fl-testimonials-wrap .fl-testimonial:first-child,
.fl-testimonials-loaded .fl-testimonial {
	position: relative;
	visibility: visible;
}
.fl-testimonials-wrap .fa {
	opacity: 0.8;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.fl-testimonials-wrap .fa:hover {
	opacity: 1;
}

/* Wide */
.fl-testimonials.wide {
	text-align: center;
}
.fl-testimonials-wrap.wide .fl-slider-next,
.fl-testimonials-wrap.wide .fl-slider-prev {
	position: absolute;
	top: 50%;
	margin-top:-10px;
	right: 0px;
}
.fl-testimonials-wrap.wide .fa {
	font-size: 23px;
	position: relative;
	z-index: 1;
}
.fl-testimonials-wrap.wide .fl-slider-prev {
	left: 0px !important;
}

/* Compact */
.fl-testimonials-wrap.compact h3 {
	margin: .3em 0;
}
.fl-testimonials-wrap.compact .fl-slider-next,
.fl-testimonials-wrap.compact .fl-slider-prev {
	position: absolute;
	top: 9px;
	right: 0;
}
.fl-testimonials-wrap.compact .fa {
	font-size: 17px;
}
.fl-testimonials-wrap.compact .fl-slider-prev {
	right: 18px !important;
}

/* Navigation Fixes */
.fl-testimonials-wrap .fl-slider-next a.disabled,
.fl-testimonials-wrap .fl-slider-prev a.disabled,
.fl-testimonials-wrap .bx-controls a.disabled,
.fl-testimonials-wrap .fl-slider-next button.disabled,
.fl-testimonials-wrap .fl-slider-prev button.disabled,
.fl-testimonials-wrap .bx-controls button.disabled {
	pointer-events: none;
}
.fl-testimonials-wrap .fl-slider-next button:focus,
.fl-testimonials-wrap .fl-slider-prev button:focus {
	outline: 1px auto -webkit-focus-ring-color;
}.fl-node-81k04iz5c2f3 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-81k04iz5c2f3 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-81k04iz5c2f3 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-81k04iz5c2f3 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-81k04iz5c2f3 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-81k04iz5c2f3 .fl-testimonials-wrap .fas:hover,
.fl-node-81k04iz5c2f3 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-81k04iz5c2f3 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-81k04iz5c2f3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-omkl736a5ubr .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-omkl736a5ubr .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-omkl736a5ubr .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-omkl736a5ubr .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-omkl736a5ubr .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-omkl736a5ubr .fl-testimonials-wrap .fas:hover,
.fl-node-omkl736a5ubr .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-omkl736a5ubr .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-omkl736a5ubr > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-wr5xfua368i2 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-wr5xfua368i2 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-wr5xfua368i2 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-wr5xfua368i2 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-wr5xfua368i2 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-wr5xfua368i2 .fl-testimonials-wrap .fas:hover,
.fl-node-wr5xfua368i2 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-wr5xfua368i2 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-wr5xfua368i2 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-az8q0oh5xm96 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-az8q0oh5xm96 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-az8q0oh5xm96 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-az8q0oh5xm96 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-az8q0oh5xm96 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-az8q0oh5xm96 .fl-testimonials-wrap .fas:hover,
.fl-node-az8q0oh5xm96 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-az8q0oh5xm96 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-az8q0oh5xm96 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-yivpaj6kdt8f .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-yivpaj6kdt8f .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-yivpaj6kdt8f .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-yivpaj6kdt8f .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-yivpaj6kdt8f .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-yivpaj6kdt8f .fl-testimonials-wrap .fas:hover,
.fl-node-yivpaj6kdt8f .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-yivpaj6kdt8f .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-yivpaj6kdt8f > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-wgzqvsar7n0h .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-wgzqvsar7n0h .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-wgzqvsar7n0h .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-wgzqvsar7n0h .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-wgzqvsar7n0h .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-wgzqvsar7n0h .fl-testimonials-wrap .fas:hover,
.fl-node-wgzqvsar7n0h .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-wgzqvsar7n0h .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-wgzqvsar7n0h > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-jdv1z0ixohqc .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-jdv1z0ixohqc .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-jdv1z0ixohqc .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-jdv1z0ixohqc .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-jdv1z0ixohqc .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-jdv1z0ixohqc .fl-testimonials-wrap .fas:hover,
.fl-node-jdv1z0ixohqc .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-jdv1z0ixohqc .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-jdv1z0ixohqc > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-1xhl30p58asg .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-1xhl30p58asg .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-1xhl30p58asg .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-1xhl30p58asg .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-1xhl30p58asg .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-1xhl30p58asg .fl-testimonials-wrap .fas:hover,
.fl-node-1xhl30p58asg .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-1xhl30p58asg .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-1xhl30p58asg > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-8s5wbx7ajdf3 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-8s5wbx7ajdf3 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-8s5wbx7ajdf3 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-8s5wbx7ajdf3 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-8s5wbx7ajdf3 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-8s5wbx7ajdf3 .fl-testimonials-wrap .fas:hover,
.fl-node-8s5wbx7ajdf3 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-8s5wbx7ajdf3 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-8s5wbx7ajdf3 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-v612zgol59fm .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-v612zgol59fm .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-v612zgol59fm .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-v612zgol59fm .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-v612zgol59fm .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-v612zgol59fm .fl-testimonials-wrap .fas:hover,
.fl-node-v612zgol59fm .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-v612zgol59fm .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-v612zgol59fm > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-ml84j7wdk6ei .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-ml84j7wdk6ei .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-ml84j7wdk6ei .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-ml84j7wdk6ei .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-ml84j7wdk6ei .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-ml84j7wdk6ei .fl-testimonials-wrap .fas:hover,
.fl-node-ml84j7wdk6ei .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-ml84j7wdk6ei .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-ml84j7wdk6ei > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-7dhwnux0y981 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-7dhwnux0y981 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-7dhwnux0y981 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-7dhwnux0y981 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-7dhwnux0y981 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-7dhwnux0y981 .fl-testimonials-wrap .fas:hover,
.fl-node-7dhwnux0y981 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-7dhwnux0y981 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-7dhwnux0y981 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-h5uwn9cdfx64 .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-h5uwn9cdfx64 .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-h5uwn9cdfx64 .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-h5uwn9cdfx64 .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-h5uwn9cdfx64 .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-h5uwn9cdfx64 .fl-testimonials-wrap .fas:hover,
.fl-node-h5uwn9cdfx64 .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-h5uwn9cdfx64 .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-h5uwn9cdfx64 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-5hw6idxvum8a .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-5hw6idxvum8a .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-5hw6idxvum8a .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-5hw6idxvum8a .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-5hw6idxvum8a .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-5hw6idxvum8a .fl-testimonials-wrap .fas:hover,
.fl-node-5hw6idxvum8a .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-5hw6idxvum8a .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-5hw6idxvum8a > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-lb5xt36cnoze .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-lb5xt36cnoze .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-lb5xt36cnoze .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-lb5xt36cnoze .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-lb5xt36cnoze .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-lb5xt36cnoze .fl-testimonials-wrap .fas:hover,
.fl-node-lb5xt36cnoze .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-lb5xt36cnoze .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-lb5xt36cnoze > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-ebo7g89nil1q .fl-testimonials-wrap.compact h3 {
	font-size: 24px;
}
.fl-node-ebo7g89nil1q .fl-testimonials-wrap .bx-pager.bx-default-pager a,
.fl-node-ebo7g89nil1q .fl-testimonials-wrap .bx-pager.bx-default-pager a:focus,
.fl-node-ebo7g89nil1q .fl-testimonials-wrap .bx-pager.bx-default-pager a.active {
	background: #999999;
	opacity: 1;
}
.fl-node-ebo7g89nil1q .fl-testimonials-wrap .bx-pager.bx-default-pager a {
	opacity: 0.2;
}
.fl-node-ebo7g89nil1q .fl-testimonials-wrap .fas:hover,
.fl-node-ebo7g89nil1q .fl-testimonials-wrap .fas {
	color: #999999;
}
.fl-node-ebo7g89nil1q .fl-testimonials-wrap.fl-testimonials-no-heading {
	padding-top: 25px;
}
 .fl-node-ebo7g89nil1q > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-node-aupxesi9ro4m .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-aupxesi9ro4m .fl-separator {
	border-top-color: #ffffff;
	border-top-style: solid;
}
.fl-row .fl-col h2.fl-node-gx0syw5mlaq2,
		.fl-row .fl-col h2.fl-node-gx0syw5mlaq2 a,
		h2.fl-node-gx0syw5mlaq2,
		h2.fl-node-gx0syw5mlaq2 a {
	color: #ffffff;
}
.fl-node-gx0syw5mlaq2.fl-module-heading, .fl-node-gx0syw5mlaq2.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}

/* Start Global CSS */
/* -------------------------------- 

Miscellaneous

-------------------------------- */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: none !important;
}

/* -------------------------------- 

Typography

-------------------------------- */

body {
    font-family: museo-sans,sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #333 !important;
    line-height: 1.8 !important;
    background-color: #fff;
}

a {
    text-decoration: none;
    font-weight: 400;
    line-height: 1.8;
    transition: all 200ms ease-in-out !important;
    outline: none;
}

a:after, a:before {
    transition: all 200ms ease-in-out !important;
    text-decoration: none !important
}

a:hover, a:focus {
    text-decoration: none !important;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: museo-sans,sans-serif !important;
    font-weight: 700 !important;
    color: #333;
    line-height: 1.1 !important;
}

p {
    margin-bottom: 2.5rem;
}

/* -------------------------------- 

Post Grid

-------------------------------- */

.fl-post-grid-post {
    border-radius: 10px;
    box-shadow: 0 0 40px 0 rgba(0,0,0,0.2);
}

.fl-post-grid-post:hover .grid-post__title a {
    color: #00aded;
}

.grid-post__inner {
    padding: 3rem;
}

.grid-post__category {
    display: block;
}

.grid-post__category a {
    color: #a5a7a6;
}

.grid-post__title {
    margin: 5px 0 10px 0;
}

.grid-post__title a {
    font-weight: 700;
    line-height: 1.2;
}

.grid-post__footer {
    margin-top: 20px;
}

.grid-post__author {
    display: flex;
    align-items: center;
}

.grid-post__author img {
    border-radius: 100%;
    margin-right: 10px;
}

.grid-post__author a {
    font-weight: 700;
    color: #333;
    font-size: 15px;
}

.grid-post__meta {
    color: #a5a7a6;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*Blog Posts*/

.grid-post__header-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid-post__reading-time {
    display: block;
    color: #a5a7a6;
}

/* -------------------------------- 

Post Grid Responsive Changes

-------------------------------- */

#post-grid .fl-col-group .fl-col-small {
    max-width: 100% !important;
}

@media only screen and (max-width: 768px) {
    #post-grid .fl-col-small {
        width: 100% !important;
    }
}

/* -------------------------------- 

Pagination Styling

-------------------------------- */

.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
    border: none !important;
    margin: 0 !important;
    color: #fff !important;
}

.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
    background: #fff !important;
    border-radius: 5px !important;
    color: #333 !important;
}

.fl-builder-pagination, .fl-builder-pagination-load-more {
    text-align: center;
}

.fl-builder-pagination ul.page-numbers {
    display: inline-block;
    background-color: #00aded;
    padding: 2rem !important;
    border-radius: 10px;
    box-shadow: 0 0 40px 0 rgba(0,0,0,0.2);
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
.phil-img {
    background-color: #000;
    width: 100%;
    height: 300px;
    background-image: url('https://laughagain.ca/wp-content/uploads/2018/03/phil-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

.about-laughagain p {
    margin: 0 !important;
}

.about-laughagain h1, .about-laughagain h2 {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
}

.btn {
    border: none !important;
}


#gform_wrapper_4 input::-webkit-input-placeholder,
#gform_wrapper_4 textarea::-webkit-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input:-ms-input-placeholder,
#gform_wrapper_4 textarea:-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-ms-input-placeholder,
#gform_wrapper_4 textarea::-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-moz-placeholder,
#gform_wrapper_4 textarea::-moz-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::placeholder,
#gform_wrapper_4 textarea::placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input, #gform_wrapper_4 select, #gform_wrapper_4 textarea {
    outline: none !important;
}

#gform_wrapper_4 input:focus, #gform_wrapper_4 select:focus, #gform_wrapper_4 textarea:focus {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: 1px solid #333;
}

#gform_wrapper_4 {
    margin: 0;
    padding: 0;
}

.ginput_container {
    margin: 0 !important;
}

/*---- NAME ----*/
#field_4_1 {
    margin: 0;
    padding: 0 !important;
}

#field_4_1 .gfield_label {
    display: none !important;
}

#field_4_1 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

.name_first, .name_last {
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    margin: 0 !important;
}

.name_last {
    border-left: none !important;
    float: right;
}

.name_first input, .name_last input {
    margin: 0 !important;
}

.name_first label, .name_last label {
    display: none !important;
}

.gform_wrapper .ginput_complex.ginput_container {
    width: 100% !important;
}

/*---- EMAIL / PHONE ----*/
#field_4_3 {
    margin: 0;
    padding: 0px !important;
}

#field_4_3 .gfield_label {
    display: none !important;
}

#field_4_3 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border-top: none !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

#field_4_2 {
    margin: 0;
    padding: 0 !important;
}

#field_4_2 .gfield_label {
    display: none !important;
}

#field_4_2 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border-top: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

/*---- ROLE IN EVENT ----*/
#field_4_4 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_4 .gfield_label {
    display: none !important;
}

#field_4_4 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_5 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_5 .gfield_label {
    display: none !important;
}

#field_4_5 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

/*---- EVENT ADDRESS ----*/
#field_4_6 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_6 .gfield_label {
    display: none !important;
}

#field_4_6 input, #field_4_6 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_6 span:first-child input {
    border: 1px solid #d2d2d2 !important;
}

#field_4_6 label {
    display: none;
}

.address_city, .address_state,
.address_zip, .address_country {
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-top: none !important;
}

#input_13_4_5_container {
    padding: 0 !important;
}

.address_state, .address_country {
    border-left: none !important;
}

.address_city input, .address_state input,
.address_zip input, .address_country select  {
    border: none !important;
}

#field_4_6 span.ginput_right+span.ginput_left {
    padding-right: 0 !important;
}

/*---- EVENT DATE/TIME ---- */
#field_4_7, #field_4_8 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_8 label, #field_4_7 label, #field_4_8 i {
    display: none;
}

#field_4_7 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    width: 100%;
    border: none !important;
    margin: 0 !important;
}

#field_4_7 .ginput_container {
    border: 1px solid #d2d2d2;
}

.gform_wrapper .clear-multi {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

#field_4_8 input, #field_4_8 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0 !important;
    width: 100%;
}

#field_4_8 .ginput_container {
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid #d2d2d2;
    border-left: none;
}

#input_4_8_3 {
    margin: 0 !important;
    max-width: 100% !important;
}

/*---- EVENT DESCRIPTION ----*/
#field_4_12 {
    margin: 2rem 0 0;
    padding: 0;
}

#field_4_12 label {
    display: none;
}

#field_4_12 textarea {
    background-color: #fff;
    padding: 25px 30px !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-radius: 0 !important;
    width: 100%;
}

/*---- EVENT ORGANIZER ----*/
#field_4_9 {
    margin: 2rem 0 0;
    padding: 0px !important;
}

#field_4_9 .gfield_label {
    display: none !important;
}

#field_4_9 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_10 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_10 .gfield_label {
    display: none !important;
}

#field_4_10 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;

}

/*--- REQUEST LETTER UPLOAD ----*/
#field_4_11 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_11 label {
    text-transform: none;
    letter-spacing: 0;
}

#field_4_11 label:after {
    content: ' (if applicable)';
    color: rgba(0,0,0,0.5);
    font-size: 11px;
}

#input_4_11 {
    border: none !important;
    width: 100%;
    padding: 0 !important;
    margin-top: 0.5rem;
}

/*---- FOOTER ----*/
.gform_footer {
    padding: 0 !important;
    margin: 2rem 0 0 !important;
}

#gform_submit_button_4 {
    background-color: #00aded;
    height: 60px;
    width: 100%;
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

#gform_submit_button_4:hover {
    opacity: 0.8;
}

@media screen and (max-width: 641px) {
    .gform_wrapper .ginput_container span:not(.ginput_price) {
        margin: 0 !important;
    }
    
    .name_last {
        float: none;
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_3 input {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_5, #field_4_8, #field_4_10 {
        margin-top: 0 !important;
    }
    
    #field_4_5 input, #field_4_10 input {
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    .address_state, .address_country {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_7 .ginput_container {
        border-bottom: none !important;
    }
    
    #field_4_8 #input_4_8 {
        border-left: 1px solid #d2d2d2 !important;
    }
}
.fl-post-feed-post {
    overflow: visible;
}

/*------------------------------
Featured LATV
------------------------------*/

.featured__image {
    box-shadow: 0 3px 20px rgb(110 123 157 / 50%);
    border-radius: 10px;
}

.featured__image img {
    border-radius: 10px;
}

.latv__featured-category {
    display: block;
    margin-bottom: 24px;
    color: #00aded;
    font-size: 12px;
    font-weight: 900 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.latv__featured-category .fl-category {
    display: inline !important;
}

.latv__featured-title {
    margin-top: 0;
    margin-bottom: 15px;
}

.latv__featured-title a {
    font-size: 58px;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
    color: #130b2c;
}

.latv__featured-title a:hover {
    color: #00aded;
}

.latv__featured-description p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #130b2c;
}

.latv__featured-button-wrapper a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    padding: 12px 28px;
    border-radius: 5px;
    background-color: #00aded;
    display: inline-block;
    position: relative;
}

.latv__featured-button-wrapper a i {
    font-size: 13px;
    margin-right: 10px;
}

.latv__featured-button-wrapper a:hover {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
    color: #fff;
}

/*------------------------------
LATV Grid
------------------------------*/

.fl-post-grid-post {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.fl-post-grid-post:hover .latv__image {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
}

.latv__image {
    position: relative;
    border-radius: 10px;
    transition: all 200ms ease-in-out;
}

.latv__image img {
    border-radius: 10px;
}

.latv__category {
    display: block;
    color: #00aded;
    font-size: 10px;
    font-weight: 900 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 5px;
    padding: 0 15px;
    line-height: 30px;
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
}

.latv__body {
    padding: 30px 0;
    background-color: #fff;
}

.latv__title {
    margin-top: 0;
    margin-bottom: 15px;
}

.latv__title a {
    color: #130b2c;
    font-size: 28px;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.latv__title a:hover {
    color: #00aded;
}

.latv__description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #130b2c;
}

.latv__button-wrapper a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    line-height: 40px;
    padding: 0 22px;
    border-radius: 5px;
    background-color: #00aded;
    display: inline-block;
    position: relative;
}

.latv__button-wrapper a i {
    font-size: 9px;
    margin-right: 5px;
}

.fl-post-grid-post:hover .latv__button-wrapper a {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
    color: #fff;
}

/*------------------------------
About Laugh Again TV
------------------------------*/

.latv__about-button {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    padding: 10px 26px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
}

.latv__about-button.btn-trailer:hover {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
    color: #fff;
}

.latv__about-button.btn-trailer {
    background-color: #275676;
}

.latv__about-button.btn-subscribe {
    background-color: #ff0000;
    margin-left: 10px;
}

.latv__about-button.btn-subscribe:hover {
    background-color: #f4f4f6;
    color: #606060;
}

@media screen and (max-width: 1209px) and (min-width: 991px) {
    .latv__about-button {
        display: block;
    }
    .latv__about-button.btn-subscribe {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width: 389px) {
    .latv__about-button {
        display: block;
    }
    .latv__about-button.btn-subscribe {
        margin-left: 0;
        margin-top: 10px;
    }
}

/*------------------------------
Post Categories
------------------------------*/

.latv__post-category {
    background-color: #e8edf4;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all 200ms ease-in-out;
}

.latv__post-category h4 {
    color: #130b2c;
    margin: 0;
}

.latv__post-category:hover {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
}

/*------------------------------
Misc Responsive Styling
------------------------------*/

@media screen and (max-width: 991px) {
    #latv_recent_grid,
    #latv_sidebar {
        width: 100% !important;
    }
}
.phil-img {
    background-color: #000;
    width: 100%;
    height: 300px;
    background-image: url('https://laughagain.ca/wp-content/uploads/2018/03/phil-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

.about-laughagain p {
    margin: 0 !important;
}

.about-laughagain h1, .about-laughagain h2 {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
}

.btn {
    border: none !important;
}


#gform_wrapper_4 input::-webkit-input-placeholder,
#gform_wrapper_4 textarea::-webkit-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input:-ms-input-placeholder,
#gform_wrapper_4 textarea:-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-ms-input-placeholder,
#gform_wrapper_4 textarea::-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-moz-placeholder,
#gform_wrapper_4 textarea::-moz-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::placeholder,
#gform_wrapper_4 textarea::placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input, #gform_wrapper_4 select, #gform_wrapper_4 textarea {
    outline: none !important;
}

#gform_wrapper_4 input:focus, #gform_wrapper_4 select:focus, #gform_wrapper_4 textarea:focus {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: 1px solid #333;
}

#gform_wrapper_4 {
    margin: 0;
    padding: 0;
}

.ginput_container {
    margin: 0 !important;
}

/*---- NAME ----*/
#field_4_1 {
    margin: 0;
    padding: 0 !important;
}

#field_4_1 .gfield_label {
    display: none !important;
}

#field_4_1 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

.name_first, .name_last {
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    margin: 0 !important;
}

.name_last {
    border-left: none !important;
    float: right;
}

.name_first input, .name_last input {
    margin: 0 !important;
}

.name_first label, .name_last label {
    display: none !important;
}

.gform_wrapper .ginput_complex.ginput_container {
    width: 100% !important;
}

/*---- EMAIL / PHONE ----*/
#field_4_3 {
    margin: 0;
    padding: 0px !important;
}

#field_4_3 .gfield_label {
    display: none !important;
}

#field_4_3 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border-top: none !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

#field_4_2 {
    margin: 0;
    padding: 0 !important;
}

#field_4_2 .gfield_label {
    display: none !important;
}

#field_4_2 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border-top: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

/*---- ROLE IN EVENT ----*/
#field_4_4 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_4 .gfield_label {
    display: none !important;
}

#field_4_4 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_5 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_5 .gfield_label {
    display: none !important;
}

#field_4_5 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

/*---- EVENT ADDRESS ----*/
#field_4_6 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_6 .gfield_label {
    display: none !important;
}

#field_4_6 input, #field_4_6 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_6 span:first-child input {
    border: 1px solid #d2d2d2 !important;
}

#field_4_6 label {
    display: none;
}

.address_city, .address_state,
.address_zip, .address_country {
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-top: none !important;
}

#input_13_4_5_container {
    padding: 0 !important;
}

.address_state, .address_country {
    border-left: none !important;
}

.address_city input, .address_state input,
.address_zip input, .address_country select  {
    border: none !important;
}

#field_4_6 span.ginput_right+span.ginput_left {
    padding-right: 0 !important;
}

/*---- EVENT DATE/TIME ---- */
#field_4_7, #field_4_8 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_8 label, #field_4_7 label, #field_4_8 i {
    display: none;
}

#field_4_7 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    width: 100%;
    border: none !important;
    margin: 0 !important;
}

#field_4_7 .ginput_container {
    border: 1px solid #d2d2d2;
}

.gform_wrapper .clear-multi {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

#field_4_8 input, #field_4_8 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0 !important;
    width: 100%;
}

#field_4_8 .ginput_container {
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid #d2d2d2;
    border-left: none;
}

#input_4_8_3 {
    margin: 0 !important;
    max-width: 100% !important;
}

/*---- EVENT DESCRIPTION ----*/
#field_4_12 {
    margin: 2rem 0 0;
    padding: 0;
}

#field_4_12 label {
    display: none;
}

#field_4_12 textarea {
    background-color: #fff;
    padding: 25px 30px !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-radius: 0 !important;
    width: 100%;
}

/*---- EVENT ORGANIZER ----*/
#field_4_9 {
    margin: 2rem 0 0;
    padding: 0px !important;
}

#field_4_9 .gfield_label {
    display: none !important;
}

#field_4_9 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_10 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_10 .gfield_label {
    display: none !important;
}

#field_4_10 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;

}

/*--- REQUEST LETTER UPLOAD ----*/
#field_4_11 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_11 label {
    text-transform: none;
    letter-spacing: 0;
}

#field_4_11 label:after {
    content: ' (if applicable)';
    color: rgba(0,0,0,0.5);
    font-size: 11px;
}

#input_4_11 {
    border: none !important;
    width: 100%;
    padding: 0 !important;
    margin-top: 0.5rem;
}

/*---- FOOTER ----*/
.gform_footer {
    padding: 0 !important;
    margin: 2rem 0 0 !important;
}

#gform_submit_button_4 {
    background-color: #00aded;
    height: 60px;
    width: 100%;
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

#gform_submit_button_4:hover {
    opacity: 0.8;
}

@media screen and (max-width: 641px) {
    .gform_wrapper .ginput_container span:not(.ginput_price) {
        margin: 0 !important;
    }
    
    .name_last {
        float: none;
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_3 input {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_5, #field_4_8, #field_4_10 {
        margin-top: 0 !important;
    }
    
    #field_4_5 input, #field_4_10 input {
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    .address_state, .address_country {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_7 .ginput_container {
        border-bottom: none !important;
    }
    
    #field_4_8 #input_4_8 {
        border-left: 1px solid #d2d2d2 !important;
    }
}
/*-------------------------------*/

.fl-post-grid-post {
    border: none;
}

/*FYE BANNER*/
.fye-row {
    position: relative;
}

.fye-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fye-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.fye-banner-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.fye-banner-content h2 {
    color: #fff;
    /*font-size: 24px !important;*/
    margin-top: 0 !important;
}

.fye-banner-content p {
    /*font-size: 14px;*/
    color: #fff;
    margin: 0 !important;
}

.fye-banner-cta a {
    background-color: #f5c841;
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .fye-banner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
    }
    
    .fye-banner-content {
        padding-bottom: 20px;
    }
    
    /*.fye-banner-content {*/
    /*    text-align: center;*/
    /*}*/
}

/*HOMEPAGE FEATURED POST*/

.header-post {
    width: 100%;
}

.homepage__featured-post-wrapper {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.homepage__featured-post-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    z-index: 2;
}

.homepage__featured-post-inner {
    padding: 2rem;
    text-align: center;
    z-index: 3;
    color: #fff;
}

.homepage__featured-post-inner .homepage__featured-post-title {
    color: #fff;
    margin: 0;
    font-size: 5rem;
}

.homepage__featured-post-inner .homepage__featured-post-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
    margin: 0 0 10px;
    display: block;
}

.homepage__featured-post-inner .homepage__featured-post-date {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
    margin: 10px 0 20px 0;
    display: block;
}

.homepage__featured-post-inner .homepage__featured-post-cta {
    display: inline-block;
    background-color: #00aded;
    border: 2px solid #00aded;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 700;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.3);
            box-shadow: 0 0 30px 0 rgba(0,0,0,0.3);
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.homepage__featured-post-wrapper:hover .homepage__featured-post-cta {
    background-color: transparent !important;
}

/*RECENT BROADCASTS TITLE*/
.homepage__recent-broadcasts-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.homepage__recent-broadcasts-title h3 {
    margin: 0;
    font-size: 20px;
}

.homepage__recent-broadcasts-title a {
    color: #fff;
    font-weight: 700;
    margin-left: 20px;
    display: inline-block;
    font-size: 14px;
    border: 2px solid #00aded;
    padding: 6px 15px;
    background-color: #00aded;
    border-radius: 5px;
}

.homepage__recent-broadcasts-title a:hover {
    background: transparent;
    color: #00aded;
}

/*LATV SECTION*/
.homepage__latv {
    color: #fff;
    text-align: right;
}

.homepage__latv h2 {
    color: #fff;
    margin: 0;
    font-size: 38px;
}

.homepage__latv p {
    font-size: 18px;
    margin: 15px 0;
}

.homepage__latv a {
    background: #00aded;
    padding: 6px 15px;
    display: inline-block;
    border: 2px solid #00aded;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 5px;
}

.homepage__latv a:hover {
    background: transparent;
    color: #fff;
}

.homepage__latv-post .fl-post-grid-post {
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.homepage__latv-post .video-thumbnail {
    -webkit-box-shadow: 0 0 50px 25px rgba(0,0,0,0.5);
            box-shadow: 0 0 50px 25px rgba(0,0,0,0.5);
}

@media screen and (max-width: 500px) {
    .homepage__latv {
        text-align: left;
    }
}

.laugh-again-phone img {
    -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
            transform: rotate(15deg);
}

.homepage__app h2 {
    color: #fff;
    margin: 0;
    font-size: 38px;
}

.homepage__app p {
    font-size: 18px;
    margin: 15px 0;
    color: #fff;
}

.homepage__app-badges {
    margin-top: 20px;
}

.homepage__app-badges img {
    width: 160px;
    -webkit-box-shadow: 0 0 40px 0 rgba(0,0,0,0.2);
            box-shadow: 0 0 40px 0 rgba(0,0,0,0.2);
}

.homepage__app-badges a:last-child img {
    margin-left: 5px;
}

/* EXPLORE SECTION */
.explore-section h4 {
    color: #00aded;
    font-size: 17px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}

.explore-section p {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
    -webkit-transition: color 150ms ease-in-out;
    -o-transition: color 150ms ease-in-out;
    transition: color 150ms ease-in-out;
    color: #000;
}

.explore-section:hover p {
    color: #00aded;
}

/*INSTAGRAM*/
.fl-node-5eb999b7ce092 .pp-instagram-feed-carousel .swiper-container {
    padding: 0 !important;
    margin: 0 !important;
}
/* Navbar */
#navbar .pp-advanced-menu ul li a {
    font-weight: 700 !important;
}

.pp-advanced-menu ul li {
    display: block;
    position: relative;
    border: none;
    padding: 10px 15px !important;
}

#navbar .pp-advanced-menu ul li:not(.navbar-donate):hover a::after {
    background: #fff;
    width: 100%;
}

#navbar .pp-advanced-menu ul li:not(.navbar-donate) a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: 0 0;
    position: relative;
    top: 4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

#navbar .pp-advanced-menu ul .navbar-donate:hover a, .mobile-nav-donate a:hover {
    background: transparent !important;
    color: #fff !important;
}

#navbar .pp-advanced-menu ul .navbar-donate a, .mobile-nav-donate a {
    color: #fff !important;
    font-weight: 700 !important;
    background-color: #275676;
    border-radius: 5px;
    padding: 4px 18px !important;
    margin-left: 15px;
    border: 2px solid #275676 !important;
    display: inline-block;
}

.mobile-nav-donate a {
    font-size: 14px;
    padding: 2px 12px !important;
    margin-right: 30px;
}

.mobile-nav-donate {
    text-align: right;
}

.pp-advanced-menu ul .navbar-donate {
    padding: 0 !important;
}

.pp-advanced-menu-horizontal.pp-toggle-arrows .pp-has-submenu-container > a > span {
    padding-right: 14px !important;
}

.fl-node-5e31ba456c38c .pp-advanced-menu .pp-menu-toggle::before {
    width: 7px !important;
    height: 7px !important;
    border-width: 1px !important;
}

.fl-node-5e31ba456c38c .pp-advanced-menu .pp-menu-toggle {
    right: -10px !important;
}

.pp-advanced-menu .sub-menu li a:hover {
    color: #00aded !important;
}

@media screen and (max-width: 500px) {
    #mobile-navbar .mobile-nav-donate {
        margin-right: -80px;
    }
    
    #mobile-navbar .fl-photo-img-svg img {
        width: 100px;
    }
}

#mobile-navbar .fl-col-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

/*#mobile-navbar {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  z-index: 9999;*/
/*}*/

/* OFF CANVAS MOBILE NAVBAR */

.pp-advanced-menu.off-canvas .pp-off-canvas-menu.pp-menu-right .pp-menu-close-btn {
    float: none;
    position: absolute;
    right: 20px;
    top: 10px;
    text-align: right;
}
.phil-img {
    background-color: #000;
    width: 100%;
    height: 300px;
    background-image: url('https://laughagain.ca/wp-content/uploads/2018/03/phil-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

.about-laughagain p {
    margin: 0 !important;
}

.about-laughagain h1, .about-laughagain h2 {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
}

.btn {
    border: none !important;
}


#gform_wrapper_4 input::-webkit-input-placeholder,
#gform_wrapper_4 textarea::-webkit-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input:-ms-input-placeholder,
#gform_wrapper_4 textarea:-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-ms-input-placeholder,
#gform_wrapper_4 textarea::-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-moz-placeholder,
#gform_wrapper_4 textarea::-moz-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::placeholder,
#gform_wrapper_4 textarea::placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input, #gform_wrapper_4 select, #gform_wrapper_4 textarea {
    outline: none !important;
}

#gform_wrapper_4 input:focus, #gform_wrapper_4 select:focus, #gform_wrapper_4 textarea:focus {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: 1px solid #333;
}

#gform_wrapper_4 {
    margin: 0;
    padding: 0;
}

.ginput_container {
    margin: 0 !important;
}

/*---- NAME ----*/
#field_4_1 {
    margin: 0;
    padding: 0 !important;
}

#field_4_1 .gfield_label {
    display: none !important;
}

#field_4_1 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

.name_first, .name_last {
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    margin: 0 !important;
}

.name_last {
    border-left: none !important;
    float: right;
}

.name_first input, .name_last input {
    margin: 0 !important;
}

.name_first label, .name_last label {
    display: none !important;
}

.gform_wrapper .ginput_complex.ginput_container {
    width: 100% !important;
}

/*---- EMAIL / PHONE ----*/
#field_4_3 {
    margin: 0;
    padding: 0px !important;
}

#field_4_3 .gfield_label {
    display: none !important;
}

#field_4_3 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border-top: none !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

#field_4_2 {
    margin: 0;
    padding: 0 !important;
}

#field_4_2 .gfield_label {
    display: none !important;
}

#field_4_2 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border-top: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

/*---- ROLE IN EVENT ----*/
#field_4_4 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_4 .gfield_label {
    display: none !important;
}

#field_4_4 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_5 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_5 .gfield_label {
    display: none !important;
}

#field_4_5 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

/*---- EVENT ADDRESS ----*/
#field_4_6 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_6 .gfield_label {
    display: none !important;
}

#field_4_6 input, #field_4_6 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_6 span:first-child input {
    border: 1px solid #d2d2d2 !important;
}

#field_4_6 label {
    display: none;
}

.address_city, .address_state,
.address_zip, .address_country {
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-top: none !important;
}

#input_13_4_5_container {
    padding: 0 !important;
}

.address_state, .address_country {
    border-left: none !important;
}

.address_city input, .address_state input,
.address_zip input, .address_country select  {
    border: none !important;
}

#field_4_6 span.ginput_right+span.ginput_left {
    padding-right: 0 !important;
}

/*---- EVENT DATE/TIME ---- */
#field_4_7, #field_4_8 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_8 label, #field_4_7 label, #field_4_8 i {
    display: none;
}

#field_4_7 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    width: 100%;
    border: none !important;
    margin: 0 !important;
}

#field_4_7 .ginput_container {
    border: 1px solid #d2d2d2;
}

.gform_wrapper .clear-multi {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

#field_4_8 input, #field_4_8 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0 !important;
    width: 100%;
}

#field_4_8 .ginput_container {
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid #d2d2d2;
    border-left: none;
}

#input_4_8_3 {
    margin: 0 !important;
    max-width: 100% !important;
}

/*---- EVENT DESCRIPTION ----*/
#field_4_12 {
    margin: 2rem 0 0;
    padding: 0;
}

#field_4_12 label {
    display: none;
}

#field_4_12 textarea {
    background-color: #fff;
    padding: 25px 30px !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-radius: 0 !important;
    width: 100%;
}

/*---- EVENT ORGANIZER ----*/
#field_4_9 {
    margin: 2rem 0 0;
    padding: 0px !important;
}

#field_4_9 .gfield_label {
    display: none !important;
}

#field_4_9 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_10 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_10 .gfield_label {
    display: none !important;
}

#field_4_10 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;

}

/*--- REQUEST LETTER UPLOAD ----*/
#field_4_11 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_11 label {
    text-transform: none;
    letter-spacing: 0;
}

#field_4_11 label:after {
    content: ' (if applicable)';
    color: rgba(0,0,0,0.5);
    font-size: 11px;
}

#input_4_11 {
    border: none !important;
    width: 100%;
    padding: 0 !important;
    margin-top: 0.5rem;
}

/*---- FOOTER ----*/
.gform_footer {
    padding: 0 !important;
    margin: 2rem 0 0 !important;
}

#gform_submit_button_4 {
    background-color: #00aded;
    height: 60px;
    width: 100%;
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

#gform_submit_button_4:hover {
    opacity: 0.8;
}

@media screen and (max-width: 641px) {
    .gform_wrapper .ginput_container span:not(.ginput_price) {
        margin: 0 !important;
    }
    
    .name_last {
        float: none;
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_3 input {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_5, #field_4_8, #field_4_10 {
        margin-top: 0 !important;
    }
    
    #field_4_5 input, #field_4_10 input {
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    .address_state, .address_country {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_7 .ginput_container {
        border-bottom: none !important;
    }
    
    #field_4_8 #input_4_8 {
        border-left: 1px solid #d2d2d2 !important;
    }
}
.fl-post-feed-post {
    overflow: visible;
}

/*------------------------------
Featured LATV
------------------------------*/

.featured__image {
    box-shadow: 0 3px 20px rgb(110 123 157 / 50%);
    border-radius: 10px;
}

.featured__image img {
    border-radius: 10px;
}

.latv__featured-category {
    display: block;
    margin-bottom: 24px;
    color: #00aded;
    font-size: 12px;
    font-weight: 900 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.latv__featured-category .fl-category {
    display: inline !important;
}

.latv__featured-title {
    margin-top: 0;
    margin-bottom: 15px;
}

.latv__featured-title a {
    font-size: 58px;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
    color: #130b2c;
}

.latv__featured-title a:hover {
    color: #00aded;
}

.latv__featured-description p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #130b2c;
}

.latv__featured-button-wrapper a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    padding: 12px 28px;
    border-radius: 5px;
    background-color: #00aded;
    display: inline-block;
    position: relative;
}

.latv__featured-button-wrapper a i {
    font-size: 13px;
    margin-right: 10px;
}

.latv__featured-button-wrapper a:hover {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
    color: #fff;
}

/*------------------------------
LATV Grid
------------------------------*/

.fl-post-grid-post {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.fl-post-grid-post:hover .latv__image {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
}

.latv__image {
    position: relative;
    border-radius: 10px;
    transition: all 200ms ease-in-out;
}

.latv__image img {
    border-radius: 10px;
}

.latv__category {
    display: block;
    color: #00aded;
    font-size: 10px;
    font-weight: 900 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 5px;
    padding: 0 15px;
    line-height: 30px;
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
}

.latv__body {
    padding: 30px 0;
    background-color: #fff;
}

.latv__title {
    margin-top: 0;
    margin-bottom: 15px;
}

.latv__title a {
    color: #130b2c;
    font-size: 28px;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.latv__title a:hover {
    color: #00aded;
}

.latv__description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #130b2c;
}

.latv__button-wrapper a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    line-height: 40px;
    padding: 0 22px;
    border-radius: 5px;
    background-color: #00aded;
    display: inline-block;
    position: relative;
}

.latv__button-wrapper a i {
    font-size: 9px;
    margin-right: 5px;
}

.fl-post-grid-post:hover .latv__button-wrapper a {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
    color: #fff;
}

/*------------------------------
About Laugh Again TV
------------------------------*/

.latv__about-button {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    padding: 10px 26px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
}

.latv__about-button.btn-trailer:hover {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
    color: #fff;
}

.latv__about-button.btn-trailer {
    background-color: #275676;
}

.latv__about-button.btn-subscribe {
    background-color: #ff0000;
    margin-left: 10px;
}

.latv__about-button.btn-subscribe:hover {
    background-color: #f4f4f6;
    color: #606060;
}

@media screen and (max-width: 1209px) and (min-width: 991px) {
    .latv__about-button {
        display: block;
    }
    .latv__about-button.btn-subscribe {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width: 389px) {
    .latv__about-button {
        display: block;
    }
    .latv__about-button.btn-subscribe {
        margin-left: 0;
        margin-top: 10px;
    }
}

/*------------------------------
Post Categories
------------------------------*/

.latv__post-category {
    background-color: #e8edf4;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all 200ms ease-in-out;
}

.latv__post-category h4 {
    color: #130b2c;
    margin: 0;
}

.latv__post-category:hover {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
}

/*------------------------------
Misc Responsive Styling
------------------------------*/

@media screen and (max-width: 991px) {
    #latv_recent_grid,
    #latv_sidebar {
        width: 100% !important;
    }
}
.phil-img {
    background-color: #000;
    width: 100%;
    height: 300px;
    background-image: url('https://laughagain.ca/wp-content/uploads/2018/03/phil-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

.about-laughagain p {
    margin: 0 !important;
}

.about-laughagain h1, .about-laughagain h2 {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
}

.btn {
    border: none !important;
}


#gform_wrapper_4 input::-webkit-input-placeholder,
#gform_wrapper_4 textarea::-webkit-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input:-ms-input-placeholder,
#gform_wrapper_4 textarea:-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-ms-input-placeholder,
#gform_wrapper_4 textarea::-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-moz-placeholder,
#gform_wrapper_4 textarea::-moz-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::placeholder,
#gform_wrapper_4 textarea::placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input, #gform_wrapper_4 select, #gform_wrapper_4 textarea {
    outline: none !important;
}

#gform_wrapper_4 input:focus, #gform_wrapper_4 select:focus, #gform_wrapper_4 textarea:focus {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: 1px solid #333;
}

#gform_wrapper_4 {
    margin: 0;
    padding: 0;
}

.ginput_container {
    margin: 0 !important;
}

/*---- NAME ----*/
#field_4_1 {
    margin: 0;
    padding: 0 !important;
}

#field_4_1 .gfield_label {
    display: none !important;
}

#field_4_1 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

.name_first, .name_last {
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    margin: 0 !important;
}

.name_last {
    border-left: none !important;
    float: right;
}

.name_first input, .name_last input {
    margin: 0 !important;
}

.name_first label, .name_last label {
    display: none !important;
}

.gform_wrapper .ginput_complex.ginput_container {
    width: 100% !important;
}

/*---- EMAIL / PHONE ----*/
#field_4_3 {
    margin: 0;
    padding: 0px !important;
}

#field_4_3 .gfield_label {
    display: none !important;
}

#field_4_3 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border-top: none !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

#field_4_2 {
    margin: 0;
    padding: 0 !important;
}

#field_4_2 .gfield_label {
    display: none !important;
}

#field_4_2 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border-top: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

/*---- ROLE IN EVENT ----*/
#field_4_4 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_4 .gfield_label {
    display: none !important;
}

#field_4_4 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_5 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_5 .gfield_label {
    display: none !important;
}

#field_4_5 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

/*---- EVENT ADDRESS ----*/
#field_4_6 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_6 .gfield_label {
    display: none !important;
}

#field_4_6 input, #field_4_6 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_6 span:first-child input {
    border: 1px solid #d2d2d2 !important;
}

#field_4_6 label {
    display: none;
}

.address_city, .address_state,
.address_zip, .address_country {
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-top: none !important;
}

#input_13_4_5_container {
    padding: 0 !important;
}

.address_state, .address_country {
    border-left: none !important;
}

.address_city input, .address_state input,
.address_zip input, .address_country select  {
    border: none !important;
}

#field_4_6 span.ginput_right+span.ginput_left {
    padding-right: 0 !important;
}

/*---- EVENT DATE/TIME ---- */
#field_4_7, #field_4_8 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_8 label, #field_4_7 label, #field_4_8 i {
    display: none;
}

#field_4_7 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    width: 100%;
    border: none !important;
    margin: 0 !important;
}

#field_4_7 .ginput_container {
    border: 1px solid #d2d2d2;
}

.gform_wrapper .clear-multi {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

#field_4_8 input, #field_4_8 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0 !important;
    width: 100%;
}

#field_4_8 .ginput_container {
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid #d2d2d2;
    border-left: none;
}

#input_4_8_3 {
    margin: 0 !important;
    max-width: 100% !important;
}

/*---- EVENT DESCRIPTION ----*/
#field_4_12 {
    margin: 2rem 0 0;
    padding: 0;
}

#field_4_12 label {
    display: none;
}

#field_4_12 textarea {
    background-color: #fff;
    padding: 25px 30px !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-radius: 0 !important;
    width: 100%;
}

/*---- EVENT ORGANIZER ----*/
#field_4_9 {
    margin: 2rem 0 0;
    padding: 0px !important;
}

#field_4_9 .gfield_label {
    display: none !important;
}

#field_4_9 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_10 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_10 .gfield_label {
    display: none !important;
}

#field_4_10 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;

}

/*--- REQUEST LETTER UPLOAD ----*/
#field_4_11 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_11 label {
    text-transform: none;
    letter-spacing: 0;
}

#field_4_11 label:after {
    content: ' (if applicable)';
    color: rgba(0,0,0,0.5);
    font-size: 11px;
}

#input_4_11 {
    border: none !important;
    width: 100%;
    padding: 0 !important;
    margin-top: 0.5rem;
}

/*---- FOOTER ----*/
.gform_footer {
    padding: 0 !important;
    margin: 2rem 0 0 !important;
}

#gform_submit_button_4 {
    background-color: #00aded;
    height: 60px;
    width: 100%;
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

#gform_submit_button_4:hover {
    opacity: 0.8;
}

@media screen and (max-width: 641px) {
    .gform_wrapper .ginput_container span:not(.ginput_price) {
        margin: 0 !important;
    }
    
    .name_last {
        float: none;
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_3 input {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_5, #field_4_8, #field_4_10 {
        margin-top: 0 !important;
    }
    
    #field_4_5 input, #field_4_10 input {
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    .address_state, .address_country {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_7 .ginput_container {
        border-bottom: none !important;
    }
    
    #field_4_8 #input_4_8 {
        border-left: 1px solid #d2d2d2 !important;
    }
}
/*-------------------------------*/

.fl-post-grid-post {
    border: none;
}

/*FYE BANNER*/
.fye-row {
    position: relative;
}

.fye-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fye-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.fye-banner-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.fye-banner-content h2 {
    color: #fff;
    /*font-size: 24px !important;*/
    margin-top: 0 !important;
}

.fye-banner-content p {
    /*font-size: 14px;*/
    color: #fff;
    margin: 0 !important;
}

.fye-banner-cta a {
    background-color: #f5c841;
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .fye-banner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
    }
    
    .fye-banner-content {
        padding-bottom: 20px;
    }
    
    /*.fye-banner-content {*/
    /*    text-align: center;*/
    /*}*/
}

/*HOMEPAGE FEATURED POST*/

.header-post {
    width: 100%;
}

.homepage__featured-post-wrapper {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.homepage__featured-post-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    z-index: 2;
}

.homepage__featured-post-inner {
    padding: 2rem;
    text-align: center;
    z-index: 3;
    color: #fff;
}

.homepage__featured-post-inner .homepage__featured-post-title {
    color: #fff;
    margin: 0;
    font-size: 5rem;
}

.homepage__featured-post-inner .homepage__featured-post-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
    margin: 0 0 10px;
    display: block;
}

.homepage__featured-post-inner .homepage__featured-post-date {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
    margin: 10px 0 20px 0;
    display: block;
}

.homepage__featured-post-inner .homepage__featured-post-cta {
    display: inline-block;
    background-color: #00aded;
    border: 2px solid #00aded;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 700;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.3);
            box-shadow: 0 0 30px 0 rgba(0,0,0,0.3);
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.homepage__featured-post-wrapper:hover .homepage__featured-post-cta {
    background-color: transparent !important;
}

/*RECENT BROADCASTS TITLE*/
.homepage__recent-broadcasts-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.homepage__recent-broadcasts-title h3 {
    margin: 0;
    font-size: 20px;
}

.homepage__recent-broadcasts-title a {
    color: #fff;
    font-weight: 700;
    margin-left: 20px;
    display: inline-block;
    font-size: 14px;
    border: 2px solid #00aded;
    padding: 6px 15px;
    background-color: #00aded;
    border-radius: 5px;
}

.homepage__recent-broadcasts-title a:hover {
    background: transparent;
    color: #00aded;
}

/*LATV SECTION*/
.homepage__latv {
    color: #fff;
    text-align: right;
}

.homepage__latv h2 {
    color: #fff;
    margin: 0;
    font-size: 38px;
}

.homepage__latv p {
    font-size: 18px;
    margin: 15px 0;
}

.homepage__latv a {
    background: #00aded;
    padding: 6px 15px;
    display: inline-block;
    border: 2px solid #00aded;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 5px;
}

.homepage__latv a:hover {
    background: transparent;
    color: #fff;
}

.homepage__latv-post .fl-post-grid-post {
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.homepage__latv-post .video-thumbnail {
    -webkit-box-shadow: 0 0 50px 25px rgba(0,0,0,0.5);
            box-shadow: 0 0 50px 25px rgba(0,0,0,0.5);
}

@media screen and (max-width: 500px) {
    .homepage__latv {
        text-align: left;
    }
}

.laugh-again-phone img {
    -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
            transform: rotate(15deg);
}

.homepage__app h2 {
    color: #fff;
    margin: 0;
    font-size: 38px;
}

.homepage__app p {
    font-size: 18px;
    margin: 15px 0;
    color: #fff;
}

.homepage__app-badges {
    margin-top: 20px;
}

.homepage__app-badges img {
    width: 160px;
    -webkit-box-shadow: 0 0 40px 0 rgba(0,0,0,0.2);
            box-shadow: 0 0 40px 0 rgba(0,0,0,0.2);
}

.homepage__app-badges a:last-child img {
    margin-left: 5px;
}

/* EXPLORE SECTION */
.explore-section h4 {
    color: #00aded;
    font-size: 17px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}

.explore-section p {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
    -webkit-transition: color 150ms ease-in-out;
    -o-transition: color 150ms ease-in-out;
    transition: color 150ms ease-in-out;
    color: #000;
}

.explore-section:hover p {
    color: #00aded;
}

/*INSTAGRAM*/
.fl-node-5eb999b7ce092 .pp-instagram-feed-carousel .swiper-container {
    padding: 0 !important;
    margin: 0 !important;
}
/* Navbar */
#navbar .pp-advanced-menu ul li a {
    font-weight: 700 !important;
}

.pp-advanced-menu ul li {
    display: block;
    position: relative;
    border: none;
    padding: 10px 15px !important;
}

#navbar .pp-advanced-menu ul li:not(.navbar-donate):hover a::after {
    background: #fff;
    width: 100%;
}

#navbar .pp-advanced-menu ul li:not(.navbar-donate) a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: 0 0;
    position: relative;
    top: 4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

#navbar .pp-advanced-menu ul .navbar-donate:hover a, .mobile-nav-donate a:hover {
    background: transparent !important;
    color: #fff !important;
}

#navbar .pp-advanced-menu ul .navbar-donate a, .mobile-nav-donate a {
    color: #fff !important;
    font-weight: 700 !important;
    background-color: #275676;
    border-radius: 5px;
    padding: 4px 18px !important;
    margin-left: 15px;
    border: 2px solid #275676 !important;
    display: inline-block;
}

.mobile-nav-donate a {
    font-size: 14px;
    padding: 2px 12px !important;
    margin-right: 30px;
}

.mobile-nav-donate {
    text-align: right;
}

.pp-advanced-menu ul .navbar-donate {
    padding: 0 !important;
}

.pp-advanced-menu-horizontal.pp-toggle-arrows .pp-has-submenu-container > a > span {
    padding-right: 14px !important;
}

.fl-node-5e31ba456c38c .pp-advanced-menu .pp-menu-toggle::before {
    width: 7px !important;
    height: 7px !important;
    border-width: 1px !important;
}

.fl-node-5e31ba456c38c .pp-advanced-menu .pp-menu-toggle {
    right: -10px !important;
}

.pp-advanced-menu .sub-menu li a:hover {
    color: #00aded !important;
}

@media screen and (max-width: 500px) {
    #mobile-navbar .mobile-nav-donate {
        margin-right: -80px;
    }
    
    #mobile-navbar .fl-photo-img-svg img {
        width: 100px;
    }
}

#mobile-navbar .fl-col-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

/*#mobile-navbar {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  z-index: 9999;*/
/*}*/

/* OFF CANVAS MOBILE NAVBAR */

.pp-advanced-menu.off-canvas .pp-off-canvas-menu.pp-menu-right .pp-menu-close-btn {
    float: none;
    position: absolute;
    right: 20px;
    top: 10px;
    text-align: right;
}
.phil-img {
    background-color: #000;
    width: 100%;
    height: 300px;
    background-image: url('https://laughagain.ca/wp-content/uploads/2018/03/phil-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

.about-laughagain p {
    margin: 0 !important;
}

.about-laughagain h1, .about-laughagain h2 {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
}

.btn {
    border: none !important;
}


#gform_wrapper_4 input::-webkit-input-placeholder,
#gform_wrapper_4 textarea::-webkit-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input:-ms-input-placeholder,
#gform_wrapper_4 textarea:-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-ms-input-placeholder,
#gform_wrapper_4 textarea::-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-moz-placeholder,
#gform_wrapper_4 textarea::-moz-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::placeholder,
#gform_wrapper_4 textarea::placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input, #gform_wrapper_4 select, #gform_wrapper_4 textarea {
    outline: none !important;
}

#gform_wrapper_4 input:focus, #gform_wrapper_4 select:focus, #gform_wrapper_4 textarea:focus {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: 1px solid #333;
}

#gform_wrapper_4 {
    margin: 0;
    padding: 0;
}

.ginput_container {
    margin: 0 !important;
}

/*---- NAME ----*/
#field_4_1 {
    margin: 0;
    padding: 0 !important;
}

#field_4_1 .gfield_label {
    display: none !important;
}

#field_4_1 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

.name_first, .name_last {
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    margin: 0 !important;
}

.name_last {
    border-left: none !important;
    float: right;
}

.name_first input, .name_last input {
    margin: 0 !important;
}

.name_first label, .name_last label {
    display: none !important;
}

.gform_wrapper .ginput_complex.ginput_container {
    width: 100% !important;
}

/*---- EMAIL / PHONE ----*/
#field_4_3 {
    margin: 0;
    padding: 0px !important;
}

#field_4_3 .gfield_label {
    display: none !important;
}

#field_4_3 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border-top: none !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

#field_4_2 {
    margin: 0;
    padding: 0 !important;
}

#field_4_2 .gfield_label {
    display: none !important;
}

#field_4_2 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border-top: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

/*---- ROLE IN EVENT ----*/
#field_4_4 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_4 .gfield_label {
    display: none !important;
}

#field_4_4 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_5 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_5 .gfield_label {
    display: none !important;
}

#field_4_5 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

/*---- EVENT ADDRESS ----*/
#field_4_6 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_6 .gfield_label {
    display: none !important;
}

#field_4_6 input, #field_4_6 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_6 span:first-child input {
    border: 1px solid #d2d2d2 !important;
}

#field_4_6 label {
    display: none;
}

.address_city, .address_state,
.address_zip, .address_country {
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-top: none !important;
}

#input_13_4_5_container {
    padding: 0 !important;
}

.address_state, .address_country {
    border-left: none !important;
}

.address_city input, .address_state input,
.address_zip input, .address_country select  {
    border: none !important;
}

#field_4_6 span.ginput_right+span.ginput_left {
    padding-right: 0 !important;
}

/*---- EVENT DATE/TIME ---- */
#field_4_7, #field_4_8 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_8 label, #field_4_7 label, #field_4_8 i {
    display: none;
}

#field_4_7 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    width: 100%;
    border: none !important;
    margin: 0 !important;
}

#field_4_7 .ginput_container {
    border: 1px solid #d2d2d2;
}

.gform_wrapper .clear-multi {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

#field_4_8 input, #field_4_8 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0 !important;
    width: 100%;
}

#field_4_8 .ginput_container {
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid #d2d2d2;
    border-left: none;
}

#input_4_8_3 {
    margin: 0 !important;
    max-width: 100% !important;
}

/*---- EVENT DESCRIPTION ----*/
#field_4_12 {
    margin: 2rem 0 0;
    padding: 0;
}

#field_4_12 label {
    display: none;
}

#field_4_12 textarea {
    background-color: #fff;
    padding: 25px 30px !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-radius: 0 !important;
    width: 100%;
}

/*---- EVENT ORGANIZER ----*/
#field_4_9 {
    margin: 2rem 0 0;
    padding: 0px !important;
}

#field_4_9 .gfield_label {
    display: none !important;
}

#field_4_9 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_10 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_10 .gfield_label {
    display: none !important;
}

#field_4_10 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;

}

/*--- REQUEST LETTER UPLOAD ----*/
#field_4_11 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_11 label {
    text-transform: none;
    letter-spacing: 0;
}

#field_4_11 label:after {
    content: ' (if applicable)';
    color: rgba(0,0,0,0.5);
    font-size: 11px;
}

#input_4_11 {
    border: none !important;
    width: 100%;
    padding: 0 !important;
    margin-top: 0.5rem;
}

/*---- FOOTER ----*/
.gform_footer {
    padding: 0 !important;
    margin: 2rem 0 0 !important;
}

#gform_submit_button_4 {
    background-color: #00aded;
    height: 60px;
    width: 100%;
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

#gform_submit_button_4:hover {
    opacity: 0.8;
}

@media screen and (max-width: 641px) {
    .gform_wrapper .ginput_container span:not(.ginput_price) {
        margin: 0 !important;
    }
    
    .name_last {
        float: none;
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_3 input {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_5, #field_4_8, #field_4_10 {
        margin-top: 0 !important;
    }
    
    #field_4_5 input, #field_4_10 input {
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    .address_state, .address_country {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_7 .ginput_container {
        border-bottom: none !important;
    }
    
    #field_4_8 #input_4_8 {
        border-left: 1px solid #d2d2d2 !important;
    }
}
.fl-post-feed-post {
    overflow: visible;
}

/*------------------------------
Featured LATV
------------------------------*/

.featured__image {
    box-shadow: 0 3px 20px rgb(110 123 157 / 50%);
    border-radius: 10px;
}

.featured__image img {
    border-radius: 10px;
}

.latv__featured-category {
    display: block;
    margin-bottom: 24px;
    color: #00aded;
    font-size: 12px;
    font-weight: 900 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.latv__featured-category .fl-category {
    display: inline !important;
}

.latv__featured-title {
    margin-top: 0;
    margin-bottom: 15px;
}

.latv__featured-title a {
    font-size: 58px;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
    color: #130b2c;
}

.latv__featured-title a:hover {
    color: #00aded;
}

.latv__featured-description p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #130b2c;
}

.latv__featured-button-wrapper a {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    padding: 12px 28px;
    border-radius: 5px;
    background-color: #00aded;
    display: inline-block;
    position: relative;
}

.latv__featured-button-wrapper a i {
    font-size: 13px;
    margin-right: 10px;
}

.latv__featured-button-wrapper a:hover {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
    color: #fff;
}

/*------------------------------
LATV Grid
------------------------------*/

.fl-post-grid-post {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.fl-post-grid-post:hover .latv__image {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
}

.latv__image {
    position: relative;
    border-radius: 10px;
    transition: all 200ms ease-in-out;
}

.latv__image img {
    border-radius: 10px;
}

.latv__category {
    display: block;
    color: #00aded;
    font-size: 10px;
    font-weight: 900 !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 5px;
    padding: 0 15px;
    line-height: 30px;
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
}

.latv__body {
    padding: 30px 0;
    background-color: #fff;
}

.latv__title {
    margin-top: 0;
    margin-bottom: 15px;
}

.latv__title a {
    color: #130b2c;
    font-size: 28px;
    font-weight: 900 !important;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.latv__title a:hover {
    color: #00aded;
}

.latv__description p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #130b2c;
}

.latv__button-wrapper a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    line-height: 40px;
    padding: 0 22px;
    border-radius: 5px;
    background-color: #00aded;
    display: inline-block;
    position: relative;
}

.latv__button-wrapper a i {
    font-size: 9px;
    margin-right: 5px;
}

.fl-post-grid-post:hover .latv__button-wrapper a {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
    color: #fff;
}

/*------------------------------
About Laugh Again TV
------------------------------*/

.latv__about-button {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    padding: 10px 26px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
}

.latv__about-button.btn-trailer:hover {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
    color: #fff;
}

.latv__about-button.btn-trailer {
    background-color: #275676;
}

.latv__about-button.btn-subscribe {
    background-color: #ff0000;
    margin-left: 10px;
}

.latv__about-button.btn-subscribe:hover {
    background-color: #f4f4f6;
    color: #606060;
}

@media screen and (max-width: 1209px) and (min-width: 991px) {
    .latv__about-button {
        display: block;
    }
    .latv__about-button.btn-subscribe {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width: 389px) {
    .latv__about-button {
        display: block;
    }
    .latv__about-button.btn-subscribe {
        margin-left: 0;
        margin-top: 10px;
    }
}

/*------------------------------
Post Categories
------------------------------*/

.latv__post-category {
    background-color: #e8edf4;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: all 200ms ease-in-out;
}

.latv__post-category h4 {
    color: #130b2c;
    margin: 0;
}

.latv__post-category:hover {
    box-shadow: 0 3px 20px -5px rgb(110 123 157 / 50%);
    transform: translate(0px, -3px);
}

/*------------------------------
Misc Responsive Styling
------------------------------*/

@media screen and (max-width: 991px) {
    #latv_recent_grid,
    #latv_sidebar {
        width: 100% !important;
    }
}
.phil-img {
    background-color: #000;
    width: 100%;
    height: 300px;
    background-image: url('https://laughagain.ca/wp-content/uploads/2018/03/phil-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 30%;
}

.about-laughagain p {
    margin: 0 !important;
}

.about-laughagain h1, .about-laughagain h2 {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
}

.btn {
    border: none !important;
}


#gform_wrapper_4 input::-webkit-input-placeholder,
#gform_wrapper_4 textarea::-webkit-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input:-ms-input-placeholder,
#gform_wrapper_4 textarea:-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-ms-input-placeholder,
#gform_wrapper_4 textarea::-ms-input-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::-moz-placeholder,
#gform_wrapper_4 textarea::-moz-placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input::placeholder,
#gform_wrapper_4 textarea::placeholder {
    color: #333;
    opacity: 1;
}

#gform_wrapper_4 input, #gform_wrapper_4 select, #gform_wrapper_4 textarea {
    outline: none !important;
}

#gform_wrapper_4 input:focus, #gform_wrapper_4 select:focus, #gform_wrapper_4 textarea:focus {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border: 1px solid #333;
}

#gform_wrapper_4 {
    margin: 0;
    padding: 0;
}

.ginput_container {
    margin: 0 !important;
}

/*---- NAME ----*/
#field_4_1 {
    margin: 0;
    padding: 0 !important;
}

#field_4_1 .gfield_label {
    display: none !important;
}

#field_4_1 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

.name_first, .name_last {
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    margin: 0 !important;
}

.name_last {
    border-left: none !important;
    float: right;
}

.name_first input, .name_last input {
    margin: 0 !important;
}

.name_first label, .name_last label {
    display: none !important;
}

.gform_wrapper .ginput_complex.ginput_container {
    width: 100% !important;
}

/*---- EMAIL / PHONE ----*/
#field_4_3 {
    margin: 0;
    padding: 0px !important;
}

#field_4_3 .gfield_label {
    display: none !important;
}

#field_4_3 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    border-top: none !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

#field_4_2 {
    margin: 0;
    padding: 0 !important;
}

#field_4_2 .gfield_label {
    display: none !important;
}

#field_4_2 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border-top: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

/*---- ROLE IN EVENT ----*/
#field_4_4 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_4 .gfield_label {
    display: none !important;
}

#field_4_4 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_5 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_5 .gfield_label {
    display: none !important;
}

#field_4_5 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;
}

/*---- EVENT ADDRESS ----*/
#field_4_6 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_6 .gfield_label {
    display: none !important;
}

#field_4_6 input, #field_4_6 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_6 span:first-child input {
    border: 1px solid #d2d2d2 !important;
}

#field_4_6 label {
    display: none;
}

.address_city, .address_state,
.address_zip, .address_country {
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-top: none !important;
}

#input_13_4_5_container {
    padding: 0 !important;
}

.address_state, .address_country {
    border-left: none !important;
}

.address_city input, .address_state input,
.address_zip input, .address_country select  {
    border: none !important;
}

#field_4_6 span.ginput_right+span.ginput_left {
    padding-right: 0 !important;
}

/*---- EVENT DATE/TIME ---- */
#field_4_7, #field_4_8 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_8 label, #field_4_7 label, #field_4_8 i {
    display: none;
}

#field_4_7 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    width: 100%;
    border: none !important;
    margin: 0 !important;
}

#field_4_7 .ginput_container {
    border: 1px solid #d2d2d2;
}

.gform_wrapper .clear-multi {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
}

#field_4_8 input, #field_4_8 select {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: none !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0 !important;
    width: 100%;
}

#field_4_8 .ginput_container {
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid #d2d2d2;
    border-left: none;
}

#input_4_8_3 {
    margin: 0 !important;
    max-width: 100% !important;
}

/*---- EVENT DESCRIPTION ----*/
#field_4_12 {
    margin: 2rem 0 0;
    padding: 0;
}

#field_4_12 label {
    display: none;
}

#field_4_12 textarea {
    background-color: #fff;
    padding: 25px 30px !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    border: 1px solid #d2d2d2 !important;
    border-radius: 0 !important;
    width: 100%;
}

/*---- EVENT ORGANIZER ----*/
#field_4_9 {
    margin: 2rem 0 0;
    padding: 0px !important;
}

#field_4_9 .gfield_label {
    display: none !important;
}

#field_4_9 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
}

#field_4_10 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_10 .gfield_label {
    display: none !important;
}

#field_4_10 input {
    background-color: #fff;
    padding: 0 !important;
    color: #333;
    font-size: 14px !important;
    margin: 0 !important;
    height: 60px !important;
    text-indent: 30px;
    border-radius: 0;
    border-left: none !important;

}

/*--- REQUEST LETTER UPLOAD ----*/
#field_4_11 {
    margin: 2rem 0 0;
    padding: 0 !important;
}

#field_4_11 label {
    text-transform: none;
    letter-spacing: 0;
}

#field_4_11 label:after {
    content: ' (if applicable)';
    color: rgba(0,0,0,0.5);
    font-size: 11px;
}

#input_4_11 {
    border: none !important;
    width: 100%;
    padding: 0 !important;
    margin-top: 0.5rem;
}

/*---- FOOTER ----*/
.gform_footer {
    padding: 0 !important;
    margin: 2rem 0 0 !important;
}

#gform_submit_button_4 {
    background-color: #00aded;
    height: 60px;
    width: 100%;
    -webkit-transition: all 150ms ease-in-out;
    -o-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
}

#gform_submit_button_4:hover {
    opacity: 0.8;
}

@media screen and (max-width: 641px) {
    .gform_wrapper .ginput_container span:not(.ginput_price) {
        margin: 0 !important;
    }
    
    .name_last {
        float: none;
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_3 input {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_5, #field_4_8, #field_4_10 {
        margin-top: 0 !important;
    }
    
    #field_4_5 input, #field_4_10 input {
        border-top: 0 !important;
        border-left: 1px solid #d2d2d2 !important;
    }
    
    .address_state, .address_country {
        border-left: 1px solid #d2d2d2 !important;
    }
    
    #field_4_7 .ginput_container {
        border-bottom: none !important;
    }
    
    #field_4_8 #input_4_8 {
        border-left: 1px solid #d2d2d2 !important;
    }
}
/*-------------------------------*/

.fl-post-grid-post {
    border: none;
}

/*FYE BANNER*/
.fye-row {
    position: relative;
}

.fye-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.fye-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.fye-banner-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.fye-banner-content h2 {
    color: #fff;
    /*font-size: 24px !important;*/
    margin-top: 0 !important;
}

.fye-banner-content p {
    /*font-size: 14px;*/
    color: #fff;
    margin: 0 !important;
}

.fye-banner-cta a {
    background-color: #f5c841;
    color: #fff !important;
    padding: 15px 25px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .fye-banner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
    }
    
    .fye-banner-content {
        padding-bottom: 20px;
    }
    
    /*.fye-banner-content {*/
    /*    text-align: center;*/
    /*}*/
}

/*HOMEPAGE FEATURED POST*/

.header-post {
    width: 100%;
}

.homepage__featured-post-wrapper {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.homepage__featured-post-wrapper:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
    z-index: 2;
}

.homepage__featured-post-inner {
    padding: 2rem;
    text-align: center;
    z-index: 3;
    color: #fff;
}

.homepage__featured-post-inner .homepage__featured-post-title {
    color: #fff;
    margin: 0;
    font-size: 5rem;
}

.homepage__featured-post-inner .homepage__featured-post-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
    margin: 0 0 10px;
    display: block;
}

.homepage__featured-post-inner .homepage__featured-post-date {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 13px;
    margin: 10px 0 20px 0;
    display: block;
}

.homepage__featured-post-inner .homepage__featured-post-cta {
    display: inline-block;
    background-color: #00aded;
    border: 2px solid #00aded;
    padding: 8px 25px;
    border-radius: 5px;
    font-weight: 700;
    -webkit-box-shadow: 0 0 30px 0 rgba(0,0,0,0.3);
            box-shadow: 0 0 30px 0 rgba(0,0,0,0.3);
    -webkit-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.homepage__featured-post-wrapper:hover .homepage__featured-post-cta {
    background-color: transparent !important;
}

/*RECENT BROADCASTS TITLE*/
.homepage__recent-broadcasts-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.homepage__recent-broadcasts-title h3 {
    margin: 0;
    font-size: 20px;
}

.homepage__recent-broadcasts-title a {
    color: #fff;
    font-weight: 700;
    margin-left: 20px;
    display: inline-block;
    font-size: 14px;
    border: 2px solid #00aded;
    padding: 6px 15px;
    background-color: #00aded;
    border-radius: 5px;
}

.homepage__recent-broadcasts-title a:hover {
    background: transparent;
    color: #00aded;
}

/*LATV SECTION*/
.homepage__latv {
    color: #fff;
    text-align: right;
}

.homepage__latv h2 {
    color: #fff;
    margin: 0;
    font-size: 38px;
}

.homepage__latv p {
    font-size: 18px;
    margin: 15px 0;
}

.homepage__latv a {
    background: #00aded;
    padding: 6px 15px;
    display: inline-block;
    border: 2px solid #00aded;
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    margin-top: 5px;
}

.homepage__latv a:hover {
    background: transparent;
    color: #fff;
}

.homepage__latv-post .fl-post-grid-post {
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
}
.homepage__latv-post .video-thumbnail {
    -webkit-box-shadow: 0 0 50px 25px rgba(0,0,0,0.5);
            box-shadow: 0 0 50px 25px rgba(0,0,0,0.5);
}

@media screen and (max-width: 500px) {
    .homepage__latv {
        text-align: left;
    }
}

.laugh-again-phone img {
    -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
            transform: rotate(15deg);
}

.homepage__app h2 {
    color: #fff;
    margin: 0;
    font-size: 38px;
}

.homepage__app p {
    font-size: 18px;
    margin: 15px 0;
    color: #fff;
}

.homepage__app-badges {
    margin-top: 20px;
}

.homepage__app-badges img {
    width: 160px;
    -webkit-box-shadow: 0 0 40px 0 rgba(0,0,0,0.2);
            box-shadow: 0 0 40px 0 rgba(0,0,0,0.2);
}

.homepage__app-badges a:last-child img {
    margin-left: 5px;
}

/* EXPLORE SECTION */
.explore-section h4 {
    color: #00aded;
    font-size: 17px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}

.explore-section p {
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
    -webkit-transition: color 150ms ease-in-out;
    -o-transition: color 150ms ease-in-out;
    transition: color 150ms ease-in-out;
    color: #000;
}

.explore-section:hover p {
    color: #00aded;
}

/*INSTAGRAM*/
.fl-node-5eb999b7ce092 .pp-instagram-feed-carousel .swiper-container {
    padding: 0 !important;
    margin: 0 !important;
}
/* Navbar */
#navbar .pp-advanced-menu ul li a {
    font-weight: 700 !important;
}

.pp-advanced-menu ul li {
    display: block;
    position: relative;
    border: none;
    padding: 10px 15px !important;
}

#navbar .pp-advanced-menu ul li:not(.navbar-donate):hover a::after {
    background: #fff;
    width: 100%;
}

#navbar .pp-advanced-menu ul li:not(.navbar-donate) a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: 0 0;
    position: relative;
    top: 4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

#navbar .pp-advanced-menu ul .navbar-donate:hover a, .mobile-nav-donate a:hover {
    background: transparent !important;
    color: #fff !important;
}

#navbar .pp-advanced-menu ul .navbar-donate a, .mobile-nav-donate a {
    color: #fff !important;
    font-weight: 700 !important;
    background-color: #275676;
    border-radius: 5px;
    padding: 4px 18px !important;
    margin-left: 15px;
    border: 2px solid #275676 !important;
    display: inline-block;
}

.mobile-nav-donate a {
    font-size: 14px;
    padding: 2px 12px !important;
    margin-right: 30px;
}

.mobile-nav-donate {
    text-align: right;
}

.pp-advanced-menu ul .navbar-donate {
    padding: 0 !important;
}

.pp-advanced-menu-horizontal.pp-toggle-arrows .pp-has-submenu-container > a > span {
    padding-right: 14px !important;
}

.fl-node-5e31ba456c38c .pp-advanced-menu .pp-menu-toggle::before {
    width: 7px !important;
    height: 7px !important;
    border-width: 1px !important;
}

.fl-node-5e31ba456c38c .pp-advanced-menu .pp-menu-toggle {
    right: -10px !important;
}

.pp-advanced-menu .sub-menu li a:hover {
    color: #00aded !important;
}

@media screen and (max-width: 500px) {
    #mobile-navbar .mobile-nav-donate {
        margin-right: -80px;
    }
    
    #mobile-navbar .fl-photo-img-svg img {
        width: 100px;
    }
}

#mobile-navbar .fl-col-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

/*#mobile-navbar {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  z-index: 9999;*/
/*}*/

/* OFF CANVAS MOBILE NAVBAR */

.pp-advanced-menu.off-canvas .pp-off-canvas-menu.pp-menu-right .pp-menu-close-btn {
    float: none;
    position: absolute;
    right: 20px;
    top: 10px;
    text-align: right;
}
/* End Layout CSS */


        			.fl-node-92srpob1hv7y .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6is1yvfb4kph .fl-row-content {
				min-width: 0px;
			}
		