*{
	margin: 0;
	padding: 0;
}

.header{
    	min-height: 100vh;
    	width: 100%;
    	background: black;
    	background-position: center;
    	background-size: cover;
    	position: relative;
} 

.footer{
	background: black;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	text-align: center;
	height: 20%;
}

.footer p{
	color: white;
	line-height: 35px;
}

nav{
    	display: flex;
    	padding: 1% 6%;
    	justify-content: space-between;
    	align-items: center;
}  

nav img{
    	width: 150px;
	margin-top: 40px;
}   

.nav-links{
    	flex: 1;
    	text-align: right;
}

.nav-links ul li{
    	list-style: none;
    	display: inline-block;
    	padding-top: 70px;
	padding-bottom: 20px;
	padding-left: 24px;
	padding-right: 24px;
    	position: relative;
}

.nav-links ul li a{
    	color: #fff;
    	text-decoration: none;
    	font-size: 17px;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}

.nav-links ul li::after{
    	content: '';
    	width: 0%;
    	height: 2px;
    	background: #fff;
    	display: block;
    	margin: auto;
    	transition: 0.5s;
}

.nav-links ul li:hover::after{
    	width: 100%;
}


.nav-shop{ 
   	flex: 1;
    	text-align: center;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	border-left: 0;
	border-right: 0;
}

.nav-shop ul li{
    	list-style: none;
    	display: inline-block;
    	padding: 15px 24px;
    	position: relative;
}

.nav-shop ul li a{
    	color: #fff;
    	text-decoration: none;
    	font-size: 20px;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	line-height: 30px;
}

.nav-shop ul li::after{
    	content: '';
    	width: 0%;
    	height: 2px;
    	background: #fff;
    	display: block;
    	margin: auto;
    	transition: 0.5s;
}

.nav-shop ul li:hover::after{
    	width: 100%;
}

.shop-header{
	width: 100%;
	height: 550px;
	background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),url(images/shop-banner-1.png);
	position: absolute;
  	background-repeat: no-repeat;
  	background-attachment: fixed;
  	background-size: cover;
}

.shop-name{
	margin-left: 30%;
	width: 40%;
}

.shop-name h2{
	text-align: center;
	font-size: 45px;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	color: white;
}

.white-space{
	width: 100%;
}

.content{
	background-color: black;
   	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
}

.shirts-preview{
	width: 100%;
	height: 550px;
	background: black;
	border-top: 1px solid white;
	padding-top: 15px;
}

.outerwear-preview{
	width: 100%;
	height: 600px;
	background: black;
	border-top: 1px solid white;
	padding-top: 15px;
}

.atf-preview{
	width: 100%;
	height: 600px;
	background: black;
	border-top: 1px solid white;
	padding-top: 15px;
}

.music-preview{
	width: 100%;
	height: 600px;
	background: black;
	border-top: 1px solid white;
	padding-top: 15px;
}

.ddld-preview{
	width: 100%;
	height: 600px;
	background: black;
	border-top: 1px solid white;
	padding-top: 15px;
}

.accessories-preview{
	width: 100%;
	height: 600px;
	background: black;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
	padding-top: 15px;
}

.shop-item{
	width: 20%;
	height: 400px; 
	background: black;
	display: inline-block;
	margin-left: 10%;
	text-align: center;
}

.shop-item img{
	background-repeat: no-repeat;
  	background-attachment: fixed;
  	background-size: cover;
	width: 100%;
}

.shop-item h3{
	text-align: center;
	font-size: 20px;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	color: white;
}

.shop-item h4{
	text-align: center;
	font-size: 15px;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	color: #fff;
	line-height: 35px;
}

.name{
	background: black;
	text-align: center;
	width: 100%;
	height: 15%;
}

.name h5{
	font-size: 30px;
	font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
	line-height: 70px;
	color: white;
}

@media only screen and (max-width: 470px){
	nav img{
    		width: 100px;
		margin-top: 40px;
	} 
 
	.nav-links ul li{
    		padding-top: 50px;
		padding-bottom: 10px;
		padding-left: 12px;
		padding-right: 12px;
	}

  	.nav-links ul li a{
    		font-size: 12px;
	}

	.nav-shop ul li{
	    	padding: 10px 20px;
	}
	
	.nav-shop ul li a{
	    	font-size: 15px;
		line-height: 10px;
	}

	.shop-header{
		height: 300px;
		margin-top: 2%;
	}
	
	.shop-name{
		margin-left: 25%;
		width: 50%;
	}
	
	.shop-name h2{
		font-size: 25px;
	}

	.shirts-preview{
		padding-top: 15px;
		height: unset;
	}

	.outerwear-preview{
		padding-top: 15px;
		height: unset;
	}
	
	.atf-preview{
		padding-top: 15px;
		height: unset;
	}
	
	.music-preview{
		padding-top: 15px;
		height: unset;
	}
	
	.ddld-preview{
		padding-top: 15px;
		height: unset;
	}
	
	.accessories-preview{
		padding-top: 15px;
		height: unset;
	}

	.shop-item{
		height: 400px;
		display: inline;
	}

	.shop-item img{
		width: 80%;
	}
}










