#byline {display:none;}

/* VIDEO */
.background-video .embed-responsive-16by9::before {padding-top: 42.25%;}
.background-video .embed-responsive, .background-video .embed-responsive-item, .background-video .embed-responsive video {height:auto;}
.bgvid {
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	overflow: hidden;	
	height: auto; 
	margin: 0; 
	padding: 0;
}
.background-video {margin: -38px -15px 0  -15px;}
.bgvid-text {
	color: #fff;
	text-align:center;
	background: rgba(0, 0, 0, 1);
	padding:1em;
	margin-top:-5px;
}
.emphasis-green {color:#C1EE86; font-weight:600;}
.text-overlay strong {font-weight:700}

/* CAROUSEL */
.carousel-caption {
	position: absolute;
	right: 0%;
	bottom: 0;
	left: 0;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-align: center;
	background-color: rgba( 0 , 0 , 0 , 0.85 )
}
.carousel-control-next, .carousel-control-prev {
	opacity: 1;
	z-index: 100;
	bottom: auto;
	width: 5%;
	top: 50%;
}

/* PARALLAX */

.parallax {
	margin:0 -15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.parallax1 {
	background-image: url("/news/features/2024/images/202403-redi-tidal-town-md.jpg");
	height: 550px;
}
.text-overlay {
	font-size:1.25em; 
	color:#fff; 
	padding:1em; 
	background: rgba(0, 0, 0, 0.85); 
	text-align:center;
}

/* RESPONSIVE STYLES */

@media (min-width: 576px) {

}

@media only screen and (min-width : 768px) {
	.parallax1 {
		background-image: url("/news/features/2024/images/202403-redi-tidal-town-xl.jpg");
	}
}

@media only screen and (min-width : 992px) {
	.bgvid-text {
		background: rgba(0, 0, 0, 0.85);
		position: absolute;
		top: 200px;
		left: 50%;
		transform: translateX(-50%);
		width:55%;
	}
	.bgvid-text h1 {font-size: 2em;}
	.parallax {
		background-attachment: fixed;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
}

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

}

@media only screen and (min-width : 1600px) {

}

/* ANIMATION */
.fadein2s {
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera  12.1 */
	-moz-animation: fadein 2s; /* Firefox  16 */
	-ms-animation: fadein 2s; /* Internet Explorer */
	-o-animation: fadein 2s; /* Opera  12.1 */
	animation: fadein 2s;
}
@keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}
/* Firefox
@-moz-keyframes fadein {
from { opacity: 0; }
to   { opacity: 1; }
}
/* Safari, Chrome and Opera */
@-webkit-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}
/* Opera  12.1 */
@-o-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}
