
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body{
	font-family: "Source Sans Pro", sans-serif;
}

nav{
	background-color: rgba(0,0,0,0.8);
	display: flex;
	align-items: center;
	padding: 10px 20px;
    position: fixed;
    left: 0;
    right: 0;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.8);
    z-index: 9;
}

nav #logo{
	flex: 1;
}

nav ul.nav{
	display: flex;
	align-items: center;
	list-style: none;
}

nav ul.nav li a{
	color: #818181;
	text-transform: uppercase;
	text-decoration: none;
}

nav ul.nav li a:hover{
	text-decoration: underline;
}

nav ul.nav li{
	padding: 0 10px;
}

nav .menuIconWrap{
	display: none;
}

nav .menuIcon1, 
nav .menuIcon2, 
nav .menuIcon3{
  width: 25px;
  height: 3px;
  background-color: #818181;
  margin: 4px 0;
  transition: 0.4s;
}

nav ul.nav li.closebtn{
	display: none;
}

#logo{
	color: #ffffff;
	font-size: 3vw;
}

#logo span{
	display: block;
	font-size: 1vw;
}

header{
	background: #000000 url(images/sunitienterprises-fountain.jpg) no-repeat;
	background-size: cover;
    background-position: center;
	height: 100vh;
	position: relative;
    z-index: 1;
}

header::after{
	content:"";
	background: linear-gradient(to right, rgba(10, 10, 10, 0.9) 0%, rgba(50, 50, 50, 0.2) 100%);
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

header h1{
	padding: 60vh 10vw 0 10vw;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
	font-size: 7vw;
	font-weight: 700;
}
header h1 span{
	display: block;
	font-weight: 300;
}

section{
	padding:7vw 2vw 2vw 2vw; 
}

footer{
	height: 10vh;
	padding: 2vw;
	background-color: #000;
	color: #fff;
	text-align: center;
}

h2{
    font-size: 3vw;
    padding: 15px 0;
    text-align: center;
    position: relative;
}

h2:after{
	content: "";
    position: absolute;
    left: 50%;
    bottom: 1vw;
    width: 50px;
    height: 2px;
    margin-left: -25px;
    background-color: #d65050;
}

h3{
    font-size: 2vw;
    padding: 10px 0;
}