/*--------------------------------------------------------------
## Hero
--------------------------------------------------------------*/
.hero{
	min-height: 300px;
	position: relative;
}
.hero.hero-full-height{
	height: 100vh;
}

.site-header.top ~ .hero.hero-full-height{
		height: calc( 100vh - 62px);
	}
	
.hero.hero-full-height[data-menu-position='bottom']{
	margin-top: -1rem;
	height: calc(100vh - 67px);
}


.hero::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: -webkit-gradient(linear, left top, right top, from(#13c7be) , to(#1282ca));
	background-image: linear-gradient(to right, #13c7be , #1282ca);
	z-index:4;
	opacity: 0.7;
}

.hero-background{
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: 3;
	overflow: hidden;
}

.hero-video{
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	height: auto;
	width: auto;

}
.volume-button{
	height: 20px;
	width: 20px;
	color: #fff;
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 11;
	cursor: pointer;
}

.arrow-down{
	height: 40px;
	width: 30px;
	color: #fff;    
	position: absolute;
	bottom: 25px;
	left:  50%;
	-webkit-transform: translatex(-50%);
	        transform: translatex(-50%);
	cursor: pointer;
	z-index: 11;
	-webkit-animation: bounce 0.7s  infinite alternate;
	        animation: bounce 0.7s  infinite alternate;
}

@-webkit-keyframes bounce {
	from { bottom: 25px;}
	to   { bottom: 5px; }
}

@keyframes bounce {
	from { bottom: 25px;}
	to   { bottom: 5px; }
}

.hero-content{
	height: 100%;
	padding-left: 100px; 
	padding-right: 100px; 
	position: relative;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.hero-content.left-align{
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}

.hero-content.right-align{
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.hero-content.center-align{
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.hero-content .hero-title,.hero-content .hero-subtitle{
  color: #f9f9f9;
}

.hero-content h1.hero-title{
 margin-top: 0;
 margin-bottom: 20px;
 font-size: 3em;
}

.hero-content .hero-subtitle{
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
}

@media screen and (max-width: 37.5em) {
	.site-header ~ section.hero{
		margin-top: 0;
	}
	.hero.hero-full-height[data-menu-position='bottom']{
		margin-top: 0;
		height: calc( 100vh - 62px);
	}
}
@media screen and (max-width: 768px) {
	.hero-content{
		padding-left: 2em;
		padding-right: 2em;
	}
	.hero-content h1.hero-title{
		font-size: 2em;
	}


}

@media screen and (max-width: 512px) {
	.hero-content{
		padding-left: 1.5em;
		padding-right: 1.5em;
	}

}