html {
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
}

* {
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
}

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

body {
	color:#606060;
	font-family:  'Lato', sans-serif;
	font-weight: normal;
	font-size:16px;
	-webkit-font-smoothing:subpixel-antialiased;
	-moz-font-smoothing:grayscale;
	background:#1e1d1d;
}

.index-heading {
	position:relative;
	top:-20px;
}

a {
	color:#42c1eb;
	font-weight:bold;
	text-decoration:none;
}

a:hover {
	color:#78d7f6;
}

#container {
	display:block;
	width:100%;
	background:#1e1d1d;
}

/* Header */

#header {
	margin:0 auto;
	padding:5% 5% 0 5%;
	text-align:center;
}

.sig-mark {
	display:block;
	height:117px;
	width:117px;
	margin:0 auto;
	background-image:linear-gradient(to bottom, #8f8513, #625b0d);
	box-shadow:inset 0px 1px 1px rgba(255,255,255,0.3), 0px 1px 4px rgba(0,0,0,0.7);
	margin-bottom:50px;
}

.sig-mark:hover {
	background-image:linear-gradient(to bottom, #ada518, #7b7310);
}

#header ul li {
	float:left;	
	width:20%;
	margin:0 2.5%;
}

#header li a {
	display:block;
	padding:30px 0;
	color:#606060;
	text-decoration:none;
	border-bottom:5px solid transparent;
	transition:all .3s ease;
}

#header li.active:first-child a, 
#header li:first-child a:hover,
#header li:first-child a:focus {
	border-bottom:5px solid #797010;
	color:#fff;
	transition:all .3s ease;
}

#header li.active:nth-child(2) a, 
#header li:nth-child(2) a:hover,
#header li:nth-child(2) a:focus {
	border-bottom:5px solid #3e6871;
	color:#fff;
	transition:all .3s ease;
}

#header li.active:nth-child(3) a, 
#header li:nth-child(3) a:hover,
#header li:nth-child(3) a:focus {
	border-bottom:5px solid #7a461c;
	color:#fff;
	transition:all .3s ease;
}


#header li.active:last-child a, 
#header li:last-child a:hover,
#header li:last-child a:focus {
	border-bottom:5px solid #775178;
	color:#fff;
	transition:all .3s ease;
}

#content {
	background:#222121;
	padding:5%;
}

/* Portfolio Shots */

.portfolio {
	
}

.portfolio li {
	float:left;	
	width:20%;
	margin:0 2.5% 5% 2.5%;
	transition:all .7s ease;
}

.portfolio li .loading {
	background: #1e1d1d url(../images/loading-shots.gif) no-repeat center center;
}

.portfolio a {
	display:block;
}

.portfolio img {
	display:block;
	width:100%;
	border:2px solid transparent;
	transition:all .3s ease;
}

.portfolio .active img {
	border:2px solid #42c1eb;
	box-shadow:0px 0px 5px rgba(255,255,255,0.4);
	transform:scale3d(1.05,1.05,1);
	transition:all .3s ease;
}

/* About Tab */

.about-content {
	width:50%;
	float:right;
	padding:0;
	color:#a2a2a2;
	line-height:22px;
	padding:2.5%;
}

.about-content img {
	width:100%;
}

.about-content blockquote {
	font-style:italic;
	color:#eee;
	font-size:18px;
	line-height:28px;
	font-weight:lighter;
	margin:5%;
}

.about-content .signature {
	font-family: 'Euphoria Script', cursive;
	font-size:30px;
	margin:10% 0;
}

/* Details Page */

.shot-details {
	text-align: center;
	margin-bottom:10%;
	transition:all .7s ease;
}

.shot-details img {
	display:block;
	width:80%;
	margin:0 auto;
	margin-bottom:5%;
	transition:all .7s ease;
}

.shot-details h1 {
	display:block;
	margin-bottom:2.5%;
	color:#fff;
	line-height:30px;
	font-size:32px;
	font-weight:lighter;
	transition:all .7s ease;
}

.shot-details p {
	margin-bottom:5%;
	color:#a2a2a2;
	font-size:16px;
	line-height:26px;
	transition:all .7s ease;
}

.shot-details.web h1 {color:#9e9425;}
.shot-details.id h1 {color:#59939f;}
.shot-details.illus h1 {color:#9b5013;}

/* Footer */

#footer {
	padding:5%;
	clear:both;
}

#footer .sig-mark {
	width:117px;
	height:117px;
	background:#2b2a2a;
	display:block;
	margin:0 auto;
	box-shadow:none;
}

#footer .sig-mark:hover {
	background:#383737;
}

/* Display Styles */

.hidden { 
	display: none; 
}

@media only screen and (max-width:1024px) { 

	.portfolio li {
		width:30%;
		margin:0 1.65% 3.3% 1.65%;
		transition:all .7s ease;
	}	

}

@media only screen and (max-width:768px) { 

	#content {
		padding:8%;
	}

	.portfolio li {
		width:45%;
		margin:0 2.5% 5% 2.5%;
	}	

	.about-content {
		float:left;
	}

}

@media only screen and (max-width:480px) { 

	#header {
		margin:0 auto;
		padding:10% 0 0 0;
	}

	#header ul {
		border-top:1px solid rgba(255,255,255,.1);
	}

	#header ul li {
		margin:0;
		width:25%;
		border-bottom:1px solid rgba(255,255,255,.1);
		border-right:1px solid rgba(255,255,255,.1);
	}

	#header ul li:last-child {
		border-right:none;
	}

	.about-content {
		float:none;
		width:auto;
	}

	.shot-details {
		margin-bottom:20%;
		transition:all .7s ease;
	}

	.shot-details img {
		width:100%;
		margin-bottom:10%;
		transition:all .7s ease;
	}

	.shot-details h1 {
		margin-bottom:5%;
		transition:all .7s ease;
	}

	.shot-details p {
		margin-bottom:10%;
		transition:all .7s ease;
	}

	#footer {
		padding:10% 0;
	}

}

@media only screen and (max-width:414px) { 

	#header {
		margin:0 auto;
		padding:10% 0 0 0;
	}

	#header ul {
		border-top:1px solid rgba(255,255,255,.1);
	}

	#header ul li {
		width:50%;
		margin:0;
		border-right:none;
		border-bottom:1px solid rgba(255,255,255,.1);
	}

	#header ul li:first-child, #header ul li:nth-child(3) {
		border-right:1px solid rgba(255,255,255,.1);
	}

	#content {
		padding:12%;
	}

	.portfolio li {
		width:95%;
		margin:8% 0;
	}

	.shot-details img {
		width: 120%;
		margin: 10% -10%;
		transition:all .7s ease;
	}	

	#footer {
		padding:10% 0;
	}

}

@media screen and (max-width:320px) {

	#content {
		padding:12% 5%;
	}

	.portfolio li {
		margin:0 2.5% 5% 2.5%;
	}

	.shot-details {
		text-align:left;
	}

	.shot-details img {
	  width: 100%;
	  margin: 0;
	  transition: all .7s ease;
	}

}










