body, body *{
	box-sizing: border-box;
	font-family: helvetica, sans-serif;
	padding: 0px;
	margin: 0px;
}

header{
	background-image: linear-gradient(to left,hsla(0,0%,0%,0.7),hsla(0,0%,0%,0.7)),
	url('../img/homebanner.jpg');
	background-size: 150%;
	background-repeat: no-repeat;
	background-position: 50% 70%;
	min-height: 400px;
}
hr{
	color: ,hsla(40,80%,50%,0.7);
}

header div{
	background:hsl(0,0%,0%,0.8);
	text-align: center;
	padding: 20px;
	padding-bottom: 20px;
}
header ul{
	white-space: nowrap;
	overflow: auto;
}

header ul li{
	display: inline-block;
}
header li a{
	color: white;
	text-transform: uppercase;
	text-decoration: none;
	margin-right: 50px;
}

.logo{
	margin-bottom: 12px;
	display: inline-block;
}
.logo img{
		width: 150px;
}
header section{
	text-align: center;
	padding: 30px;
	color: white;
}
header section h1{
	font-size: 20px;
	font-weight: bolder;
	margin:30px;
	margin-bottom: 20px;
}
header section a{
	text-decoration: none;
	background:hsla(40,80%,50%,0.8);
	color: black;
	display:inline-block;
	padding: 15px;
	min-width: 250px;
	margin-top: 25px;
	font-weight: bolder;
	font-size: 18px;
	border-radius: 25px;
}
header section p{
	font-size: 19px;
}

footer{
text-align: center;
padding: 30px;
  background:black;
}

footer *{
	margin-bottom: 10px;
	font-style: normal;
	color:hsla(40,80%,50%,0.7);
}
footer li{
	list-style: none;
	display: inline-block;
	margin: 3px;
}

footer li img{
	width: 45px;
}

footer h1{
	font-size: 20px;
	font-weight: bolder;
	margin:30px;
	margin-bottom: 20px;
}
footer em{
	margin-top: 8px;
	display: inline-block;
}

.animate-inview {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: all 0.6s cubic-bezier(0.5, 1.5, 0.3, 1);

}

.animate-inview.in-view {
  opacity: 1;
  transform: scale(1) translateY(0);
 }


@media(min-width: 1000px){
header section{
	padding: 250px;
}

header section h1, footer h1{
	font-size: 30px;
}

header{
	background-image: linear-gradient(to left,hsla(0,0%,0%,0.2),hsla(0,0%,0%,0.2)),
	url('../img/homebanner.jpg');
	background-size: 150%;
	background-repeat: no-repeat;
	background-position: 50% -20%;
	min-height: 400px;
}
}