/*-----Global-----*/
* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
}
html {
	font-family: proxima nova, sans-serif;
}
body {
	width: 100%;
	background-image: url(../images/BG_01.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.wrapper {
	width: 90%;
	margin: 0 auto;

}
.clearfix::after {
	content: "";
	clear: both;
	display: table;
}
h1 {
	color: white;
	font-size: 45px;
}
p{
	color: white;
	font-size: 16px;
}
ul {
	list-style: none;
	margin-top: 30px;
}
li {
	color: white;
	font-size: 16px;
	margin-bottom: 20px;
}

/*-----nav-----*/
nav {
	height: 100px;
	line-height: 100px;
}
nav a {
	color: white;
	text-decoration: none;
}
nav a img {
	vertical-align: middle;
}
nav a:nth-child(2) {
	float: right;
}

/*-----header-----*/
header {
	margin: 100px 0 200px;
	text-align: center;
}
header p {
	width: 45%;
	margin: 30px auto 0 auto;
}
header a {
	color: #ff4a5e;
	text-decoration: none;
}

/*-----work-----*/
#work {
	text-align: center;
	width: 100%;
}
#work a img {
	margin: 1%;
	width: 45%;
}

/*-----whatIdo-----*/
.whatUneed {
	text-align: center;
	margin: 100px 0 200px 0;
	position: relative;
}
.whatUneed h1 {
	color: #13a3fd;
}
.iAm {
	color: #25272c;
	font-size: 160px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	top: -20px;
	z-index: -1;
}

/*-----work2-----*/
.work2 {
	width: 100%;
	text-align: center;
}


/*-----footer-----*/
footer {
	text-align: center;
	margin: 60px 0;	
}
footer p {
	color: #404348;
}

/*-----Responsive-----*/
@media only screen and (max-width: 991px) {
	header p {
		width: 100%;
	}
	
}


@media only screen and (max-width: 768px) {
	header {
		width: 96%;
		margin: 30px auto 100px auto;
		text-align: left;
	}

		#work a img {
		margin: 2%;
		width: 96%;
	}

	.whatUneed {
		text-align: left;
		width: 96%;
		margin: 70px auto 100px auto;
	}
	.iAm {
		visibility: hidden;
	}
	footer {
		text-align: left;
		width: 90%
		margin: 60px auto;
	}
}


















