html, body {
	margin: 0;
	padding: 0;
}

body {
	background: #efefef;
	
}

#loading {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #3a3b42;
	z-index: 9999;
}

#loading .spinner-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	height: auto;
	width: 100%;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#hero-wrapper {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

#hero {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-image: url(../images/jordan/SF-50.jpg);
	background-size: cover;
	background-position: center;
	min-height: 500px;
}

#hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 2000;
}

#name {
	font-family: 'Sacramento', cursive;
	position: absolute;
	top: 70%;
	left: 50%;
	width: 100%;
	height: auto;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: white;
	font-size: 80px;
	margin: 0;
	text-align: center;
	font-weight: 300;
	text-shadow: 0px 0px 19px rgb(36, 43, 58);
	z-index: 3000;
}

#main {
	padding-top: 40px;

}

.grid-item {
	/*margin-bottom: 20px;*/
}

.grid-item img {
	max-width: 100%;
	display: block;
}

.grid-sizer,
.grid-item { width: 25%; }
/* 2 columns */
.grid-item--width2 { width: 50%; }

@media screen and (max-width: 767px) {
	#name { font-size: 40px; }
	.grid-sizer,
	.grid-item { width: 100%; }
	/* 2 columns */
	.grid-item--width2 { width: 100%; }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.grid-sizer,
	.grid-item { width: 50%; }
	/* 2 columns */
	.grid-item--width2 { width: 100%; }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.grid-sizer,
	.grid-item { width: 33.333%; }
	/* 2 columns */
	.grid-item--width2 { width: 66.666%; }

}