/* GENERAL INFO 

font-family: 'Roboto', sans-serif;

*/

* {
	font-family: 'Roboto', sans-serif;
	color: #5a5a5a;
}

nav {
	background-color: rgba(255,255,255,0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	-ms-backdrop-filter: blur(8px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	padding: 10px 30px;
	z-index: 10;
}

nav img {
	height: 40px;
	margin-right: 10px;
}

nav a {
	color: #5a5a5a;
	margin: 0px 20px;
	transition-duration: 0.3s;
}

nav a:hover {
	color: #0078BF;
}

/* HERO */

.hero {
	height: 80vh;
	min-height: 500px;
	background-color: #f5f5f5;
	padding: 100px 20px;
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	background-image: url(/images/hero.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.hero:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.4);
}

.innerHero {
	text-align: center;
	z-index: 8;
	color: #fff;
}

.innerHero h1 {
    font-weight: bold;
    font-size: 100px;
    line-height: 80px;
    margin-bottom: 30px;
    color: #fff;
}

.innerHero h1 span {
	color: #aebe21;
}

.innerHero h3 {
	font-size: 12px;
	color: #fff;
}

.innerHero p {
    color: #fff;
    margin-bottom: 30px;
}

.innerHero a {
    color: #fff;
    background-color: #0078BF;
    border-radius: 5px;
    padding: 25px 50px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    margin: 20px 10px;
}

.innerHero a:hover {
    color: #AEBE20;
    background-color: #fff;
}


/* BODY INFO */

.bodyInfo {
	padding: 100px 20px;

}

.bodyInfo.contact {
	background-color: #f5f5f5;
}

.innerInfo {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.innerInfo hr  {
    width: 200px;
    border-top: 2px #aebe21 solid;
    margin: 30px auto;
}

.innerInfo p {
	color: #8a8a8a;
}

/* CONTATC INFO */

.contactInfo {
	display: flex;
	display: -webkit-flex;
	display: -ms-flex;
	justify-content: space-around;
	-webkit-justify-content: space-around;
	-ms-justify-content: space-around;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	align-items: flex-end;
	-webkit-align-items: flex-end;
	-ms-align-items: flex-end;

}

.contactBox {
	padding: 20px;
}

.contactBox hr {
	width: 200px;
    border-top: 2px #aebe21 solid;
    margin: 30px 0px;
}

.contactBox p {
	color: #8a8a8a;
}







