/*
|-----------------------------------------------------------------------------------------------------------
| INTERIOR HEROS
|-----------------------------------------------------------------------------------------------------------
*/

.hero-int {
	position: relative;
	z-index: 1;
	padding-bottom: 10px;
	background-color: #fff;
}

.hero-int .img-cont {
	position: relative;
	overflow: hidden;
}

.hero-int .img-cont .img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.hero-int .link {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	background-color: #00a5b5;
	padding-bottom: 0;
	border-bottom: none;
	font-size: 15px;
	font-family: 'klinic_slabbold';
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
}

.hero-int .link .inner {
	position: relative;
}

.hero-int .link h5 {
	margin: 0;
	color: #fff;
	font-size: 14.5px;
}

.hero-int .link .indicator {
	
	position: absolute;
	top: -3px;
	right: -30px;
	width: 20px;
	height: 20px;
}

.hero-int .link .indicator img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

@media only screen and (min-width: 1025px) {
	.hero-int .link {
		position: absolute;
		bottom: 25px;
		right: 50%;
		transform: translateX(50%);
		width: auto;
		display: flex;
		justify-content: center;
		background-color: rgba(0, 165, 181, 0.8);
	}
	
	.hero-int .link .inner {
		width: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 10px 16px;
	}
	
	.hero-int .link h5 {
		font-size: 18px;
		margin: 0;
		padding-right: 11px;
	}
	.hero-int .link h5.no-link {
		padding-right: 0px;
	}	
	.hero-int .link .indicator {
		position: relative;
		flex: 0 0 auto;
		width: 20px;
		height: 20px;
		top: auto;
		right: auto;
	}
}

.hero-int .video-controls-mobile.show-for-medium-down {
	position: absolute;
	top: 47%;
	left: 50%;
	transform: translate(-50%,50%);
}
.hero-int .video-controls-mobile.show-for-medium-down i {
	color: #fff;
	font-size: 40px;
}
.hero-int .loaded.paused .fa-pause-circle,
.hero-int .loaded .fa-play-circle {
    display: none;
}
.hero-int .loaded .fa-pause-circle,
.hero-int .paused.loaded .fa-play-circle {
    display: block;
}
.hero-int .loaded .fa-volume-up,
.hero-int .loaded.muted .fa-volume-off {
	display: none;
}
.hero-int .loaded.muted .fa-volume-up,
.hero-int .loaded .fa-volume-off {
	display: block;
}
.hero-int .controls[data-sv-video-control] i {
	position: absolute;
	color: #fa932a;
	bottom: 20px;
	font-size: 34px;
	right: 121px;
	z-index: 99999;
}
.hero-int .controls[data-sv-audio-control] i {
	position: absolute;
	color: #fa932a;
	bottom: 20px;
	font-size: 34px;
	right: 75px;
	z-index: 99999;
}
.hero-int video.show-for-large-up {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}