
/* a. Webfonts and Iconfonts
/* =================================================================== */
@import url("fonts.css");
@import url("font-awesome/css/font-awesome.min.css");
@import url("simple-line-icons/simple-line-icons.css");

/* 
/* b. Document Setup
/* =================================================================== */

/* Body
---------------------------------------------------------------------- */
body {
	background: #0e1015;
	font: 15px/30px "merriweather-regular", serif;
	font-weight: normal;
	color: #575859;
}

/* Links
---------------------------------------------------------------------- */
a, a:visited {
	color: #f26522;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
	color: white;
}

/* Typography
--------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	font-family: "raleway-bold", sans-serif;
	color: #c7c7c7;
	font-style: normal;
	text-rendering: optimizeLegibility;
	margin: 18px 0 15px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	font-weight: inherit;
}
h1 {
	font-size: 30px;
	line-height: 36px;
	margin-top: 0;
	letter-spacing: -1px;
}
h2 {
	font-size: 24px;
	line-height: 30px;
}
h3 {
	font-size: 20px;
	line-height: 30px;
}
h4 {
	font-size: 17px;
	line-height: 30px;
}
h5 {
	font-size: 14px;
	line-height: 30px;
	margin-top: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
h6 {
	font-size: 13px;
	line-height: 30px;
	margin-top: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
p {
	margin: 15px 0 0 0;
}
p img {
	margin: 0;
}
p.lead {
	font: 17px/33px "merriweather-light", serif;
	color: #e8e8e8;
}

p.read {
	font: 17px/33px "merriweather-light", serif;
	color: #e8e8e8;
}
em {
	font: 15px/30px "merriweather-italic", serif;
	font-style: normal;
}
strong, b {
	font: 17px/33px "merriweather-bold", serif;
	font-weight: normal;
	color: #c3c3c3;
	}

small {
	font-size: 11px;
	line-height: inherit;
	
}
blockquote {
	margin: 18px 0px;
	padding-left: 40px;
	position: relative;
}
blockquote:before {
	content: "\201C";
	opacity: 0.45;
	font-size: 80px;
	line-height: 0px;
	margin: 0;
	font-family: arial, sans-serif;
	position: absolute;
	top: 30px;
	left: 0;
}
blockquote p {
	font-family: georgia, serif;
	font-style: italic;
	padding: 0;
	font-size: 18px;
	line-height: 30px;
}
blockquote cite {
	display: block;
	font-size: 12px;
	font-style: normal;
	line-height: 18px;
}
blockquote cite:before {
	content: "\2014 \0020";
}
blockquote cite a, blockquote cite a:visited {
	color: #d4d4d4;
	border: none;
}
abbr {
	font-family: "merriweather-bold", serif;
	font-variant: small-caps;
	text-transform: lowercase;
	letter-spacing: .5px;
	color: #7d7e80;
}
pre, code {
	font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}
code {
	padding: 3px;
	background: #ecf0f1;
	color: #707273;
	border-radius: 3px;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
mark {
	background: #FFF49B;
	color: #000;
}
hr {
	border: solid white;
	border-width: 1px 0 0;
	clear: both;
	margin: 23px 0 12px;
	height: 0;
}

/* Lists
--------------------------------------------------------------------- */
ul, ol {
	margin-top: 15px;
	margin-bottom: 15px;
}
ul {
	list-style: disc;
	margin-left: 17px;
}
dl {
	margin: 0 0 15px 0;
}
dt {
	margin: 0;
	color: #f26522;
}
dd {
	margin: 0 0 0 20px;
}

/* Floated Image
--------------------------------------------------------------------- */
img.pull-right {
	margin: 12px 0px 0px 18px;
}
img.pull-left {
	margin: 12px 18px 0px 0px;
}

/* 
/* d. Preloader
/* =================================================================== */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #12151b;
	z-index: 99999;
	height: 100%;
}
.no-js #preloader {
	display: none;
}

#status {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	padding: 0;
}
#status img {
	display: none;
}

.loader {
	margin: 0 auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(255, 255, 255, 0.2);
	border-right: 1.1em solid rgba(255, 255, 255, 0.2);
	border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
	border-left: 1.1em solid #f26522;
	-webkit-animation: load 1.1s infinite linear;
	animation: load 1.1s infinite linear;
}
.loader, .loader:after {
	border-radius: 50%;
	width: 60px;
	height: 60px;
}
@-webkit-keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* for ie8 */
.ie8 #status img {
	display: block;
}
.ie8 .loader {
	display: none;
}


/* 
/* g. Header Styles
/* =================================================================== */
header {
	height: 72px;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 990;
	text-align: center;
	background-image: url("../images/menubar.png");
	background-repeat: repeat-x;
	-moz-transition: background 0.5s ease-in-out;
	-o-transition: background 0.5s ease-in-out;
	-webkit-transition: background 0.5s ease-in-out;
	-ms-transition: background 0.5s ease-in-out;
	transition: background 0.5s ease-in-out;
}

header .logo {
	
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	width: 280px;
	height: 32px;
	padding: 0;
	margin-right: 52px;
	/* add position relative since z-index only applies to
	elements that have been given an explicit position */
	position: relative;
	z-index: 992;
}
		
header .logo a {
	display: block;
	padding: 0;
	border: none;
	outline: none;
	font: 0/0 a;
	text-shadow: none;
	width: 273;
	height: 32px;
	margin-left: -13px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: url("../images/logo.png");
}
header .logo a:hover{
	display: block;
	padding: 0;
	border: none;
	outline: none;
	font: 0/0 a;
	text-shadow: none;
	width: 273;
	height: 32px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: url("../images/logoactive.png");
}

header .linkedin {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	width: 50px;
	height: 50px;
	padding: 0;
	margin-left: 235px;
	/* add position relative since z-index only applies to
	elements that have been given an explicit position */
	position: relative;
	z-index: 992;
}
header .linkedin a {
	display: block;
	margin: 0 0px -5px 0;
	padding: 0;
	border: none;
	outline: none;
	font: 0/0 a;
	text-shadow: none;
	width: 50px;
	height: 50px;
	opacity: 0.75;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: url("../images/linkedin.png");
}
header .linkedin a:hover{
	display: block;
	margin: 0 0px -5px 0;
	padding: 0;
	border: none;
	outline: none;
	font: 0/0 a;
	text-shadow: none;
	width: 50px;
	height: 50px;
	opacity: 1.0;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: url("../images/linkedinhover.png");
}

header .pdf {
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	width: 50px;
	height: 50px;
	padding: 0;
	margin-left: 10px;
	/* add position relative since z-index only applies to
	elements that have been given an explicit position */
	position: relative;
	z-index: 992;
}
header .pdf a {
	display: block;
	margin: 0 0px -5px 0;
	padding: 0;
	border: none;
	outline: none;
	font: 0/0 a;
	text-shadow: none;
	width: 50px;
	height: 50px;
	opacity: 0.75;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: url("../images/pdf.png");
}
header .pdf a:hover{
	display: block;
	margin: 0 0px -5px 0;
	padding: 0;
	border: none;
	outline: none;
	font: 0/0 a;
	text-shadow: none;
	width: 50px;
	height: 50px;
	opacity: 1.0;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: url("../images/pdfhover.png");
}

/* primary navigation
--------------------------------------------------------------------- */
#nav-wrap, #nav-wrap ul, #nav-wrap li, #nav-wrap a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	}

/* nav-wrap */
#nav-wrap {
	font: 14px "raleway-heavy", sans-serif;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	display: inline-block;
}

/* hide toggle button */
#nav-wrap > a {
	display: none;
}
ul#nav {
	min-height: 72px;
	width: auto; 

	/* left align the menu */
	text-align: left;
}
ul#nav li {
	position: relative;
	list-style: none;
	height: 72px;
	display: inline-block;
}
ul#nav li a {
	display: inline-block;
	padding: 17px 12px;
	line-height: 38px;
	text-decoration: none;
	color: #c0cdd1;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
ul#nav li a:hover {
	color: white;
	background: #793311;
}
ul#nav li a:active {
	background-color: transparent !important;
}
ul#nav li.current a {
	background: #f26522;
	color: white;
}


/

/* 
/* i. Footer Styles
/* =================================================================== */
footer {
	padding-top: 12px;
	padding-bottom: 12px;
	font-size: 13px;
	line-height: 40px;
	position: relative;
	color: #3C4142;	
}
footer a, footer a:visited {
	color: #a43b0a;
}
footer a:hover, footer a:focus {
	color: white;
}
footer h3 {
	font: 13px/24px "raleway-bold", sans-serif;
	margin-bottom: 0;
	color: white;
	text-transform: uppercase;
	letter-spacing: 1px;
}
footer p {
	margin: 12px 0;
}

footer .footer-resume {
	padding-right: 60px;
}
footer .right-cols .columns {
	width: 50%;
	word-wrap: break-word;
}
footer ul {
	margin: 12px 0;
	padding: 0;
	list-style: none;
}
footer ul li {
	margin: 0;
	padding-left: 0;
	line-height: 24px;
}
footer ul li a, footer ul li a:visited {
	color: #3C4142;
}
footer .copyright {
	margin: 0;
	clear: both;
}




/* 
/* j. Common and shared styles
/* =================================================================== */

hr {
	border: solid #f26522;
	border-width: 3px 0 0;
	width: 130px;
	margin: 11px auto 15px;
	height: 0;
	clear: both;
	text-align: center;
}

/* section head
---------------------------------------------------------------------- */
.section-head {
	text-align: center;
}
.section-head h1 {
	font: 15px/24px "raleway-heavy", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: #c7c7c7;
	margin-bottom: 18px;
	
}
.section-head h1 span {
	color: #f26522;
}
.section-head p {
	font: 18px/36px "merriweather-light", sans-serif;
	width: 100%;
	color: #75777b;
	margin-left: auto;
	margin-right: auto;
}
.section-bio p {
	font: 18px/36px "merriweather-light", sans-serif;
	width: 100%;
	color: #75777b;
	margin-left: auto;
	margin-right: auto;
}

/* page title
---------------------------------------------------------------------- */
#page-title {
	background: #12151b, no-repeat, center, fixed;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	background-size: cover !important;
	padding-top: 108px;
	padding-bottom: 60px;
	text-align: center;
}
#page-title .row {
	max-width: 724px;
}
#page-title h1 {
	font: 54px/1.3 "raleway-bold", sans-serif;
	color: white;
	letter-spacing: -1px;
	margin-bottom: 0;
	text-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);	
}
#page-title h1 span {
	color: #f26522;
}
#page-title p {
	color: #cfd9db;
	margin: 0;
	text-shadow: 0 0px 0px rgba(0, 0, 0, 0.5);
}



/* 
/* l. Portfolio Section
/* =================================================================== */
#portfolio {
	background: #22252b;
	padding-top: 120px;
	padding-bottom: 120px;
}

a.hidden{display:none;}

#portfolio p {
	color: #e8e8e8;
	text-align: left;
	line-height: 22px;
	margin-right: 0px;
}

#portfolio h1 {
	color: #c7c7c7;
	font-size: 20px;
}

.ie #portfolio .row.items {
	width: 1140px;
}
#portfolio .row.items {
	max-width: 1024px;
}

/* Portfolio wrapper */
#portfolio-wrapper {
	margin-top: 0px;
}

/* portfolio items */
.item .item-wrap {
	overflow: hidden;
	position: relative;
}
.item .item-wrap a {
	display: block;
	cursor: pointer;
}
.item .item-wrap .overlay {
	background: #ed560e;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 15%;
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	-moz-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	-webkit-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;	
}
.item .item-wrap img {
	vertical-align: bottom;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.item .item-wrap .portfolio-item-meta {
	position: absolute;
	top: 10%;
	left: 5%;
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	image-rendering: -moz-crisp-edges;         /* Firefox */
    image-rendering:   -o-crisp-edges;         /* Opera */
    image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
	-moz-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	-webkit-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
.item .item-wrap .portfolio-item-meta h5 {
	font: 15px/21px "raleway-heavy", sans-serif;
	margin: 0;
	color: white;
	word-wrap: break-word;
}
.item .item-wrap .portfolio-item-meta p {
	font: 14px/18px "raleway-semibold", sans-serif;
	color: #fbcab3;
	margin: 0;
}

/* on item hover */
.item:hover .overlay {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}
.item:hover .portfolio-item-meta {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}
.item:hover .item-wrap img {
	 image-rendering: -moz-crisp-edges;         /* Firefox */
    image-rendering:   -o-crisp-edges;         /* Opera */
    image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.screenshot {
}
.screenshot img {
	border: none;
	margin-bottom: 0px;
	display: inline-block;
	float: left;
}
.screenshot:hover .screenshot img {
	image-rendering: -moz-crisp-edges;         /* Firefox */
    image-rendering:   -o-crisp-edges;         /* Opera */
    image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}






/* 
/*  n. Resume Section
/* =================================================================== */

#resume {
	background: #12151b;
	padding-top: 120px;
	padding-bottom: 120px;
	
}
#resume .resume-content {
	max-width: 1013px;
}
#resume h1 {
	color: #c7c7c7;
	font-size: 20px;
}
#resume h2 {
	color: #c7c7c7;
	text-align: left;
	line-height: 20px;
	font-size: 20px;
}

#resume h3 {
	color: #c7c7c7;
	line-height: 22px;
	text-align: left;
}

#resume p {
	color: #909397;
	text-align: left;
	line-height: 22px;
	margin-right: 60px;
}

#resume .left {
	padding-right: 30px;
	margin-bottom: 50px;
}
#resume .right {
	padding-left: 30px;
	margin-bottom: 50px;
}
#tab { display:inline-block; 
       margin-left: 80px; 
}

/* 
/*  n. Realportfolio Section
/* =================================================================== */

#realportfolio {
	background: #22252b;
	padding-top: 120px;
	padding-bottom: 120px;
	
}
#realportfolio .resume-content {
	max-width: 1013px;
}
#realportfolio h1 {
	color: #f0f0f0;
	font-size: 20px;
}
#realportfolio h2 {
	color: #f0f0f0;
	text-align: center;
	line-height: 26px;
	font-size: 26px;
}

#realportfolio h3 {
	color: #f0f0f0;
	line-height: 22px;
	text-align: left;
}

#realportfolio p {
	color: #b0b0b0;
	text-align: left;
	line-height: 22px;
	margin-right: 60px;
}

#realportfolio .left {
	padding-right: 30px;
	margin-bottom: 50px;
}
#realportfolio .right {
	padding-left: 30px;
	margin-bottom: 50px;
}
#tab { display:inline-block; 
       margin-left: 80px; 
}


/* 
/*  n. Contact Section
/* =================================================================== */

#contact {
	background: #12151b;
	padding-top: 0px;
	padding-bottom: 0px;
	
}
#contact .contact-content {
	max-width: 1200px;
}
#contact h1 {
	color: #c7c7c7;
	font-size: 20px;
}
#contact h2 {
	color: #c7c7c7;
	text-align: left;
	line-height: 20px;
	font-size: 20px;
}

#contact h3 {
	color: #c7c7c7;
	line-height: 22px;
	text-align: left;
}
#contact p {
	color: #909397;
	text-align: left;
	line-height: 22px;
	margin-right: 70px;
}
#contact .left {
	padding-right: 30px;
	margin-bottom: 50px;
}
#contact .right {
	padding-left: 30px;
	margin-bottom: 50px;
}


/* 
/* r. Portfolio Entry
/* =================================================================== */

.portfolio-content .entry header {
	text-align: center;
}
.portfolio-content  .entry-content-media {
	display: block;
	margin-bottom: 110px:
	float: left;
}


.iframe-container{
  position: relative;
  width: 100%;
  padding-bottom: 50%; 
  height: 0;
}
.iframe-container iframe{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}

.portfolio-content .entry-content-media img {
	display: block;
	float: left;
	margin-bottom: 60px;
}
.portfolio-content .entry .pagenav {
	margin-top: 0;
}
.portfolio-content .entry .pagenav a[rel="next"]:after {
	float: right;
}
