html 
{	font-size:15px;
}
*
{	box-sizing:border-box;
	
}
header
{	background:#364253;
	opacity:0.6;
	height:125px;
	display: flex;
	justify-content:center;
	align-items: center;
	position:fixed;
	width: 100%;
	z-index: 2;
}
header > nav  img
{	width:275px;
	height:auto;
}
a
{	text-decoration:none;
	color:white;
}
header > nav
{
	width:60%;
	display: flex;
}
nav > a
{
	width:275px;
}
nav > div
{
	align-items: stretch;
	flex:1;
	display:flex;
	justify-content: space-around;
	align-items: center;
}
section > h1
{
	margin:20px auto;
	text-align: center;
	font-weight: normal;
	font-size: 40px;
	text-transform: uppercase;
	font-family: 'Bebas Neue', sans-serif;
	color:#364253;
}
section > div
{
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
section > div > figure
{
	margin: 20px 10px;
	display: flex;
	flex-direction: column;
}
section > div > figure > figcaption
{
	order:1;
	text-align: center;
	margin-bottom: 10px;

}
section > div > figure > img
{
	order:2;
}

video
{	min-width:100%;
	min-height:100%;
	height:100vh;
	width:100vw;
	object-fit: cover;
	position:absolute;
	top:50%;
	left:50%;
	transform:translateX(-50%) translateY(-50%);
	overflow:hidden;
}
body > div
{	height :80vh ;
	background :yellow ;
	position :relative ;
	overflow :hidden
}