@charset "utf-8";
/*-------------
 	General
-------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font: normal 16px sans-serif;
	color: var(--text);
}

ul, nav {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	opacity: 0.9;
}

a:hover {
	opacity: 1;
}

a.btn {
	color: #fff;
	border-radius: 4px;
	text-transform: uppercase;
	background-color: #2196F3;
	font-weight: 800;
	text-align: center;
}

hr {
	width: 150px;
	height: 2px;
	background-color: var(--menutext);
	border: 0;
	margin-bottom: 80px;
}

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

@media ( max-width : 1000px) {
	section {
		padding: 100px 50px;
	}
}

@media ( max-width : 600px) {
	section {
		padding: 80px 30px;
	}
}

section h3.title {
	color: var(--heading);
	text-transform: capitalize;
	font: bold 32px 'Open Sans', sans-serif;
	margin-bottom: 35px;
	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;
}

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

img { width: 100%}

/*-------------
 	Header
-------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--menutext);
	background-color: var(--menu);
	padding: 10px 100px 10px;
}

header a {
	font-size: xx-large;
}

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

header img { 
	width: 10%;
	vertical-align: middle;	
}

header nav ul {
	display: flex;
}

header nav li {
	margin: 0 15px;
}

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

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

@media ( max-width : 1000px) {
	header {
		padding: 20px 50px;
	}
}

@media ( max-width : 700px) {
	header {
		flex-direction: column;
	}
	header h2 {
		margin-bottom: 15px;
	}
}

/*----------------
 	Hero Section
----------------*/
.hero {
	position: relative;
	justify-content: center;
	min-height: 100vh;
	color: var(--menutext);
}

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

.hero .background-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #414a4f;
	opacity: 0.5;
}

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

.hero h3 {
	font: normal 48px 'Open Sans', sans-serif;
	margin-bottom: 40px;
}

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

.hero .grid .left {
	flex-basis: 50%;
}

.hero .grid .right {
	flex-basis: 50%;
	text-align: right;
}

@media ( max-width : 800px) {
	.hero {
		min-height: 600px;
	}
	.hero h1 {
		font-size: 48px;
	}
	.hero h3 {
		font-size: 24px;
	}
	.hero a.btn {
		padding: 15px 40px;
	}
}

/*----------------------
 	Features Section
----------------------*/
.features {
	background-color: var(--background);
}

.features .grid li {
	padding: 0 30px;
	flex-basis: 33%;
	text-align: center;
}

.features .grid li i {
	font-size: 50px;
	color: var(--menutext);
	margin-bottom: 25px;
}

.features .grid li h4 {
	color: var(--heading);
	font-size: 20px;
	margin-bottom: 25px;
}

.features .grid li p {
	margin: 0;
}

.features .email {
	color: var(--heading);
}

@media ( max-width : 1000px) {
	.features .grid li {
		flex-basis: 70%;
		margin-bottom: 65px;
	}
	.features .grid li:last-child {
		margin-bottom: 0;
	}
}

@media ( max-width : 600px) {
	.features .grid li {
		flex-basis: 100%;
	}
}

/*--------------------
 	What Section
---------------------*/
.what {
	background-color: var(--background);
	min-height: 100vh;
}


.what hr {
	width: 250px;
}

.what .project {
	text-align: center;
	width: 80%;
	font-size: 22px;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 20px;
	padding: 0;
}

.what .location {
	color: var(--heading);
	font-size: 18px;
	margin-bottom: 50px;
}

.what .location img { width: 50%}

.what .location:last-child {
	margin-bottom: 0;
}

@media ( max-width : 1000px) {
	.what .project {
		font-size: 20px;
	}
	.what .location {
		font-size: 16px;
	}
}

/*-------------
 	Footer
-------------*/
footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	background-color: var(--menu);
	padding: 10px 0;
}

footer ul {
	display: flex;
	margin-bottom: 25px;
	font-size: 32px;
}

footer ul li {
	margin: 0 8px;
}

footer ul li:first-child {
	margin-left: 0;
}

footer ul li:last-child {
	margin-right: 0;
}

footer p {
	text-transform: uppercase;
	font-size: 14px;
	color: var(--menutext);
	margin-bottom: 2px;
}

footer p a {
	color: #fff;
}

@media ( max-width : 700px) {
	footer {
		padding: 80px 15px;
	}
}