#byline {display:none;}

.big-quote::before {
	color:#fff;
	text-align: center;
	float: none;
}
.quote {
	background-color: #0B5E90;
	padding:3em; 
	color:#fff;
	text-align: center;
}

/* 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;
}
.vidcontrol {
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 0 0.75rem;
}
.emphasis-green {color:#C1EE86; font-weight:700;}
.emphasis-gold {color:#FFD200; font-weight:700;}
.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-prev-icon,
.carousel-control-next-icon {
	opacity: 1;
	z-index: 100;
	bottom: auto;
	width: 5%;
	background: #000;
	color: #fff;
	font-size: 2rem;
	width: auto;
	height: 1em;
	line-height:1;
	border-radius: 50%;
	top:45%;
}

/* PARALLAX */

.parallax {
	margin:0 -15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.parallax1 {
	background-image: url("/news/features/2025/images/ocean-94224-parallax-sm.jpg");
	height: 450px;
}
.parallax2 {
	background-image: url("/news/features/2025/images/ocean-70300-parallax-sm.jpg");
	height: 450px;
}
.text-overlay {
	font-size:1.25em; 
	color:#fff; 
	padding:1em; 
	background-color: 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/2025/images/ocean-94224-parallax-md.jpg");
	}
	.parallax2 {
		background-image: url("/news/features/2025/images/ocean-70300-parallax-md.jpg");
	}
	.text-overlay {width:60%;}
}

@media only screen and (min-width : 992px) {
	.bgvid-text {
		background-color: rgba(0, 0, 0, 0.85);
		position: absolute;
		top: 125px;
		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) {
	.parallax1 {
		background-image: url("/news/features/2025/images/ocean-94224-parallax-xl.jpg");
	}
	.parallax2 {
		background-image: url("/news/features/2025/images/ocean-70300-parallax-xl.jpg");
	}

}

/* 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; }
}
