/*-------------
 	General
-------------*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	font: bold 32px sans-serif;
	color: #00008B;
}

ul, nav{
	list-style: none;
}

a{
	font color: #00008B;
	cursor: pointer;
	opacity: 0.5;
}

a:hover{
	color: #00008B;    
	opacity: .7;
}

a.btn{
	border-radius: 4px;
	font color: #00008B;
	text-transform: uppercase;
	font-weight: 800;
	text-align: center;
}

hr{
	width: 150px;
	height: 2px;
	border: 0;
	margin-bottom: 80px;
}

section{
	display: flex;
	color: #00008B;
	flex-direction: column;
	align-items: center;
	padding: 125px 100px;
}


section h3.title{
	color: #00008B;
	text-transform: capitalize; 
	font: bold 25px 'Open Sans', sans-serif;
	margin-bottom: 15px;
	text-align: center;
}

section p{
	max-width: 800px;
	text-align: center;
	margin-bottom: 35px;
	padding: 0 20px;
	line-height: 2;
}

ul.grid{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


/*-------------
 	Header
-------------*/

header{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 35px 100px 0;
}

header h2{
	font-family: 'Quicksand', sans-serif;
}

header nav{
	display: flex;
}

header nav li{
	margin: 0 15px;
}

header nav li:first-child{
	margin-left: 0;	
}

header nav li:last-child{
	margin-right: 0;	
}




/*----------------
 	Hero Section
----------------*/

.hero{
	position: relative;
	justify-content: center;
	min-height: 100vh;
	color: ##00008B;
	text-align: center;
}

.hero .background-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-color: #ADD8E6;
	z-index: -1;
}


.hero h1{
	font: bold 60px 'Open Sans', sans-serif;
	margin-bottom: 15px;
}

.hero h3{
	font: bold 25px 'Open Sans', sans-serif;
	margin-bottom: 15px;
}

.hero a.btn{
	padding: 20px 46px;
}
