.hero-section {
	background: linear-gradient(180deg, #091D41 0%, #5D97C9 100%);
	color: #FFF;
	font-family: "Futura PT";
	margin-bottom: 50px;
	overflow: hidden;
	padding: 25px;
	position: relative;
	width: 100%;
}

.hero-video-container:before {
	content: "";
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 30px;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.hero-video-container{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.logo-container, .description-container{
	position: relative;
}

.logo-container a{
	display:inline-block;
}

.logo-container img{
	display:block; box-sizing:border-box; border:2px solid transparent; transition:border 0.25s ease;
}

.logo-container img:hover{
	border-bottom-color:rgba(255,255,255,0.4); 
}

.hero-bg-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	min-width: 100%;
	min-height: 100%;
	z-index: -1;
	background: #5D97C9;
	border-radius: 30px; 
}

.hero-section .hero-wrap{
	min-height: 40vw;
	position: relative;
	z-index: 2;
	background-color: rgba(0,0,0,0.5);
	border-radius: 30px;
	padding: 50px 50px 100px 50px;
}

@media (width <= 576px){
	.hero-section .hero-wrap{
		padding:15px;
	}
}

.hero-wrap > *:not(.hero-bg-video) {
	z-index: 2;
}

.hero-section h1 {
	color: #FFF;
	font-family: 'Avenir Next', Avenir, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;    
	margin-bottom: 20px;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section h2{
	color: #FFF;
	font-family: "futura-pt-bold", sans-serif;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	text-align: center;
	text-transform: uppercase;
}

.hero-section .lead {
	font-size: 22px;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}